/external/openssl/crypto/conf/ |
conf_api.c | 78 /* static unsigned long hash(CONF_VALUE *v); */ 79 static unsigned long hash(const void *v_void); 192 if ((conf->data = lh_new(hash, cmp_conf)) == NULL) 208 /* We now have only 'section' entries in the hash table. 245 /* static unsigned long hash(CONF_VALUE *v) */ 246 static unsigned long hash(const void *v_void) function
|
/external/oprofile/daemon/ |
oprofiled.c | 287 size_t hash; local 295 hash = op_hash_string(elt->name); 297 list_add(&elt->next, &images_filter[hash % OPD_IMAGE_FILTER_HASH_SIZE]); 325 size_t hash; local 331 hash = op_hash_string(name); 333 list_for_each(pos, &images_filter[hash % OPD_IMAGE_FILTER_HASH_SIZE]) {
|
/external/webkit/JavaScriptCore/wtf/ |
TCPackedCache.h | 72 // a hash function, H, and use an array indexed by H(key): 103 // the hash function simply takes the low bits of the key. 154 array_[Hash(key)] = static_cast<T>(KeyToUpper(key) | value); 159 return KeyMatch(array_[Hash(key)], key); 168 T entry = array_[Hash(key)]; 208 static size_t Hash(K key) {
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
ggc.h | 56 /* Used by the gt_pch_n_* routines. Register an object in the hash table. */ 83 /* Structure for hash table cache marking. */ 210 object, and the identifier hash table is treated as a weak 211 hash. */ 253 #define htab_create_ggc(SIZE, HASH, EQ, DEL) \ 254 htab_create_alloc (SIZE, HASH, EQ, DEL, ggc_calloc, ggc_free)
|
/dalvik/libdex/ |
DexFile.c | 337 * Compute a hash code on a UTF-8 string, for use with internal hash tables. 339 * This may or may not be compatible with UTF-8 hash functions used inside 347 u4 hash = 1; local 350 hash = hash * 31 + *str++; 352 return hash; 356 * Add an entry to the class lookup table. We hash the string and probe 366 u4 hash = classDescriptorHash(classDescriptor); local 368 int idx = hash & mask 861 u4 hash; local [all...] |
/external/ipsec-tools/src/racoon/ |
isakmp_agg.c | 106 * rsa: HDR, SA, [ HASH(1),] KE, <IDi1_b>Pubkey_r, <Ni_b>Pubkey_r 107 * rev: HDR, SA, [ HASH(1),] <Ni_b>Pubkey_r, <KE_b>Ke_i, 656 /* generate HASH to send */ 658 iph1->hash = oakley_ph1hash_common(iph1, GENERATE); 659 if (iph1->hash == NULL) { 679 /* set HASH payload */ 681 iph1->hash, ISAKMP_NPTYPE_HASH); 723 "failed to wrap hash\n"); 799 * rsa: HDR, SA, [ HASH(1),] KE, <IDi1_b>Pubkey_r, <Ni_b>Pubkey_r 800 * rev: HDR, SA, [ HASH(1),] <Ni_b>Pubkey_r, <KE_b>Ke_i [all...] |
isakmp_base.c | 99 * rsa: HDR, SA, [HASH(1),] <IDii_b>Pubkey_r, <Ni_b>Pubkey_r 100 * rev: HDR, SA, [HASH(1),] <Ni_b>Pubkey_r, <IDii_b>Ke_i 464 /* generate SKEYID to compute hash if not signature mode */ 482 /* generate HASH to send */ 484 iph1->hash = oakley_ph1hash_base_i(iph1, GENERATE); 485 if (iph1->hash == NULL) 499 /* create isakmp HASH payload */ 500 plist = isakmp_plist_append(plist, iph1->hash, ISAKMP_NPTYPE_HASH); 730 /* generate SKEYID to compute hash if signature mode */ 811 * rsa: HDR, SA, [HASH(1),] <IDii_b>Pubkey_r, <Ni_b>Pubkey_ [all...] |
handler.h | 157 vchar_t *skeyid_a; /* SKEYID_a, i.e. hash */ 160 vchar_t *hash; /* HASH minus general header */ member in struct:ph1handle 176 /* to calculate HASH */ 190 struct isakmp_pl_hash *pl_hash; /* pointer to hash payload */ 304 /* to calculate HASH */ 339 vchar_t *hash; /* hash of the received packet */ member in struct:recvdpkt
|
/external/freetype/src/base/ |
ftdbgmem.c | 72 FT_UInt32 hash; member in struct:FT_MemSourceRec_ 109 * The global structure, containing compound statistics and all hash 278 FT_ULong hash; local 285 hash = FT_MEM_VAL( node->address ) % new_size; 286 pnode = new_buckets + hash; 433 FT_ULong hash; local 437 hash = FT_MEM_VAL( address ); 438 pnode = table->buckets + ( hash % table->size ); 458 FT_UInt32 hash; local 464 hash = (FT_UInt32)(FT_PtrDist)(void*)_ft_debug_file [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xalan/xslt/ |
EnvironmentCheck.java | 168 // Setup a hash to store various environment information in 169 Hashtable hash = getEnvironmentHash(); local 172 boolean environmentHasErrors = writeEnvironmentReport(hash); 196 * Fill a hash with basic environment settings that affect Xalan. 200 * the hash as keys with a brief description of the current state 217 // Setup a hash to store various environment information in 218 Hashtable hash = new Hashtable(); local 220 // Call various worker methods to fill in the hash 223 checkJAXPVersion(hash); 224 checkProcessorVersion(hash); [all...] |
/dalvik/libcore/xml/src/main/native/ |
org_apache_harmony_xml_ExpatParser.cpp | 42 /** Hash code of the interned string. */ 43 int hash; member in struct:InternedString 118 * Calculates a hash code for a null-terminated string. This is *not* equivalent 122 * @param s null-terminated string to hash 123 * @returns hash code 126 int hash = 0; local 129 hash = hash * 31 + *s++; 132 return hash; 140 * @param hash of byte 268 int hash = hashString(s); local [all...] |
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/ |
SystemScope.java | 45 // Identities hash: key is the identity name 48 // Identities hash: key is the public key
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/tsp/ |
TimeStampReq.java | 143 * --a hash algorithm OID and the hash value of the data to be
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/signers/ |
DSASigner.java | 53 * hash of the message of interest. 89 * SHA-1 hash of the real message to be verified.
|
/dalvik/vm/ |
Sync.h | 32 * Hash state field. Used to signify that an object has had its 33 * identity hash code exposed or relocated.
|
UtfString.h | 49 * Hash function for modified UTF-8 strings. 54 * Hash function for string objects.
|
/dalvik/vm/interp/ |
Jit.h | 73 * JitTable hash function. 85 * Entries in the JIT's address lookup hash table.
|
/dalvik/vm/native/ |
dalvik_system_SamplingProfiler.c | 77 /** Hash collisions. */ 85 /** Used to convert a hash to an entry index. */ 110 static u4 hash(const void* p) { function 135 int start = hash(oldEntry.method) & newSet.mask; 157 int start = hash(method) & set->mask; 304 /** Entry in a hash of method counts by class. */ 375 * hash table. 554 u4 h = hash(wrapper->clazz);
|
/external/bison/src/ |
state.c | 26 #include <hash.h> 128 | it in the state hash table. | 251 | A state hash table. | 254 /* Initial capacity of states hash table. */ 284 /* Add up the state's item numbers to get a hash key. */ 300 | Create the states hash table. | 315 | Free the states hash table, not the states. | 326 | Insert S in the state hash table. |
|
/external/dropbear/libtomcrypt/src/misc/pkcs5/ |
pkcs_5_2.c | 26 @param hash_idx The index of the hash desired 47 /* test hash IDX */
|
/external/grub/docs/ |
help2man | 105 my $hash = \%include; 115 $hash = \%include; 133 $hash = \%append; 141 $hash->{$key} ||= ''; 142 $hash->{$key} .= $_; 152 for my $hash (\(%include, %append)) 154 for (keys %$hash) { $hash->{$_} =~ s/\n+$/\n/ }
|
/external/guava/src/com/google/common/collect/ |
SingletonImmutableList.java | 95 // not caching hash code since it could change if the element is mutable 96 // in a way that modifies its hash code.
|
/external/icu4c/i18n/unicode/ |
dtitvinf.h | 387 * It sets interval pattern into the hash map. 456 * hash table. 465 * @return interval pattern index in hash table 474 * delete hash table (of type fIntervalPatterns). 476 * @param hTable hash table to be deleted 483 * initialize hash table (of type fIntervalPatterns). 486 * @return hash table initialized 494 * copy hash table (of type fIntervalPatterns).
|
/external/openssl/apps/ |
passwd.c | 421 char *hash = NULL; local 483 /* now compute password hash */ 486 hash = DES_crypt(passwd, *salt_p); 490 hash = md5crypt(passwd, (use1 ? "1" : "apr1"), *salt_p); 492 assert(hash != NULL); 495 BIO_printf(out, "%s\t%s\n", passwd, hash); 497 BIO_printf(out, "%s\t%s\n", hash, passwd); 499 BIO_printf(out, "%s\n", hash);
|
/external/srec/seti/sltsEngine/include/ |
lts_seq_internal.h | 122 void* phoneH; /* hash table if any */ 143 void* allowable_cons_combH; /* hash table */
|