/prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/i686-unknown-linux-gnu/lib/ldscripts/ |
elf_i386.xu | 14 .hash 0 : { *(.hash) }
|
/sdk/traceview/src/com/android/traceview/ |
ThreadData.java | 35 // This is a hash of all the methods that are currently on the stack. 140 // Decrement the count on the method in the hash table and remove
|
/external/dropbear/libtomcrypt/notes/ |
hash_tv.txt | 0 Hash Test Vectors: 5 Hash: tiger 136 Hash: md2 171 Hash: md4 302 Hash: md5 433 Hash: sha1 564 Hash: sha224 695 Hash: sha256 [all...] |
/cts/tools/dasm/src/java_cup/ |
lalr_item_set.java | 46 /** A hash table to implement the set. We store the items using themselves 155 /* remove it from hash table implementing set */ 190 /** Remove and return one item from the set (done in hash order). */ 328 /** Return hash code. */ 338 /* hash together codes from at most first 5 elements */
|
/dalvik/dx/src/com/android/dx/rop/type/ |
StdTypeList.java | 258 * @return {@code non-null;} the hash code 262 int hash = 0; local 265 hash = (hash * 31) + list.getType(i).hashCode(); 268 return hash;
|
/external/opencore/baselibs/gen_data_structures/src/ |
hashtable.h | 136 uint32 hash = compute_hash(key); local 137 uint32 masked_hash = hash & hash_mask; 183 // bark - hash table corruption 289 // find the proper hash element 326 // bark - hash table size is not a power of two, changing
|
/external/skia/src/core/ |
SkGlyphCache.cpp | 42 SkDebugf("Font Cache Hash success rate: %d%%\n", 497 SkGlyphCache** hash = globals.fHash; local 499 cache = hash[index]; 527 hash[index] = NULL; 534 hash[index] = cache;
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
synchronize.h | 84 // Extract pointers from the hash set 178 // Finds the string pointed by s in the hash set. Transfers the 179 // pointer ownership to the hash set. 252 // Hash function for Elements to Fst states. 278 // Hash function for set of strings
|
/external/v8/src/ |
serialize.h | 73 static uint32_t Hash(Address key) { 330 return serialization_map_->Lookup(Key(obj), Hash(obj), false) != NULL; 336 serialization_map_->Lookup(Key(obj), Hash(obj), false)->value)); 342 serialization_map_->Lookup(Key(obj), Hash(obj), true); 351 static uint32_t Hash(HeapObject* obj) {
|
heap.h | 1613 int hash = Hash(c); local 1664 uint32_t hash = (c.integers[0] ^ c.integers[1]); local [all...] |
/external/webkit/JavaScriptCore/wtf/ |
ListHashSet.h | 54 template<typename ValueArg, typename HashArg = typename DefaultHash<ValueArg>::Hash> class ListHashSet : public FastAllocBase { 226 static unsigned hash(Node* const& key) { return HashArg::hash(key->m_value); } function in struct:WTF::ListHashSetNodeHashFunctions 350 static unsigned hash(const ValueType& key) { return HashFunctions::hash(key); } function in struct:WTF::ListHashSetTranslator
|
/external/wpa_supplicant/ |
aes_wrap.c | 5 * - One-Key CBC MAC (OMAC1) hash with AES-128 172 * omac1_aes_128_vector - One-Key CBC MAC (OMAC1) hash with AES-128 173 * @key: 128-bit key for the hash operation 242 * omac1_aes_128 - One-Key CBC MAC (OMAC1) hash with AES-128 (aka AES-CMAC) 243 * @key: 128-bit key for the hash operation
|
tlsv1_client.c | 961 u8 hash[MD5_MAC_LEN + SHA1_MAC_LEN]; local 1018 crypto_hash_finish(conn->verify_md5_server, hash, &hlen) < 0) { 1029 crypto_hash_finish(conn->verify_sha1_server, hash + MD5_MAC_LEN, 1039 "server finished", hash, MD5_MAC_LEN + SHA1_MAC_LEN, 1437 u8 hash[MD5_MAC_LEN + SHA1_MAC_LEN], *hpos; local 1593 u8 hash[MD5_MAC_LEN + SHA1_MAC_LEN]; local [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
aes_wrap.c | 5 * - One-Key CBC MAC (OMAC1, i.e., CMAC) hash with AES-128 171 * omac1_aes_128_vector - One-Key CBC MAC (OMAC1) hash with AES-128 172 * @key: 128-bit key for the hash operation 245 * omac1_aes_128 - One-Key CBC MAC (OMAC1) hash with AES-128 (aka AES-CMAC) 246 * @key: 128-bit key for the hash operation
|
/bootable/recovery/minzip/ |
Zip.c | 131 * Compute the hash code for a ZipEntry filename. 133 * Not expected to be compatible with any other hash function, so we init 138 unsigned int hash = 2; local 141 hash = hash * 31 + *name++; 143 return hash; 183 * store it in a hash table. 383 /* Add to hash table; no need to lock here. 400 /* Add to hash table; no need to lock here. 670 * This is useful for calculating the hash of an entry's uncompressed contents [all...] |
/external/openssl/ssl/ |
t1_enc.c | 458 const EVP_MD *hash; local 469 if (!ssl_cipher_get_evp(s->session,&c,&hash,&comp)) 476 s->s3->tmp.new_hash=hash; 478 num=EVP_CIPHER_key_length(c)+EVP_MD_size(hash)+EVP_CIPHER_iv_length(c); 727 const EVP_MD *hash; local 738 hash=ssl->write_hash; 745 hash=ssl->read_hash; 748 md_size=EVP_MD_size(hash); 766 HMAC_Init_ex(&hmac,mac_sec,EVP_MD_size(hash),hash,NULL) [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/eap_common/ |
eap_sim_common.c | 244 u8 hash[SHA256_MAC_LEN]; local 256 addr[0] = hash; 271 hmac_sha256_vector(k, 32, 5, addr, len, hash); 274 os_memcpy(res, hash, hlen); 436 u8 hash[SHA256_MAC_LEN]; local 490 hmac_sha256_vector(key, sizeof(key), 5, addr, len, hash); 492 hash, sizeof(hash)); 494 os_memcpy(ck, hash, EAP_AKA_CK_LEN); 495 os_memcpy(ik, hash + EAP_AKA_CK_LEN, EAP_AKA_IK_LEN) [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/ |
eap_aka.c | 327 u8 hash[SHA256_MAC_LEN]; local 340 /* Checkcode is SHA1/SHA256 hash over all EAP-AKA/Identity packets. */ 346 sha256_vector(1, &addr, &len, hash); 349 sha1_vector(1, &addr, &len, hash); 351 eap_sim_msg_add(msg, EAP_SIM_AT_CHECKCODE, 0, hash, 362 u8 hash[SHA256_MAC_LEN]; local 388 /* Checkcode is SHA1/SHA256 hash over all EAP-AKA/Identity packets. */ 393 sha256_vector(1, &addr, &len, hash); 396 sha1_vector(1, &addr, &len, hash); 398 if (os_memcmp(hash, checkcode, hash_len) != 0) [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/ |
eap_aka.c | 189 u8 hash[SHA256_MAC_LEN]; local 202 /* Checkcode is SHA1 hash over all EAP-AKA/Identity packets. */ 207 sha256_vector(1, &addr, &len, hash); 209 sha1_vector(1, &addr, &len, hash); 211 eap_sim_msg_add(msg, EAP_SIM_AT_CHECKCODE, 0, hash, 222 u8 hash[SHA256_MAC_LEN]; local 248 /* Checkcode is SHA1 hash over all EAP-AKA/Identity packets. */ 252 sha256_vector(1, &addr, &len, hash); 254 sha1_vector(1, &addr, &len, hash); 256 if (os_memcmp(hash, checkcode, hash_len) != 0) [all...] |
/external/ipsec-tools/src/racoon/missing/crypto/sha2/ |
sha2.c | 72 * loop version for the hash transform rounds (defined using macros 225 /*** SHA-XYZ INITIAL HASH VALUES AND CONSTANTS ************************/ 226 /* Hash constant words K for SHA-256: */ 246 /* Initial hash value H for SHA-256: */ 258 /* Hash constant words K for SHA-384 and SHA-512: */ 302 /* Initial hash value H for SHA-384 */ 314 /* Initial hash value H for SHA-512 */ 422 /* Compute the current intermediate hash value */ 502 /* Compute the current intermediate hash value */ 746 /* Compute the current intermediate hash value * [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/tls/ |
x509v3.c | 1327 u8 hash[32]; local [all...] |
/prebuilt/linux-x86/toolchain/sh-4.3.3/bin/ |
sh-linux-gnu-ld | |
/prebuilt/linux-x86/toolchain/sh-4.3.3/sh-linux-gnu/bin/ |
ld | |
/bionic/libc/bionic/ |
malloc_debug_leak.c | 95 // Hash Table functions 101 int hash = 0; local 104 hash = (hash * 33) + (backtrace[i] >> 2); 107 return hash; 134 size_t hash = get_hash(backtrace, numEntries); local 135 size_t slot = hash % HASHTABLE_SIZE;
|
/bootable/recovery/applypatch/ |
applypatch.c | 105 // has the corresponding sha1 hash will be loaded. It is acceptable 114 // hash of the data, and we'll do the load expecting to find one of 207 // check it against this pair's expected hash. 504 // - if the sha1 hash of <target_filename> is <target_sha1_string>, 507 // - otherwise, if the sha1 hash of <source_filename> is one of the 511 // blob daat). If that new file has sha1 hash <target_sha1_str>, 555 // has the desired hash, nothing for us to do.
|