/external/wpa_supplicant_8/src/tls/ |
tlsv1_client.c | 78 key_block_len = 2 * (conn->rl.hash_size + conn->rl.key_material_len); 94 os_memcpy(conn->rl.write_mac_secret, pos, conn->rl.hash_size); 95 pos += conn->rl.hash_size; 97 os_memcpy(conn->rl.read_mac_secret, pos, conn->rl.hash_size); 98 pos += conn->rl.hash_size; 720 return 2 * (conn->rl.hash_size + conn->rl.key_material_len +
|
tlsv1_server.c | 85 key_block_len = 2 * (conn->rl.hash_size + conn->rl.key_material_len + 100 os_memcpy(conn->rl.read_mac_secret, pos, conn->rl.hash_size); 101 pos += conn->rl.hash_size; 103 os_memcpy(conn->rl.write_mac_secret, pos, conn->rl.hash_size); 104 pos += conn->rl.hash_size; 607 return 2 * (conn->rl.hash_size + conn->rl.key_material_len +
|
/external/chromium_org/chrome/browser/safe_browsing/ |
safe_browsing_util.cc | 69 size_t hash_size = 0; local 71 hash_size = sizeof(SBPrefix); 73 hash_size = sizeof(SBFullHash); 78 const size_t hash_count = chunk->hashes().size() / hash_size; 79 if (hash_count * hash_size != chunk->hashes().size())
|
/external/chromium_org/third_party/zlib/ |
deflate.h | 140 uInt hash_size; /* number of elements in hash table */ member in struct:internal_state 141 uInt hash_bits; /* log2(hash_size) */ 142 uInt hash_mask; /* hash_size-1 */
|
deflate.c | 195 s->head[s->hash_size-1] = NIL; \ 196 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head)); 278 s->hash_size = 1 << s->hash_bits; 279 s->hash_mask = s->hash_size - 1; 284 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); [all...] |
mixed-source.patch | 40 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); 452 uInt hash_mask; /* hash_size-1 */
|
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
deflate.h | 140 uInt hash_size; /* number of elements in hash table */ member in struct:internal_state 141 uInt hash_bits; /* log2(hash_size) */ 142 uInt hash_mask; /* hash_size-1 */
|
fx_zlib_deflate.c | 197 s->head[s->hash_size-1] = NIL; \ 198 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head)); 288 s->hash_size = 1 << s->hash_bits; 289 s->hash_mask = s->hash_size - 1; 294 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); [all...] |
/external/qemu/distrib/zlib-1.2.8/ |
deflate.h | 140 uInt hash_size; /* number of elements in hash table */ member in struct:internal_state 141 uInt hash_bits; /* log2(hash_size) */ 142 uInt hash_mask; /* hash_size-1 */
|
deflate.c | 197 s->head[s->hash_size-1] = NIL; \ 198 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head)); 289 s->hash_size = 1 << s->hash_bits; 290 s->hash_mask = s->hash_size - 1; 295 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); [all...] |
/external/zlib/src/ |
deflate.h | 140 uInt hash_size; /* number of elements in hash table */ member in struct:internal_state 141 uInt hash_bits; /* log2(hash_size) */ 142 uInt hash_mask; /* hash_size-1 */
|
deflate.c | 197 s->head[s->hash_size-1] = NIL; \ 198 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head)); 289 s->hash_size = 1 << s->hash_bits; 290 s->hash_mask = s->hash_size - 1; 295 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); [all...] |
/external/e2fsprogs/intl/ |
gettextP.h | 109 nls_uint32 hash_size; member in struct:loaded_domain
|
dcigettext.c | 750 nls_uint32 idx = hash_val % domain->hash_size; 751 nls_uint32 incr = 1 + (hash_val % (domain->hash_size - 2)); 782 if (idx >= domain->hash_size - incr) 783 idx -= domain->hash_size - incr; [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/ |
cso_context.c | 215 int hash_size = cso_hash_size(hash); local 216 int max_entries = (max_size > hash_size) ? max_size : hash_size; 219 if (hash_size > max_size) 220 to_remove += hash_size - max_size; [all...] |
/external/mesa3d/src/gallium/auxiliary/cso_cache/ |
cso_context.c | 215 int hash_size = cso_hash_size(hash); local 216 int max_entries = (max_size > hash_size) ? max_size : hash_size; 219 if (hash_size > max_size) 220 to_remove += hash_size - max_size; [all...] |
/external/chromium_org/remoting/host/mac/ |
me2me_preference_pane.mm | 71 int hash_size = modp_b64_decode(&(hash[0]), hash_base64.data(), 73 if (hash_size < 0) { 77 hash.resize(hash_size);
|
/external/chromium_org/third_party/boringssl/src/ssl/ |
t1_enc.c | 1010 int hash_size; local 1017 hash_size = EVP_MD_size(md); 1018 if (!hdgst || hash_size < 0 || (size_t)hash_size > out_len) 1026 digest_len != (unsigned int)hash_size) /* internal error */ [all...] |
/external/openssl/ssl/ |
t1_enc.c | 914 int hash_size; local 921 hash_size = EVP_MD_size(md); 922 if (!hdgst || hash_size < 0 || (size_t)hash_size > out_len) 930 digest_len != (unsigned int)hash_size) /* internal error */ [all...] |
/external/chromium_org/net/third_party/nss/ssl/ |
derive.c | 215 * client_write_MAC_secret[CipherSpec.hash_size] 222 * server_write_MAC_secret[CipherSpec.hash_size]
|
/external/openssl/patches/ |
0004-channelid.patch | [all...] |
/external/valgrind/main/coregrind/m_debuginfo/ |
readpdb.c | 387 unsigned long hash_size; member in struct:_PDB_TYPES 481 unsigned long hash_size; member in struct:_PDB_SYMBOLS_OLD 496 unsigned long hash_size; member in struct:_PDB_SYMBOLS [all...] |
/external/wpa_supplicant_8/src/crypto/ |
tls_openssl.c | 230 DWORD hash_size, len, i; local 260 len = sizeof(hash_size); 261 if (!CryptGetHashParam(hash, HP_HASHSIZE, (BYTE *) &hash_size, &len, 267 if ((int) hash_size != flen) { 269 (unsigned) hash_size, flen); [all...] |
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/lib/ |
libz.so | |
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/lib/ |
libz.so | |