/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/support/sym/ |
H A D | template.h | 3 /* define some hash function */ 12 unsigned int hash; member in struct:_sym
|
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/ |
H A D | hash_df.c | 48 * @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 );
|
H A D | hmac_drbg.c | 49 * @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...] |
/vbox/src/VBox/Devices/PC/ipxe/src/tests/ |
H A D | hash_df_test.c | 50 /** Underlying hash algorithm */ 51 struct digest_algorithm *hash; member in struct:hash_df_test 66 * @v hash_algorithm Underlying hash algorithm 75 .hash = &(hash_algorithm), \ 838 hash_df ( (test)->hash, (test)->input, (test)->input_len, \
|
/vbox/src/VBox/Runtime/include/internal/ |
H A D | strhash.h | 38 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/VBox/Devices/Network/slirp/ |
H A D | ip_input.c | 267 u_short hash; local 284 hash = IPREASS_HASH(ip->ip_src.s_addr, ip->ip_id); 285 head = &ipq[hash];
|
/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/xpdm/ |
H A D | VBoxDispVrdpBmp.cpp | 26 * A new bitmap hash is added to the "temporary" list, and the caller is told that the 27 * bitmap was not cached. If the hash is used again, then it is moved to the "cached" list. 204 /* Returns pointer to the entry if the hash already presents in the cache. 214 if (memcmp (&pEntry->hash, phash, sizeof (VRDPBCHASH)) == 0) 231 if (memcmp (&pEntry->hash, phash, sizeof (VRDPBCHASH)) == 0) 277 /* The cache is full. Remove the tail hash. */ 278 memcpy (phashDeleted, &pEntry->hash, sizeof (VRDPBCHASH)); 289 memcpy (&pEntry->hash, phash, sizeof (VRDPBCHASH)); 316 * first time just append the bitmap hash and mark it as "temporary"; 317 * if the hash i 323 VRDPBCHASH hash; local [all...] |
H A D | VBoxDispVrdpBmp.h | 37 /* Bitmap hash. */ 41 /* A 64 bit hash value of pixels. */ 66 VRDPBCHASH hash; member in struct:_VRDPBCENTRY
|
/vbox/src/recompiler/tests/ |
H A D | sha1.c | 224 unsigned char hash[20], buf[BUFSIZE]; local 233 SHA1Final(hash, &ctx); 237 printf("%02x", hash[i]);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/ |
H A D | glyphstr.h | 76 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 D | glyphstr.h | 76 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 D | glyphstr.h | 72 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 D | glyphstr.h | 72 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 D | glyphstr.h | 76 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 D | glyphstr.h | 76 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 D | glyphstr.h | 76 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.8.0/ |
H A D | glyphstr.h | 76 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.9.0/ |
H A D | glyphstr.h | 76 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.10.0/ |
H A D | glyphstr.h | 76 GlyphHashRec hash; member in struct:_GlyphSet 103 FindGlyphRef (GlyphHashPtr hash, 133 AllocateGlyphHash (GlyphHashPtr hash, GlyphHashSetPtr hashSet); 136 ResizeGlyphHash (GlyphHashPtr hash, CARD32 change, Bool global);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/ |
H A D | glyphstr.h | 76 GlyphHashRec hash; member in struct:_GlyphSet 103 FindGlyphRef (GlyphHashPtr hash, 133 AllocateGlyphHash (GlyphHashPtr hash, GlyphHashSetPtr hashSet); 136 ResizeGlyphHash (GlyphHashPtr hash, CARD32 change, Bool global);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/ |
H A D | glyphstr.h | 76 GlyphHashRec hash; member in struct:_GlyphSet 100 FindGlyphRef (GlyphHashPtr hash, 130 AllocateGlyphHash (GlyphHashPtr hash, GlyphHashSetPtr hashSet); 133 ResizeGlyphHash (GlyphHashPtr hash, CARD32 change, Bool global);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/ |
H A D | glyphstr.h | 76 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.14.0/ |
H A D | glyphstr.h | 76 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.15.0/ |
H A D | glyphstr.h | 76 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/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/ |
H A D | LzFind.h | 23 CLzRef *hash; member in struct:_CMatchFinder
|