Searched refs:hash (Results 451 - 475 of 1323) sorted by relevance

<<11121314151617181920>>

/macosx-10.10/ruby-106/ruby/
H A Dproc.c804 rb_hash_proc(st_index_t hash, VALUE prc) argument
808 hash = rb_hash_uint(hash, (st_index_t)proc->block.iseq);
809 hash = rb_hash_uint(hash, (st_index_t)proc->envval);
810 return rb_hash_uint(hash, (st_index_t)proc->block.ep >> 16);
815 * prc.hash -> integer
817 * Returns a hash value corresponding to proc body.
823 st_index_t hash; local
824 hash
1087 st_index_t hash; local
[all...]
/macosx-10.10/objc4-646/runtime/
H A Dmaptable.h24 Scalable hash table of mappings.
46 As well-behaved scalable data structures, hash tables double in size when they start becoming full, thus guaranteeing both average constant time access and linear size. */
57 unsigned (*hash)(NXMapTable *, const void *key); member in struct:_NXMapTablePrototype
65 B - key1 == key2 => hash(key1) == hash(key2)
66 when key varies over time, hash(key) must remain invariant
132 /* for objects; uses methods: hash, isEqual:, free, all for key. */
/macosx-10.10/BerkeleyDB-21/db/test/
H A Denv009.tcl23 set dbh [berkdb_open -create -hash $testdir/env009h.db]
65 puts "\tEnv009.j: hash stats"
/macosx-10.10/CPANInternal-159.1/DateTime-Format-Builder-0.80/lib/DateTime/Format/Builder/Parser/
H A Dgeneric.pm21 Standard constructor. Returns a blessed hash; any arguments are placed
22 in the hash. This is useful for storing information between methods.
145 value from C<do_match> and the parsing hash.
153 and the parsing hash and should return a C<DateTime> object or
/macosx-10.10/CPANInternal-159.1/Unix-Getrusage-0.03/lib/Unix/
H A DGetrusage.pm53 calling process or its children. They return hash references (to avoid
/macosx-10.10/Chess-310.6/sjeng/
H A Dsjeng.h52 #define Hash(x,y) (hash ^= zobrist[(x)][(y)])
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Drand-fortuna.c62 * do it, resetting hash after each request. I guess expecting
66 * J.L. Cooke fixed this by feeding previous hash to new re-initialized
67 * hash context.
70 * 'final result' from hash, without affecting it.
99 /* Both cipher key size and hash result size */
321 unsigned char hash[BLOCK]; local
324 /* hash given data */
327 md_result(&md, hash);
336 md_update(&st->pool[pos], hash, BLOCK);
341 memset(hash,
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/assembler/
H A DMacroAssemblerCodeRef.h356 unsigned hash() const { return PtrHash<void*>::hash(m_value); } function in class:JSC::MacroAssemblerCodePtr
366 static unsigned hash(const MacroAssemblerCodePtr& ptr) { return ptr.hash(); } function in struct:JSC::MacroAssemblerCodePtrHash
/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DReg.h158 unsigned hash() const function in class:JSC::Reg
/macosx-10.10/Security-57031.1.35/Security/authd/
H A Dconnection.c41 .hash = NULL,
/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A Dmachorep.cpp113 // - Otherwise, use the SHA-1 hash of the (entire) load commands.
136 // otherwise, use the SHA-1 hash of the entire load command area
137 SHA1 hash; local
138 hash(&macho->header(), sizeof(mach_header));
139 hash(macho->loadCommands(), macho->commandLength());
141 hash.finish(digest);
H A Dopaquewhitelist.cpp41 static std::string hashString(CFDataRef hash);
228 // Convert a SHA1 hash to a hex string
230 static std::string hashString(CFDataRef hash) argument
232 if (CFDataGetLength(hash) != sizeof(SHA1::Digest)) {
235 const UInt8 *bytes = CFDataGetBytePtr(hash);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dmachorep.cpp113 // - Otherwise, use the SHA-1 hash of the (entire) load commands.
136 // otherwise, use the SHA-1 hash of the entire load command area
137 SHA1 hash; local
138 hash(&macho->header(), sizeof(mach_header));
139 hash(macho->loadCommands(), macho->commandLength());
141 hash.finish(digest);
H A Dopaquewhitelist.cpp41 static std::string hashString(CFDataRef hash);
228 // Convert a SHA1 hash to a hex string
230 static std::string hashString(CFDataRef hash) argument
232 if (CFDataGetLength(hash) != sizeof(SHA1::Digest)) {
235 const UInt8 *bytes = CFDataGetBytePtr(hash);
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dcodesigdb.h26 // codesigdb - code-hash equivalence database
50 // It can represent either an existing or latent code-hash link.
51 // Subclass must provide path and hash source functions.
89 void removeLink(const CssmData &hash, const char *name, bool forSystem);
/macosx-10.10/WTF-7600.1.24/wtf/
H A DSchedulePair.h76 static unsigned hash(const RefPtr<SchedulePair>& pair) function in struct:WTF::SchedulePairHash
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSPropertySourceData.h60 unsigned hash() const;
/macosx-10.10/WebCore-7600.1.25/page/
H A DLocation.h71 String hash() const;
/macosx-10.10/WebCore-7600.1.25/plugins/
H A DPluginPackage.cpp44 // PluginSet hash is already populated, as it removes items from
45 // the hash table. Calling the destructor on a loaded plug-in of
329 unsigned PluginPackage::hash() const function in class:WebCore::PluginPackage
332 unsigned hash; member in struct:WebCore::HashCodes
336 hashCodes.hash = m_path.impl()->hash();
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DTimelineRecord.js143 cookie[WebInspector.TimelineRecord.SourceCodeURLCookieKey] = this._sourceCodeLocation ? this._sourceCodeLocation.sourceCode.url ? this._sourceCodeLocation.sourceCode.url.hash : null : null;
/macosx-10.10/WebKit2-7600.1.25/Platform/IPC/
H A DStringReference.h75 static unsigned hash(const StringReference& a);
/macosx-10.10/apr-32/apr/apr/random/unix/
H A Dapr_random.c51 #define hash(h,r,b,n) hash_init(h),hash_add(h,b,n),hash_finish(h,r) macro
251 hash(g->pool_hash,p->pool+r,p->pool+r*2,g->pool_hash->size*2);
265 hash(g->prng_hash,g->H,g->H,H_size(g));
266 hash(g->prng_hash,random,g->H,B_size(g));
/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Dlib.c26 #include <isc/hash.h>
/macosx-10.10/bind9-45.101/bind9/lib/isc/tests/
H A Disctest.c26 #include <isc/hash.h>
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dhash.c25 #include "hash.h"
148 /* Insert the data in the hash. If there already was a match in the hash,
188 /* remove the identified hash entry, returns non-zero on failure */
281 --h->size; /* one less entry in the hash now */
327 void Curl_hash_start_iterate(struct curl_hash *hash, argument
330 iter->hash = hash;
339 struct curl_hash *h = iter->hash;

Completed in 187 milliseconds

<<11121314151617181920>>