Searched refs:hash (Results 226 - 250 of 1232) sorted by relevance

1234567891011>>

/macosx-10.10.1/ICU-531.30/icuSources/common/unicode/
H A Dstringtriebuilder.h191 Node(int32_t initialHash) : hash(initialHash), offset(0) {}
192 inline int32_t hashCode() const { return hash; }
242 int32_t hash; member in class:StringTrieBuilder::Node
272 hash=hash*37+v;
333 hash=(hash*37+c)*37+value;
341 hash=(hash*37+c)*37+hashCode(node);
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DLazyOperandValueProfile.h73 unsigned hash() const function in class:JSC::LazyOperandValueProfileKey
100 static unsigned hash(const LazyOperandValueProfileKey& key) { return key.hash(); } function in struct:JSC::LazyOperandValueProfileKeyHash
/macosx-10.10.1/JavaScriptCore-7600.1.17/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.10.1/bind9-45.101/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.10.1/cups-408/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:__anon7018
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.10.1/llvmCore-3425.0.34/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:__anon10116
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.10.1/ntp-92/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
731 u_int hash; local
962 int hash; local
[all...]
/macosx-10.10.1/objc4-646/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.10.1/tcl-105/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.10.1/cups-408/cups/cups/
H A Darray.c60 int hashsize, /* Size of hash */
61 *hash; /* Hash array */ member in struct:_cups_array_s
347 free(a->hash);
450 hash; /* Hash index */ local
471 if (a->hash)
473 hash = (*(a->hashfunc))(e, a->data);
475 if (hash < 0 || hash >= a->hashsize)
478 hash = -1;
482 current = a->hash[has
[all...]
/macosx-10.10.1/dtrace-147/libdtrace/
H A Ddt_aggregate.c446 //dt_ahash_t *hash = &agp->dtat_hash;
488 dt_ahash_t *hash = &agp->dtat_hash; local
497 if (hash->dtah_hash == NULL) {
500 hash->dtah_size = DTRACE_AHASHSIZE;
501 size = hash->dtah_size * sizeof (dt_ahashent_t *);
503 if ((hash->dtah_hash = malloc(size)) == NULL)
505 bzero(hash->dtah_hash, size);
507 ////printf(">>>> hash->dtah_hash = %u\n",hash->dtah_hash);
567 ndx = hashval % hash
810 dt_ahash_t *hash = &agp->dtat_hash; local
1657 dt_ahash_t *hash = &agp->dtat_hash; local
1673 dt_ahash_t *hash = &agp->dtat_hash; local
1739 dt_ahash_t *hash = &dtp->dt_aggregate.dtat_hash; local
1763 dt_ahash_t *hash = &agp->dtat_hash; local
1874 dt_ahash_t *hash = &agp->dtat_hash; local
1988 dt_ahash_t *hash = &agp->dtat_hash; local
2133 dt_ahash_t *hash = &agp->dtat_hash; local
2593 dt_ahash_t *hash = &agp->dtat_hash; local
2619 dt_ahash_t *hash = &agp->dtat_hash; local
[all...]
/macosx-10.10.1/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.10.1/CommonCrypto-60061/lib/
H A DCommonDigest.c464 CC_LONG hash[8];
473 uint32_t hash[8]; member in struct:CC_SHA256state_x
487 CC_XZEROMEM(c->hash, CC_SHA256_DIGEST_LENGTH);
491 CC_XMEMCPY(c->hash, di->initial_state, di->state_size);
503 struct ccdigest_state *state = (struct ccdigest_state *) c->hash;
522 struct ccdigest_state *state = (struct ccdigest_state *) c->hash;
530 for (int i = 0; i < 8; i++) CC_XSTORE32H(c->hash[i], md+(4*i));
539 CC_LONG64 hash[8];
548 uint64_t hash[8]; member in struct:CC_SHA512state_x
560 CC_XZEROMEM(c->hash, CC_SHA512_DIGEST_LENGT
[all...]
/macosx-10.10.1/Heimdal-398.1.2/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.10.1/OpenSSL098-52/src/crypto/txt_db/
H A Dtxt_db.h100 LHASH_HASH_FN_TYPE hash, LHASH_COMP_FN_TYPE cmp);
/macosx-10.10.1/OpenSSL098-52/src/include/openssl/
H A Dtxt_db.h100 LHASH_HASH_FN_TYPE hash, LHASH_COMP_FN_TYPE cmp);
/macosx-10.10.1/Security-57031.1.35/Security/include/security_codesigning/
H A DRequirements.cpp85 CFHashCode SecRequirement::hash() function in class:Security::CodeSigning::SecRequirement
/macosx-10.10.1/Security-57031.1.35/Security/include/security_keychain/
H A DIdentity.h57 CFHashCode hash();
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A DRequirements.cpp85 CFHashCode SecRequirement::hash() function in class:Security::CodeSigning::SecRequirement
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DIdentity.h57 CFHashCode hash();
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DIdentity.h57 CFHashCode hash();
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_ssl/Security/
H A Dtls_ssl.h74 SSL_HashAlgorithm hash); //only used in TLS 1.2
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_ssl/lib/
H A Dtls_ssl.h74 SSL_HashAlgorithm hash); //only used in TLS 1.2
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_ssl/security_ssl/
H A Dtls_ssl.h74 SSL_HashAlgorithm hash); //only used in TLS 1.2

Completed in 244 milliseconds

1234567891011>>