Searched refs:hash (Results 251 - 275 of 1478) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DLazyOperandValueProfile.h75 unsigned hash() const function in class:JSC::LazyOperandValueProfileKey
101 static unsigned hash(const LazyOperandValueProfileKey& key) { return key.hash(); } function in struct:JSC::LazyOperandValueProfileKeyHash
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DNumericStrings.h79 CacheEntry<double>& lookup(double d) { return doubleCache[WTF::FloatHash<double>::hash(d) & (cacheSize - 1)]; }
80 CacheEntry<int>& lookup(int i) { return intCache[WTF::IntHash<int>::hash(i) & (cacheSize - 1)]; }
81 CacheEntry<unsigned>& lookup(unsigned i) { return unsignedCache[WTF::IntHash<unsigned>::hash(i) & (cacheSize - 1)]; }
/macosx-10.9.5/bind9-45.100/bind9/bin/tools/
H A Dnsec3hash.c74 unsigned char hash[NSEC3_MAX_HASH_LENGTH]; local
98 fatal("hash algorithm too large");
111 length = isc_iterated_hash(hash, hash_alg, iterations, salt,
115 region.base = hash;
119 fprintf(stdout, "%.*s (salt=%s, hash=%u, iterations=%u)\n",
/macosx-10.9.5/cups-372.4/cups/vcnet/regex/
H A Dregex2.h74 * and a mask to pick out the relevant bit of each byte. A hash code
85 uch hash; /* hash code */ member in struct:__anon7241
90 #define CHadd(cs, c) ((cs)->ptr[(uch)(c)] |= (cs)->mask, (cs)->hash += (c))
91 #define CHsub(cs, c) ((cs)->ptr[(uch)(c)] &= ~(cs)->mask, (cs)->hash -= (c))
/macosx-10.9.5/curl-78.94.1/curl/tests/
H A Dgetpart.pm43 my %hash;
62 $hash{$var}=$cont;
74 return %hash;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A Dregex2.h97 * and a mask to pick out the relevant bit of each byte. A hash code
108 uch hash; /* hash code */ member in struct:__anon10312
113 #define CHadd(cs, c) ((cs)->ptr[(uch)(c)] |= (cs)->mask, (cs)->hash += (c))
114 #define CHsub(cs, c) ((cs)->ptr[(uch)(c)] &= ~(cs)->mask, (cs)->hash -= (c))
/macosx-10.9.5/objc4-551.1/runtime/
H A Dobjc-auto-dump.mm70 long hash = ptr & set->capacity;
72 if (!set->items[hash]) {
73 set->items[hash] = ptr;
79 if (set->items[hash] == ptr) return;
80 hash = (hash + 1) & set->capacity;
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/library/store/XOTclSdbm/
H A Dsdbm.c253 register long hash; local
267 if (getpage(db, (hash = exhash(key)))) {
282 if (!makroom(db, hash, need))
308 makroom(db, hash, need)
310 long hash;
327 newp = (hash & db->hmask) | (db->hmask + 1);
337 if (hash & (db->hmask + 1)) {
362 ((hash & (db->hmask + 1)) ? 2 : 1);
417 getpage(db, hash)
419 register long hash;
[all...]
/macosx-10.9.5/ntp-88/ntpd/
H A Dntp_peer.c71 * and the maintenance of the peer hash table. The three main entry
78 * Peer hash tables
80 struct peer *peer_hash[NTP_HASH_SIZE]; /* peer hash table */
82 struct peer *assoc_hash[NTP_HASH_SIZE]; /* association ID hash table */
129 * Clear hash tables and counters.
180 * findexistingpeer - return a pointer to a peer in the hash table
193 * same peer through different interfaces in the hash table.
212 * findpeer - find and return a peer in the hash table.
223 u_int hash; local
226 hash
273 u_int hash; local
397 int hash; local
729 u_int hash; local
960 int hash; local
[all...]
/macosx-10.9.5/cups-372.4/cups/cups/
H A Darray.c35 * cupsArrayNew2() - Create a new array with hash.
36 * cupsArrayNew3() - Create a new array with hash and/or free function.
91 int hashsize, /* Size of hash */
92 *hash; /* Hash array */ member in struct:_cups_array_s
378 free(a->hash);
481 hash; /* Hash index */ local
502 if (a->hash)
504 hash = (*(a->hashfunc))(e, a->data);
506 if (hash < 0 || hash >
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/db185/
H A Ddb185_int.in86 u_int32_t (*hash) __P((const void *, size_t));
110 u_int32_t /* hash function */
111 (*hash) __P((const void *, size_t));
/macosx-10.9.5/CommonCrypto-60049/lib/
H A DCommonDigest.c438 CC_LONG hash[8];
447 uint32_t hash[8]; member in struct:CC_SHA256state_x
461 CC_XZEROMEM(c->hash, CC_SHA256_DIGEST_LENGTH);
465 CC_XMEMCPY(c->hash, di->initial_state, di->state_size);
477 struct ccdigest_state *state = (struct ccdigest_state *) c->hash;
496 struct ccdigest_state *state = (struct ccdigest_state *) c->hash;
504 for (int i = 0; i < 8; i++) CC_XSTORE32H(c->hash[i], md+(4*i));
513 CC_LONG64 hash[8];
522 uint64_t hash[8]; member in struct:CC_SHA512state_x
534 CC_XZEROMEM(c->hash, CC_SHA512_DIGEST_LENGT
[all...]
/macosx-10.9.5/Heimdal-323.92.1/appl/ftp/ftp/
H A Dftp_var.h49 extern int hash; /* print # for each buffer transferred */
H A Dglobals.c8 int hash; /* print # for each buffer transferred */ variable
/macosx-10.9.5/Security-55471.14.18/include/security_codesigning/
H A DRequirements.cpp85 CFHashCode SecRequirement::hash() function in class:Security::CodeSigning::SecRequirement
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DIdentity.h57 CFHashCode hash();
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/lib/
H A DRequirements.cpp85 CFHashCode SecRequirement::hash() function in class:Security::CodeSigning::SecRequirement
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DIdentity.h57 CFHashCode hash();
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DIdentity.h57 CFHashCode hash();
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/Security/
H A Dtls_ssl.h74 SSL_HashAlgorithm hash); //only used in TLS 1.2
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/lib/
H A Dtls_ssl.h74 SSL_HashAlgorithm hash); //only used in TLS 1.2
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/security_ssl/
H A Dtls_ssl.h74 SSL_HashAlgorithm hash); //only used in TLS 1.2
/macosx-10.9.5/SecurityTool-55115/
H A Dkeychain_find.h65 const char *hash);
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLAnchorElement.idl40 readonly attribute DOMString hash;
48 [TreatNullAs=NullString] attribute DOMString hash;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DIntPointHash.h31 static unsigned hash(const WebCore::IntPoint& p) { return pairIntHash(p.x(), p.y()); } function in struct:WTF::IntPointHash

Completed in 544 milliseconds

<<11121314151617181920>>