Searched refs:hash (Results 1 - 25 of 130) sorted by relevance

123456

/vbox/src/VBox/Runtime/include/internal/
H A Dstrhash.h38 function is hash(i) = hash(i - 1) * 65599 + str[i]; what is included below
46 * Hash string, return hash + length.
51 uint32_t hash = 0; local
55 hash = c + (hash << 6) + (hash << 16) - hash;
58 return hash;
63 * Hash up to N bytes, return hash
68 uint32_t hash = 0; local
82 sdbmInc(const char *str, uint32_t hash) argument
[all...]
/vbox/src/libs/libxml2-2.6.31/python/tests/
H A DcompareNodes.py9 # Testing XML Node comparison and Node hash-value
30 # Next check that the hash function for the objects also works ok
31 if not (hash(foonode1) == hash(foonode2)):
32 print "Error hash values for two equal nodes are different"
34 if not (hash(foonode1) != hash(root)):
35 print "Error hash values for two unequal nodes are not different"
37 if hash(foonode1) == hash(roo
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Dhmac_drbg.c49 * @v hash Underlying hash algorithm
61 static void hmac_drbg_update_key ( struct digest_algorithm *hash, argument
65 uint8_t context[ hash->ctxsize ];
66 size_t out_len = hash->digestsize;
68 DBGC ( state, "HMAC_DRBG_%s %p provided data :\n", hash->name, state );
72 assert ( hash != NULL );
78 hmac_init ( hash, context, state->key, &out_len );
79 assert ( out_len == hash->digestsize );
80 hmac_update ( hash, contex
106 hmac_drbg_update_value( struct digest_algorithm *hash, struct hmac_drbg_state *state ) argument
141 hmac_drbg_update( struct digest_algorithm *hash, struct hmac_drbg_state *state, const void *data, size_t len ) argument
193 hmac_drbg_instantiate( struct digest_algorithm *hash, struct hmac_drbg_state *state, const void *entropy, size_t entropy_len, const void *personal, size_t personal_len ) argument
242 hmac_drbg_reseed( struct digest_algorithm *hash, struct hmac_drbg_state *state, const void *entropy, size_t entropy_len, const void *additional, size_t additional_len ) argument
293 hmac_drbg_generate( struct digest_algorithm *hash, struct hmac_drbg_state *state, const void *additional, size_t additional_len, void *data, size_t len ) argument
[all...]
H A Dhash_df.c48 * @v hash Underlying hash algorithm
67 void hash_df ( struct digest_algorithm *hash, const void *input, argument
69 uint8_t context[hash->ctxsize];
70 uint8_t digest[hash->digestsize];
110 digest_init ( hash, context );
111 digest_update ( hash, context, &prefix.counter,
114 digest_update ( hash, context, input, input_len );
115 digest_final ( hash, context, digest );
/vbox/src/VBox/Devices/PC/ipxe/src/util/Option/
H A DROM.pm220 my $hash = {};
221 tie %$hash, "Option::ROM::Fields", {
238 bless $hash, $class;
239 return $hash;
251 my $hash = shift;
252 my $self = tied(%$hash);
274 my $hash = shift;
275 my $self = tied(%$hash);
296 my $hash = shift;
297 my $self = tied(%$hash);
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dhmac_drbg.h17 * @v hash Underlying hash algorithm
22 #define HMAC_DRBG( hash, max_security_strength, out_len_bits ) \
23 ( hash, max_security_strength, out_len_bits )
85 /** Underlying hash algorithm
88 * @ret hash Underlying hash algorithm
92 #define HMAC_DRBG_EXTRACT_HASH( hash, max_security_strength, out_len_bits ) \
93 hash
102 #define HMAC_DRBG_EXTRACT_MAX_SECURITY_STRENGTH( hash, max_security_strengt
[all...]
H A Dhash_df.h15 extern void hash_df ( struct digest_algorithm *hash, const void *input,
/vbox/src/VBox/Main/src-all/
H A DQMTranslatorImpl.cpp155 uint32_t hash; member in struct:QMTranslator_Impl::QMMessage
156 QMMessage() : hash(0) {}
161 uint32_t hash; member in struct:QMTranslator_Impl::HashOffset
164 HashOffset(uint32_t _hash = 0, uint32_t _offs = 0) : hash(_hash), offset(_offs) {}
168 return (hash != obj.hash ? hash < obj.hash : offset < obj.offset);
192 uint32_t hash = calculateHash(pszSource, pszDisamb); local
193 lowerIter = m_hashSet.lower_bound(HashOffset(hash,
361 uint32_t hash = 0, g; local
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/
H A Dmkdemo.pl44 my %hash;
59 if (exists $hash{'name'}) {
60 if (exists $chaps{$hash{'name'}}) {
61 print "$cmd: chapter $hash{'name'} ";
66 $chaps{$hash{'name'}} = { %hash };
67 %hash = ();
71 %hash = ();
81 $hash{$field} .= $value;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A DAntlrDDK.mak22 fset.obj gen.obj globals.obj hash.obj lex.obj main.obj \
41 $(ANTLR_SRC)\hash.h \
56 $(ANTLR_SRC)\hash.h \
71 $(ANTLR_SRC)\hash.h \
83 $(ANTLR_SRC)\hash.h \
94 $(ANTLR_SRC)\hash.h \
105 $(ANTLR_SRC)\hash.h \
116 $(ANTLR_SRC)\hash.h \
127 $(ANTLR_SRC)\hash.h \
137 $(ANTLR_SRC)\hash
[all...]
H A DAntlrMS.mak23 fset.obj gen.obj globals.obj hash.obj lex.obj main.obj \
41 $(ANTLR_SRC)\hash.h \
56 $(ANTLR_SRC)\hash.h \
71 $(ANTLR_SRC)\hash.h \
83 $(ANTLR_SRC)\hash.h \
94 $(ANTLR_SRC)\hash.h \
105 $(ANTLR_SRC)\hash.h \
116 $(ANTLR_SRC)\hash.h \
127 $(ANTLR_SRC)\hash.h \
137 $(ANTLR_SRC)\hash
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/netif/ppp/
H A Dmd5.h53 void MD5Final (unsigned char hash[], MD5_CTX *mdContext);
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/
H A Dmd5.h53 void MD5Final ( unsigned char hash[], MD5_CTX *mdContext);
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/render/
H A Dglyphstr.h70 GlyphHashRec hash; member in struct:_GlyphSet
89 FindGlyphRef (GlyphHashPtr hash, CARD32 signature, Bool match, GlyphPtr compare);
110 AllocateGlyphHash (GlyphHashPtr hash, GlyphHashSetPtr hashSet);
113 ResizeGlyphHash (GlyphHashPtr hash, CARD32 change, Bool global);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DLzFind.c146 p->hash = 0;
161 alloc->Free(alloc, p->hash);
162 p->hash = 0;
240 if (p->hash != 0 && prevSize == newSize)
243 p->hash = AllocRefs(newSize, alloc);
244 if (p->hash != 0)
246 p->son = p->hash + p->hashSizeSum;
284 p->hash[i] = kEmptyHashValue;
316 MatchFinder_Normalize3(subValue, p->hash, p->hashSizeSum + p->numSons);
498 curMatch = p->hash[hashValu
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzFind.c127 p->hash = 0;
142 alloc->Free(alloc, p->hash);
143 p->hash = 0;
221 if (p->hash != 0 && prevSize == newSize)
224 p->hash = AllocRefs(newSize, alloc);
225 if (p->hash != 0)
227 p->son = p->hash + p->hashSizeSum;
265 p->hash[i] = kEmptyHashValue;
297 MatchFinder_Normalize3(subValue, p->hash, p->hashSizeSum + p->numSons);
479 curMatch = p->hash[hashValu
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/threads/
H A Dprcmon.c89 ** Expand the monitor cache. This grows the hash buckets and allocates a
91 ** as many hash buckets as there are entries.
163 /* Try to expand the hash table */
168 ** Partial lossage. In this situation we don't get any more hash
173 ("unable to grow monitor cache hash buckets"));
178 ** Compute new hash mask value. This value is used to mask an address
179 ** until it's bits are in the right spot for indexing into the hash
185 ** Expand the hash table. We have to rehash everything in the old
196 PRUintn hash = HASH(p->address); local
197 p->next = new_hash_buckets[hash];
227 PRUintn hash; local
250 PRUintn hash; local
[all...]
/vbox/src/libs/xpcom18a4/xpcom/tools/
H A Danalyze-xpcom-log.pl32 # hash of cid -> contractid
170 my %hash = %$hash_ref;
173 foreach $key (keys %hash) {
174 $total += $hash{$key};
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dglyphstr.h76 GlyphHashRec hash; member in struct:_GlyphSet
99 FindGlyphRef(GlyphHashPtr hash,
123 AllocateGlyphHash(GlyphHashPtr hash, GlyphHashSetPtr hashSet);
126 ResizeGlyphHash(GlyphHashPtr hash, CARD32 change, Bool global);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dglyphstr.h76 GlyphHashRec hash; member in struct:_GlyphSet
99 FindGlyphRef(GlyphHashPtr hash,
123 AllocateGlyphHash(GlyphHashPtr hash, GlyphHashSetPtr hashSet);
126 ResizeGlyphHash(GlyphHashPtr hash, CARD32 change, Bool global);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dglyphstr.h72 GlyphHashRec hash; member in struct:_GlyphSet
132 FindGlyphRef (GlyphHashPtr hash, CARD32 signature, Bool match, GlyphPtr compare);
153 AllocateGlyphHash (GlyphHashPtr hash, GlyphHashSetPtr hashSet);
156 ResizeGlyphHash (GlyphHashPtr hash, CARD32 change, Bool global);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dglyphstr.h72 GlyphHashRec hash; member in struct:_GlyphSet
130 FindGlyphRef (GlyphHashPtr hash, CARD32 signature, Bool match, GlyphPtr compare);
151 AllocateGlyphHash (GlyphHashPtr hash, GlyphHashSetPtr hashSet);
154 ResizeGlyphHash (GlyphHashPtr hash, CARD32 change, Bool global);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dglyphstr.h76 GlyphHashRec hash; member in struct:_GlyphSet
104 FindGlyphRef (GlyphHashPtr hash,
134 AllocateGlyphHash (GlyphHashPtr hash, GlyphHashSetPtr hashSet);
137 ResizeGlyphHash (GlyphHashPtr hash, CARD32 change, Bool global);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dglyphstr.h76 GlyphHashRec hash; member in struct:_GlyphSet
104 FindGlyphRef (GlyphHashPtr hash,
134 AllocateGlyphHash (GlyphHashPtr hash, GlyphHashSetPtr hashSet);
137 ResizeGlyphHash (GlyphHashPtr hash, CARD32 change, Bool global);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dglyphstr.h76 GlyphHashRec hash; member in struct:_GlyphSet
104 FindGlyphRef (GlyphHashPtr hash,
134 AllocateGlyphHash (GlyphHashPtr hash, GlyphHashSetPtr hashSet);
137 ResizeGlyphHash (GlyphHashPtr hash, CARD32 change, Bool global);

Completed in 7109 milliseconds

123456