Searched refs:hash (Results 201 - 225 of 1323) sorted by relevance

1234567891011>>

/macosx-10.10/JavaScriptCore-7600.1.17/profiler/
H A DProfilerBytecodes.h46 CodeBlockHash hash() const { return m_hash; } function in class:JSC::Profiler::Bytecodes
/macosx-10.10/Security-57031.1.35/Security/sec/Security/
H A DSecOTRIdentityPriv.h68 uint8_t hash[kMPIDHashSize]; member in struct:_SecOTRPublicIdentity
88 bool SecOTRFIComparePublicHash(SecOTRFullIdentityRef fullID, const uint8_t hash[kMPIDHashSize]);
101 void SecOTRPICopyHash(SecOTRPublicIdentityRef publicID, uint8_t hash[kMPIDHashSize]);
104 bool SecOTRPICompareHash(SecOTRPublicIdentityRef publicID, const uint8_t hash[kMPIDHashSize]);
/macosx-10.10/WTF-7600.1.24/wtf/text/
H A DAtomicStringHash.h38 static unsigned hash(const AtomicString& key) function in struct:WTF::AtomicStringHash
51 // AtomicStringHash is the default hash for AtomicString
/macosx-10.10/WebCore-7600.1.25/dom/
H A DNamedFlowCollection.cpp119 static unsigned hash(WebKitNamedFlow* key) { return DefaultHash<String>::Hash::hash(key->name()); } function in struct:WebCore::NamedFlowCollection::NamedFlowHashFunctions
126 static unsigned hash(const String& key) { return DefaultHash<String>::Hash::hash(key); } function in struct:WebCore::NamedFlowCollection::NamedFlowHashTranslator
/macosx-10.10/WebKit2-7600.1.25/Platform/IPC/
H A DStringReference.cpp59 unsigned StringReference::Hash::hash(const StringReference& a) function in class:IPC::StringReference::Hash
/macosx-10.10/bind9-45.101/bind9/lib/isc/
H A Dhash.c18 /* $Id: hash.c,v 1.16 2009/09/01 00:22:28 jinmei Exp $ */
21 * Some portion of this code was derived from universal hash function
62 #include <isc/hash.h>
76 * A large 32-bit prime number that specifies the range of the hash output.
82 * Types of random seed and hash accumulator. Perhaps they can be system
89 /*% isc hash structure */
104 static isc_hash_t *hash = NULL; variable
156 * operation at the last stage of hash calculation, the accumulator
227 INSIST(hash == NULL);
233 if (hash
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/isc/tests/
H A Disctest.h25 #include <isc/hash.h>
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dconncache.h26 struct curl_hash *hash; member in struct:conncache
/macosx-10.10/emacs-93/emacs/lisp/gnus/
H A Drfc2104.el33 ;;; (rfc2104-hash 'md5 64 16 "Jefe" "what do ya want for nothing?")
37 ;;; (rfc2104-hash 'sha1-encode 64 20 "Jefe" "what do ya want for nothing?")
40 ;;; 64 is block length of hash function (64 for MD5 and SHA), 16 is
41 ;;; resulting hash length (16 for MD5, 20 for SHA).
98 (defun rfc2104-hash (hash block-length hash-length key text)
101 (funcall hash key) key))
112 ;; perform outer hash
113 (funcall hash (conca
[all...]
/macosx-10.10/ipsec-286.1.1/ipsec-tools/racoon/
H A Dvendorid.h84 vchar_t *hash; member in struct:vendor_id
/macosx-10.10/mail_cmds-30/mail/
H A Dvars.c64 h = hash(name);
138 for (vp = variables[hash(name)]; vp != NULL; vp = vp->v_link)
154 for (gh = groups[hash(name)]; gh != NULL; gh = gh->g_link)
182 * the variable or group hash table.
185 hash(name) function
/macosx-10.10/ntfs-84/kext/
H A Dntfs_hash.h2 * ntfs_hash.h - Defines for inode hash structures and operations for the NTFS
63 * ntfs_inode_hash_rm_nolock - remove an ntfs inode from the ntfs inode hash
64 * @ni: ntfs inode to remove from the hash
66 * Remove the ntfs inode @ni from the ntfs inode hash.
70 LIST_REMOVE(ni, hash);
/macosx-10.10/ntp-92/lib/isc/
H A Dhash.c18 /* $Id: hash.c,v 1.13.332.3 2009/05/07 23:47:12 tbox Exp $ */
21 * Some portion of this code was derived from universal hash function
62 #include <isc/hash.h>
76 * A large 32-bit prime number that specifies the range of the hash output.
82 * Types of random seed and hash accumulator. Perhaps they can be system
89 /*% isc hash structure */
104 static isc_hash_t *hash = NULL; variable
156 * operation at the last stage of hash calculation, the accumulator
223 INSIST(hash == NULL);
229 if (hash
[all...]
/macosx-10.10/ruby-106/ruby/lib/rdoc/generator/template/darkfish/js/
H A Ddarkfish.js126 console.debug( "Location hash: %s", window.location.hash );
127 if ( ! window.location.hash || window.location.hash.length == 0 ) return;
129 var anchor = window.location.hash.substring(1);
/macosx-10.10/security_systemkeychain-55202/src/
H A Dcs_misc.cpp70 SHA1::Digest hash; local
71 int rchash = ::csops(pid, CS_OPS_CDHASH, hash, sizeof(hash));
75 printf(" cdhash=%s", hashString(hash).c_str());
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/ripemd/
H A Dripemd160_test.c119 unsigned char hash[EVP_MAX_MD_SIZE]; local
123 digest(vectors[n].dat, vectors[n].len, hash);
125 dump(hash, hashlen);
130 hmac(vectors[n].dat, vectors[n].len, U6, 20, hash, &hashlen);
132 dump(hash, hashlen);
137 hmac(vectors[n].dat, vectors[n].len, U7, 20, hash, &hashlen);
139 dump(hash, hashlen);
146 hash, &hashlen);
148 dump(hash, hashlen);
/macosx-10.10/tcl-105/tcl_ext/tclxml/tclxml/expat/xmlparse/
H A Dhashtable.c53 unsigned long hash(KEY s) function
72 i = hash(name) & (table->size - 1);
75 unsigned long h = hash(name);
93 for (j = hash(table->v[i]->name) & (newSize - 1);
/macosx-10.10/tcl-105/tcl_ext/tclxml/tclxslt/library/
H A Dxsltcache.tcl66 set hash $src.$ssheet.$parameters
89 if {$readSource || $readStylesheet || ![info exists results($hash)]} {
91 set results($hash) [eval [list $stylesheets($ssheet)] transform [list $sources($src)] $parameters]
92 set results($hash,time) [clock seconds]
95 return $results($hash)
292 set hash $src.$ssheet.$parameters
332 catch {dom::destroy $results($hash)}
333 catch {unset results($hash)}
334 catch {unset results($hash,time)}
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/library/xml/TclExpat-1.1/
H A Dhashtable.c36 unsigned long hash(KEY s) function
55 i = hash(name) & (table->size - 1);
58 unsigned long h = hash(name);
76 for (j = hash(table->v[i]->name) & (newSize - 1);
/macosx-10.10/eap8021x-198/EAP8021X.fproj/
H A Dmschap.c60 uint8_t hash[NT_PASSWORD_HASH_SIZE])
62 CC_MD4(password, password_len, hash);
70 uint8_t hash[NT_PASSWORD_HASH_SIZE]; local
72 NTPasswordHash(password, password_len, hash);
73 NTPasswordHash(hash, NT_PASSWORD_HASH_SIZE, ret_hash);
82 uint8_t hash[NT_PASSWORD_HASH_SIZE]; local
84 NTPasswordHash(password, password_len, hash);
85 ChallengeResponse(challenge, hash, response);
95 uint8_t hash[NT_PASSWORD_HASH_SIZE]; local
97 NTPasswordHashHash(password, password_len, hash);
59 NTPasswordHash(const uint8_t * password, uint32_t password_len, uint8_t hash[NT_PASSWORD_HASH_SIZE]) argument
127 uint8_t hash[CC_SHA1_DIGEST_LENGTH]; local
172 uint8_t hash[CC_SHA1_DIGEST_LENGTH]; local
379 uint8_t hash[NT_PASSWORD_HASH_SIZE]; local
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DPropertyMapHashTable.h243 // The table of values lies after the hash index.
294 unsigned hash = key->existingHash(); local
302 unsigned entryIndex = m_index[hash & m_indexMask];
304 return std::make_pair((ValueType*)0, hash & m_indexMask);
306 return std::make_pair(&table()[entryIndex - 1], hash & m_indexMask);
316 dataLog("PropertyTable collision for ", key, " (", hash, ") with step ", step, "\n");
320 hash += step;
332 unsigned hash = key->existingHash(); local
340 unsigned entryIndex = m_index[hash & m_indexMask];
352 hash
360 unsigned hash = key->hash(); local
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Dcgen-opc.c42 /* Return number of hash table entries to use for N elements. */
112 unsigned int hash; local
118 hash = hash_keyword_name (kt, ke->name, 0);
119 ke->next_name = kt->name_hash_table[hash];
120 kt->name_hash_table[hash] = ke;
122 hash = hash_keyword_value (kt, ke->value);
123 ke->next_value = kt->value_hash_table[hash];
124 kt->value_hash_table[hash] = ke;
186 /* Anything left on this hash chain? */
193 /* Move to next hash chai
216 unsigned int hash; local
[all...]
/macosx-10.10/CPANInternal-159.1/Tree-Simple-VisitorFactory-0.10/lib/Tree/Simple/Visitor/
H A DFromNestedHash.pm35 || die "Insufficient Arguments : The hash tree provided must be a single rooted tree";
52 my ($self, $tree, $hash, $node_filter, $include_trunk) = @_;
53 foreach my $key (sort keys %{$hash}) {
65 $self->_buildTree($new_tree, $hash->{$key}, $node_filter)
66 if ref($hash->{$key}) eq 'HASH';
76 Tree::Simple::Visitor::FromNestedHash - A Visitor for creating Tree::Simple objects from nested hash trees.
84 # given this nested hash tree
126 This method accepts a CODE reference as its C<$filter_function> argument and throws an exception if it is not a code reference. This code reference is used to filter the tree nodes as they are created, the C<$filter_function> is passed the node value extracted from the hash prior to it being inserted into the tree being built. The C<$filter_function> is expected to return the value desired for inclusion into the tree.
142 Basically each key in the hash is considered a node, values are ignored unless it is a hash referenc
[all...]
/macosx-10.10/WTF-7600.1.24/wtf/
H A DHashFunctions.h35 // integer hash function
89 // Compound integer hash method: http://opendatastructures.org/versions/edition-0.1d/ods-java/node33.html#SECTION00832000000000000000
102 static unsigned hash(T key) { return intHash(static_cast<typename IntTypes<sizeof(T)>::UnsignedType>(key)); } function in struct:WTF::IntHash
109 static unsigned hash(T key) function in struct:WTF::FloatHash
120 // pointer identity hash function
123 static unsigned hash(T key) function in struct:WTF::PtrHash
125 return IntHash<uintptr_t>::hash(reinterpret_cast<uintptr_t>(key));
131 using PtrHash<P*>::hash;
132 static unsigned hash(const RefPtr<P>& key) { return hash(ke function in struct:WTF::PtrHash
144 static unsigned hash(const std::pair<T, U>& p) function in struct:WTF::PairHash
157 static unsigned hash(const std::pair<T, U>& p) { return pairIntHash(p.first, p.second); } function in struct:WTF::IntPairHash
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Dmdtest.c125 unsigned char hash[64]; member in struct:test
268 hash_test (struct hash_foo *hash, struct test *tests) argument
273 void *ctx = malloc(hash->psize);
274 unsigned char *res = malloc(hash->hsize);
276 printf ("%s... ", hash->name);
281 EVP_DigestInit_ex(ectx, hash->evp(), NULL);
283 (*hash->init)(ctx);
288 (*hash->update)(ctx, buf, sizeof(buf));
292 (*hash->update)(ctx, (unsigned char *)t->str, strlen(t->str));
296 (*hash
[all...]

Completed in 197 milliseconds

1234567891011>>