Searched refs:tmp_tag (Results 1 – 4 of 4) sorted by relevance
/external/valgrind/callgrind/ |
D | sim.c | 357 UWord *set, tmp_tag; in cachesim_setref_wb() local 372 tmp_tag = set[i] | ref; // update dirty flag in cachesim_setref_wb() 376 set[0] = tmp_tag; in cachesim_setref_wb() 382 tmp_tag = set[c->assoc - 1]; in cachesim_setref_wb() 388 return (tmp_tag & CACHELINE_DIRTY) ? MissDirty : Miss; in cachesim_setref_wb() 694 UWord *set, tmp_tag; \ 723 tmp_tag = set[i]; \ 727 set[0] = tmp_tag; \ 728 idx = (set1 * L.assoc) + (tmp_tag & ~L.tag_mask); \ 739 tmp_tag = set[L.assoc - 1] & ~L.tag_mask; \ [all …]
|
/external/srtp/crypto/ae_xfm/ |
D | xfm.c | 108 unsigned char tmp_tag[TAG_LEN]; in aes_128_cbc_hmac_sha1_96_inv() local 164 status = hmac_compute(&hmac_ctx, opaque, *opaque_len, TAG_LEN, tmp_tag); in aes_128_cbc_hmac_sha1_96_inv() 169 if (tmp_tag[i] != tag[i]) in aes_128_cbc_hmac_sha1_96_inv() 305 unsigned char tmp_tag[TAG_LEN]; in aes_128_cbc_hmac_sha1_96_dec() local 374 status = hmac_compute(&hmac_ctx, opaque, ciphertext_len, TAG_LEN, tmp_tag); in aes_128_cbc_hmac_sha1_96_dec() 390 printf("tmp_tag: %s\n", octet_string_hex_string(tmp_tag, TAG_LEN)); in aes_128_cbc_hmac_sha1_96_dec() 393 if (tmp_tag[i] != auth_tag[i]) in aes_128_cbc_hmac_sha1_96_dec()
|
/external/srtp/srtp/ |
D | srtp.c | 851 uint8_t tmp_tag[SRTP_MAX_TAG_LEN]; in srtp_unprotect() local 1004 status = cipher_output(stream->rtp_cipher, tmp_tag, prefix_len); in srtp_unprotect() 1006 octet_string_hex_string(tmp_tag, prefix_len)); in srtp_unprotect() 1020 status = auth_compute(stream->rtp_auth, (uint8_t *)&est, 4, tmp_tag); in srtp_unprotect() 1023 octet_string_hex_string(tmp_tag, tag_len)); in srtp_unprotect() 1029 if (octet_string_is_eq(tmp_tag, auth_tag, tag_len)) in srtp_unprotect() 1636 uint8_t tmp_tag[SRTP_MAX_TAG_LEN]; in srtp_unprotect_rtcp() local 1781 auth_len, tmp_tag); in srtp_unprotect_rtcp() 1783 octet_string_hex_string(tmp_tag, tag_len)); in srtp_unprotect_rtcp() 1790 if (octet_string_is_eq(tmp_tag, auth_tag, tag_len)) in srtp_unprotect_rtcp()
|
/external/boringssl/src/crypto/x509/ |
D | asn1_gen.c | 296 int tmp_tag, tmp_class; in asn1_cb() local 352 if (!parse_tagging(vstart, vlen, &tmp_tag, &tmp_class)) in asn1_cb() 354 if (!append_exp(arg, tmp_tag, tmp_class, 1, 0, 0)) in asn1_cb()
|