Searched refs:hash (Results 301 - 325 of 1323) sorted by relevance

<<11121314151617181920>>

/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DRegExpKey.h80 static unsigned hash(const RegExpKey& key) { return key.pattern->hash(); } function in struct:JSC::RegExpKey::Hash
/macosx-10.10/OpenSSH-189/openssh/
H A Dkexecdh.c78 u_char **hash, u_int *hashlen)
111 dump_digest("hash", digest, EVP_MD_size(evp_md));
113 *hash = digest;
67 kex_ecdh_hash( const EVP_MD *evp_md, const EC_GROUP *ec_group, char *client_version_string, char *server_version_string, char *ckexinit, int ckexinitlen, char *skexinit, int skexinitlen, u_char *serverhostkeyblob, int sbloblen, const EC_POINT *client_dh_pub, const EC_POINT *server_dh_pub, const BIGNUM *shared_secret, u_char **hash, u_int *hashlen) argument
H A Dkexgex.c57 u_char **hash, u_int *hashlen)
98 *hash = digest;
101 dump_digest("hash", digest, *hashlen);
46 kexgex_hash( const EVP_MD *evp_md, char *client_version_string, char *server_version_string, char *ckexinit, int ckexinitlen, char *skexinit, int skexinitlen, u_char *serverhostkeyblob, int sbloblen, int min, int wantbits, int max, BIGNUM *prime, BIGNUM *gen, BIGNUM *client_dh_pub, BIGNUM *server_dh_pub, BIGNUM *shared_secret, u_char **hash, u_int *hashlen) argument
H A Dkexgssc.c65 u_char *kbuf, *hash; local
282 &hash, &hashlen
298 &hash, &hashlen
305 gssbuf.value = hash;
308 /* Verify that the hash matches the MIC we just got. */
323 memcpy(kex->session_id, hash, kex->session_id_len);
334 kex_derive_keys(kex, hash, hashlen, shared_secret);
H A Dkexgsss.c71 u_char *kbuf, *hash; local
226 &hash, &hashlen
241 &hash, &hashlen
253 memcpy(kex->session_id, hash, kex->session_id_len);
256 gssbuf.value = hash;
284 kex_derive_keys(kex, hash, hashlen, shared_secret);
/macosx-10.10/OpenSSL098-52/src/engines/vendor_defns/
H A Dhw_ubsec.h79 int hash, unsigned char *data, int data_len,
86 int hash, unsigned char *data, int data_len,
/macosx-10.10/WebCore-7600.1.25/crypto/mac/
H A DCryptoAlgorithmHMACMac.cpp95 if (!getCommonCryptoHMACAlgorithm(parameters.hash, algorithm)) {
108 if (!getCommonCryptoHMACAlgorithm(parameters.hash, algorithm)) {
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLAreaElement.idl34 readonly attribute DOMString hash;
/macosx-10.10/WebCore-7600.1.25/page/
H A DLocation.idl53 [CustomSetter] attribute DOMString hash;
H A DPageGroup.cpp201 void PageGroup::addVisitedLinkHash(LinkHash hash) argument
204 addVisitedLink(hash);
207 inline void PageGroup::addVisitedLink(LinkHash hash) argument
210 if (!m_visitedLinkHashes.add(hash).isNewEntry)
213 page->invalidateStylesForLink(hash);
234 LinkHash hash = visitedLinkHash(url.string()); local
235 ASSERT(m_visitedLinkHashes.contains(hash));
236 m_visitedLinkHashes.remove(hash);
238 // FIXME: Why can't we just invalidate the single visited link hash here?
/macosx-10.10/WebCore-7600.1.25/platform/graphics/freetype/
H A DFontPlatformData.h89 unsigned hash() const function in class:WebCore::FontPlatformData
91 return PtrHash<cairo_scaled_font_t*>::hash(m_scaledFont);
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dhash.h49 /* Hash function to be used for this hash table */
66 struct curl_hash *hash; member in struct:curl_hash_iterator
97 void Curl_hash_start_iterate(struct curl_hash *hash,
/macosx-10.10/ntp-92/lib/isc/
H A Dtaskpool.c75 void isc_taskpool_gettask(isc_taskpool_t *pool, unsigned int hash, argument
78 isc_task_attach(pool->tasks[hash % pool->ntasks], targetp);
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/examples/
H A Dfind.py41 if a hash mapping is used then you get the usual O(1) of hashing.
48 The statement "vwh = vw.hash(map,1)" sets up a view layer around vw,
51 When vwh is modified, both vw and map will be adjusted. The hash
55 a hash is in use, unless you clear map and redefine the hash layer.
91 # setting up a hash view initializes it, since the map size is still zero
96 vwh = vw.hash(map)
99 # this lookup no longer initializes, find will now do a hash lookup
102 vwh = vw.hash(map)
H A Dmapped.tcl1 # Some example and timing tests of the new hash/blocked/ordered views
70 #rename [data view hash map 2] words
71 rename [data view hash $map 2] words
129 #catch {rename hash ""}
130 #rename [data view hash map 2] hash
131 set hash [data view hash $map 2]
133 #rename [hash view ordered 2] words
134 rename [$hash vie
185 proc hash {args} {return ?} procedure
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/passwd/
H A Dapr1.c68 /* Inner hash */
87 * Repeatedly hash things into the final value. This was originally
130 /* base64 un-encode password hash */
179 struct berval *hash,
205 return lutil_passwd_string64(scheme, &digest, hash, &salt);
211 struct berval *hash,
214 return hash_phk(scheme, &magic_apr1, passwd, hash, text);
220 struct berval *hash,
223 return hash_phk(scheme, &magic_bsdmd5, passwd, hash, text);
175 hash_phk( const struct berval *scheme, const struct berval *magic, const struct berval *passwd, struct berval *hash, const char **text) argument
208 hash_apr1( const struct berval *scheme, const struct berval *passwd, struct berval *hash, const char **text) argument
217 hash_bsdmd5( const struct berval *scheme, const struct berval *passwd, struct berval *hash, const char **text) argument
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DFloatingObjects.h103 static unsigned hash(const std::unique_ptr<FloatingObject>& key) { return PtrHash<RenderBox*>::hash(&key->renderer()); } function in struct:WebCore::FloatingObjectHashFunctions
108 static unsigned hash(const RenderBox& key) { return PtrHash<const RenderBox*>::hash(&key); } function in struct:WebCore::FloatingObjectHashTranslator
109 static unsigned hash(const FloatingObject& key) { return PtrHash<RenderBox*>::hash(&key.renderer()); } function in struct:WebCore::FloatingObjectHashTranslator
/macosx-10.10/emacs-93/emacs/lisp/language/
H A Dtml-util.el205 (defvar tml-char-glyph-hash
206 (let* ((hash (make-hash-table :test 'equal)))
207 (mapc (function (lambda (x) (puthash (car x) (cdr x) hash)))
209 hash))
212 (tamil-regexp-of-hashtbl-keys tml-char-glyph-hash))
315 (defvar tml-glyph-glyph-hash
316 (let* ((hash (make-hash-table :test 'equal)))
317 (mapc (function (lambda (x) (puthash (car x) (cdr x) hash)))
[all...]
/macosx-10.10/tcsh-65/tcsh/
H A Dtc.printf.c70 int flush_left = 0, f_width = 0, prec = INF, hash = 0; local
118 hash = 1;
185 hash = 1;
219 if (hash)
230 if (hash) {
314 flush_left = 0, f_width = 0, prec = INF, hash = 0;
/macosx-10.10/zsh-61/zsh/Src/Modules/
H A Ddb_gdbm.c90 tied_param->u.hash->tmpdata = (void *)dbf;
108 dbf = (GDBM_FILE)(pm->u.hash->tmpdata);
110 /* free(pm->u.hash->tmpdata); */
127 dbf = (GDBM_FILE)(pm->u.hash->tmpdata);
150 dbf = (GDBM_FILE)(pm->u.hash->tmpdata);
164 dbf = (GDBM_FILE)(pm->u.hash->tmpdata);
183 pm->u.hash = ht;
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dpasswd.c54 struct berval id = {0, NULL}, hash, *rsp = NULL; local
320 slap_passwd_hash_type( &qpw->rs_new, &hash, hashes[i], &rs->sr_text );
321 if ( hash.bv_len == 0 ) {
323 rs->sr_text = "password hash failed";
327 ml->sml_values[i] = hash;
702 char *hash,
708 assert( hash != NULL );
710 lutil_passwd_hash( cred , hash, new, text );
718 char *hash = NULL; local
720 hash
699 slap_passwd_hash_type( struct berval * cred, struct berval * new, char *hash, const char **text ) argument
[all...]
/macosx-10.10/xnu-2782.1.97/libkern/c++/
H A DOSSymbol.cpp86 unsigned int hash = 0; local
91 if (!*s) break; len++; hash ^= *s++;
92 if (!*s) break; len++; hash ^= *s++ << 8;
93 if (!*s) break; len++; hash ^= *s++ << 16;
94 if (!*s) break; len++; hash ^= *s++ << 24;
97 *hashP = hash;
269 unsigned int j, inLen, hash; local
272 hashSymbol(cString, &hash, &inLen); inLen++;
273 thisBucket = &buckets[hash % nBuckets];
302 unsigned int j, inLen, hash; local
361 unsigned int j, inLen, hash; local
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/dbm/sdbm/
H A Dsdbm.c247 register long hash; local
264 if ((status = getpage(db, (hash = exhash(key)))) == APR_SUCCESS) {
280 if ((status = makroom(db, hash, need)) != APR_SUCCESS)
302 static apr_status_t makroom(apr_sdbm_t *db, long hash, int need) argument
319 newp = (hash & db->hmask) | (db->hmask + 1);
329 if (hash & (db->hmask + 1)) {
356 + ((hash & (db->hmask + 1)) ? 2 : 1);
444 static apr_status_t getpage(apr_sdbm_t *db, long hash) argument
454 dbit = 2 * dbit + ((hash & (1 << hbit++)) ? 2 : 1);
461 pagb = hash
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/netinet/
H A Dtcp_lro.c128 tcp_lro_matching_tuple(struct ip* ip_hdr, struct tcphdr *tcp_hdr, int *hash, argument
136 *hash = LRO_HASH(ip_hdr->ip_src.s_addr, ip_hdr->ip_dst.s_addr,
139 *flow_id = lro_flow_map[*hash];
204 int hash, u_int32_t timestamp, int payload_len)
210 flow->lr_hash_map = hash;
215 lro_flow_map[hash] = flow_id;
343 int drop_hdrlen, int hash, struct tcpopt *topt,
356 if (lro_flow_map[hash] != TCP_LRO_FLOW_UNINIT) {
360 candidate_flow = lro_flow_map[hash];
396 tcp_lro_init_flow(candidate_flow, ip_hdr, tcp_hdr, hash,
203 tcp_lro_init_flow(int flow_id, struct ip* ip_hdr, struct tcphdr *tcp_hdr, int hash, u_int32_t timestamp, int payload_len) argument
341 tcp_lro_insert_flow(struct mbuf *lro_mb, struct ip *ip_hdr, struct tcphdr *tcp_hdr, int payload_len, int drop_hdrlen, int hash, struct tcpopt *topt, u_int32_t *tsval, u_int32_t *tsecr) argument
408 int hash; local
769 int hash; local
824 int hash, flow_id; local
854 int hash, flow_id; local
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Dcompress.c139 unsigned int labels, hash, n; local
156 hash = dns_name_hash(&tname, ISC_FALSE) %
158 for (node = cctx->table[hash]; node != NULL; node = node->next)
203 unsigned int hash; local
224 hash = dns_name_hash(&tname, ISC_FALSE) %
243 node->next = cctx->table[hash];
244 cctx->table[hash] = node;

Completed in 169 milliseconds

<<11121314151617181920>>