Searched refs:hash (Results 151 - 175 of 1478) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSPropertySourceData.cpp100 unsigned CSSPropertySourceData::hash() const function in class:WebCore::CSSPropertySourceData
102 return StringHash::hash(name) + 3 * StringHash::hash(value) + 7 * important + 13 * parsedOk + 31;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DIntRectHash.h38 static unsigned hash(const WebCore::IntRect& key) function in struct:WTF::IntHash
40 return pairIntHash(DefaultHash<WebCore::IntPoint>::Hash::hash(key.location()), DefaultHash<WebCore::IntSize>::Hash::hash(key.size()));
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DCustomFilterProgramInfo.h72 unsigned hash() const;
89 static unsigned hash(const CustomFilterProgramInfo& programInfo) { return programInfo.hash(); } function in struct:WebCore::CustomFilterProgramInfoHash
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/include/
H A Dapr_random.h40 typedef void apr_crypto_hash_init_t(apr_crypto_hash_t *hash);
41 typedef void apr_crypto_hash_add_t(apr_crypto_hash_t *hash, const void *data,
43 typedef void apr_crypto_hash_finish_t(apr_crypto_hash_t *hash,
69 * @param pool_hash Pool hash functions
70 * @param key_hash Key hash functions
71 * @param prng_hash PRNG hash functions
/macosx-10.9.5/apr-30/apr/apr/include/
H A Dapr_random.h40 typedef void apr_crypto_hash_init_t(apr_crypto_hash_t *hash);
41 typedef void apr_crypto_hash_add_t(apr_crypto_hash_t *hash, const void *data,
43 typedef void apr_crypto_hash_finish_t(apr_crypto_hash_t *hash,
69 * @param pool_hash Pool hash functions
70 * @param key_hash Key hash functions
71 * @param prng_hash PRNG hash functions
/macosx-10.9.5/emacs-92/emacs/oldXMenu/
H A DXMakeAssoc.c36 int hash; local
42 hash = x_id & (table->size - 1);
44 bucket = &table->buckets[hash];
/macosx-10.9.5/ppp-727.90.1/Helpers/pppd/
H A Dchap-md5.c89 unsigned char hash[MD5_HASH_SIZE]; local
95 /* Generate hash of ID, secret, challenge */
100 MD5_Final(hash, &ctx);
102 /* Test if our hash matches the peer's response */
103 if (memcmp(hash, response, MD5_HASH_SIZE) == 0) {
/macosx-10.9.5/cctools-845/as/
H A Dhash.c0 /* hash.c -- gas hash table code
23 /* This version of the hash table code is a wholescale replacement of
24 the old hash table code, which was fairly bad. This is based on
25 the hash table code in BFD, but optimized slightly for the
27 are stored in the hash table. Instead, it always stores a pointer.
28 The assembler uses the hash table mostly to store symbols, and we
29 don't need to confuse the symbol structure with a hash table
38 #include "hash.h" /* Added for PTR - mha */
41 /* The default number of entries to use when creating a hash tabl
54 uint32_t hash; member in struct:hash_entry
138 register uint32_t hash; local
210 uint32_t hash; local
240 uint32_t hash; local
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/hash/
H A Dhashlook.c27 * hash table library
33 * hash table lookup
88 if (flags & HASH_BUCKET) n = last->bucket->hash;
96 last->hash = i = HASHVAL(n);
102 if (i == HASHVAL(b->hash) && ((b->hash & (HASH_DELETED|HASH_OPAQUED)) != HASH_DELETED || (flags & (HASH_CREATE|HASH_DELETE|HASH_INSTALL|HASH_RENAME))))
136 n = i = last->hash;
162 if (flags & HASH_OPAQUE) b->hash |= HASH_OPAQUED;
169 if (flags & HASH_OPAQUE) b->hash &= ~HASH_OPAQUED;
184 if (tab->frozen || (b->hash
[all...]
H A Dhashfree.c27 * hash table library
33 * free (remove) a hash table
76 if (p->hash & HASH_FREENAME)
78 p->hash &= ~HASH_FREENAME;
82 if (!(p->hash & HASH_KEEP))
87 else if (p->hash & HASH_HIDES)
89 p->hash &= ~HASH_HIDES;
/macosx-10.9.5/Chess-310.5/sjeng/
H A Dttable.c31 uint32_t hash; variable
94 hash = 0xDEADBEEF;
101 hash = 0xDEADBEEF;
106 hash = hash ^ zobrist[board[p]][p];
120 index = hash % TTSize;
129 QS_TTable[index].Hash = hash;
144 index = hash % TTSize;
177 DP_TTable[index].Hash = hash;
208 AS_TTable[index].Hash = hash;
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dkexdhc.c58 u_char *kbuf, *hash; local
144 &hash, &hashlen
150 if (key_verify(server_host_key, signature, slen, hash, hashlen) != 1)
159 memcpy(kex->session_id, hash, kex->session_id_len);
162 kex_derive_keys(kex, hash, hashlen, shared_secret);
/macosx-10.9.5/WebCore-7537.78.1/plugins/
H A DPluginPackage.h63 unsigned hash() const;
133 static unsigned hash(const uintptr_t key) { return reinterpret_cast<PluginPackage*>(key)->hash(); } function in struct:WebCore::PluginPackageHash
134 static unsigned hash(const RefPtr<PluginPackage>& key) { return key->hash(); } function in struct:WebCore::PluginPackageHash
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Ducsmap.c65 * To speed up mapping table lookup, a combination of hash and
71 * Entries are sorted by its hash index and code point.
74 short hidx; /* hash index */
102 ucsmap_hash_t hash[UCSMAP_HASH_SIZE]; member in struct:idn_ucsmap
237 /* Initialize hash. */
239 ctx->hash[i].entry = NULL;
240 ctx->hash[i].n = 0;
246 /* Sort entries by the hash value and code point. */
250 * Now the entries are sorted by their hash value, and
251 * sorted by its code point among the ones with the same hash valu
268 int hash; local
[all...]
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dconncache.c58 connc->hash = Curl_hash_alloc(CONNECTION_HASH_SIZE, Curl_hash_str,
61 if(!connc->hash) {
72 Curl_hash_destroy(connc->hash);
73 connc->hash = NULL;
84 bundle = Curl_hash_pick(connc->hash, hostname, strlen(hostname)+1);
95 p = Curl_hash_add(connc->hash, hostname, strlen(hostname)+1, bundle);
109 Curl_hash_start_iterate(connc->hash, &iter);
114 /* The bundle is destroyed by the hash destructor function,
116 Curl_hash_delete(connc->hash, he->key, he->key_len);
195 Curl_hash_start_iterate(connc->hash,
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/opcodes/
H A Dcgen-asm.c54 /* Subroutine of build_asm_hash_table to add INSNS to the hash table.
59 HTABLE points to the hash table.
60 HENTBUF is a pointer to sufficiently large buffer of hash entries.
78 unsigned int hash; local
83 hash = (* cd->asm_hash) (CGEN_INSN_MNEMONIC (insn));
84 hentbuf->next = htable[hash];
86 htable[hash] = hentbuf;
92 /* Subroutine of build_asm_hash_table to add INSNS to the hash table.
106 unsigned int hash; local
110 hash
179 unsigned int hash; local
[all...]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/hash_fn/
H A Dranged_probe_fn.hpp73 * function, and requests that hash values not be stored.
161 operator()(const_key_reference, size_type hash, size_type i) const argument
163 return comb_probe_fn_base::operator()(hash + probe_fn_base::operator()(i));
178 * probe function, and requests that hash values not be stored.
267 const size_type hash = hash_fn_base::operator()(r_key); local
268 return std::make_pair(comb_probe_fn_base::operator()(hash), hash);
274 operator()(const_key_reference, size_type hash, size_type i) const argument
276 return comb_probe_fn_base::operator()(hash + probe_fn_base::operator()(i));
284 (const_key_reference r_key, size_type hash) cons
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dsortkey.cpp41 // A hash code of kInvalidHashCode indicates that the hash code needs
42 // to be computed. A hash code of kEmptyHashCode is used for empty keys
43 // and for any key whose computed hash code is kInvalidHashCode.
46 // The "bogus hash code" replaces a separate fBogus flag.
247 int32_t hash; local
249 hash = kEmptyHashCode;
251 hash = ustr_hashCharsN(s, length);
252 if (hash == kInvalidHashCode || hash
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dosxverifier.cpp64 secdebug("codesign", " hash generated");
69 // Create a Verifier from hash, path, and requirement.
72 OSXVerifier::OSXVerifier(const SHA1::Byte *hash, const std::string &path) argument
75 secdebug("codesign", "building verifier from hash %p and path=%s", hash, path.c_str());
76 if (hash)
77 memcpy(mLegacyHash, hash, sizeof(mLegacyHash));
127 secdebug("codesign", "calculating legacy hash for %s", code->canonicalPath().c_str());
131 SHA1 hash; local
132 hash(buffe
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dosxverifier.cpp64 secdebug("codesign", " hash generated");
69 // Create a Verifier from hash, path, and requirement.
72 OSXVerifier::OSXVerifier(const SHA1::Byte *hash, const std::string &path) argument
75 secdebug("codesign", "building verifier from hash %p and path=%s", hash, path.c_str());
76 if (hash)
77 memcpy(mLegacyHash, hash, sizeof(mLegacyHash));
127 secdebug("codesign", "calculating legacy hash for %s", code->canonicalPath().c_str());
131 SHA1 hash; local
132 hash(buffe
[all...]
/macosx-10.9.5/file_cmds-230/du/
H A Ddu.c385 int hash; local
389 /* If necessary, initialize the hash table. */
399 /* If the hash table is getting too full, enlarge it. */
427 hash = (le->dev ^ le->ino) % new_size;
429 if (new_buckets[hash] != NULL)
430 new_buckets[hash]->previous =
432 le->next = new_buckets[hash];
434 new_buckets[hash] = le;
443 /* Try to locate this entry in the hash table. */
444 hash
518 int hash; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/Security/
H A Dssl3Callouts.c65 * (* 16 bytes/hash = 160 bytes of key) */
230 SSLBuffer hash, input; local
257 hash.data = md5Inner;
258 hash.length = 16;
259 if ((err = SSLHashMD5.final(&md5MsgState, &hash)) != 0)
261 hash.data = shaInner;
262 hash.length = 20;
263 if ((err = SSLHashSHA1.final(&shaMsgState, &hash)) != 0)
286 hash.data = finished.data;
287 hash
330 ssl3ComputeCertVfyMac( SSLContext *ctx, SSLBuffer *finished, SSL_HashAlgorithm hash) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/lib/
H A Dssl3Callouts.c65 * (* 16 bytes/hash = 160 bytes of key) */
230 SSLBuffer hash, input; local
257 hash.data = md5Inner;
258 hash.length = 16;
259 if ((err = SSLHashMD5.final(&md5MsgState, &hash)) != 0)
261 hash.data = shaInner;
262 hash.length = 20;
263 if ((err = SSLHashSHA1.final(&shaMsgState, &hash)) != 0)
286 hash.data = finished.data;
287 hash
330 ssl3ComputeCertVfyMac( SSLContext *ctx, SSLBuffer *finished, SSL_HashAlgorithm hash) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/security_ssl/
H A Dssl3Callouts.c65 * (* 16 bytes/hash = 160 bytes of key) */
230 SSLBuffer hash, input; local
257 hash.data = md5Inner;
258 hash.length = 16;
259 if ((err = SSLHashMD5.final(&md5MsgState, &hash)) != 0)
261 hash.data = shaInner;
262 hash.length = 20;
263 if ((err = SSLHashSHA1.final(&shaMsgState, &hash)) != 0)
286 hash.data = finished.data;
287 hash
330 ssl3ComputeCertVfyMac( SSLContext *ctx, SSLBuffer *finished, SSL_HashAlgorithm hash) argument
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dwait_queue.h271 /* The Jenkins "one at a time" hash.
277 uint32_t hash = 0; local
281 hash += key[i];
282 hash += (hash << 10);
283 hash ^= (hash >> 6);
286 hash += (hash << 3);
287 hash
[all...]

Completed in 436 milliseconds

1234567891011>>