Home
last modified time | relevance | path

Searched refs:hash (Results 1076 - 1100 of 4439) sorted by relevance

1...<<41424344454647484950>>...178

/third_party/jerryscript/jerry-core/ecma/base/
H A Decma-literal-storage.c26 void AddJerryLiteralCache(int32_t hash, void *p) {} in AddJerryLiteralCache() argument
28 void DelJerryLiteralCache(int32_t hash) {} in DelJerryLiteralCache() argument
30 void *GetJerryLiteralCache(int32_t hash) in GetJerryLiteralCache() argument
90 DelJerryLiteralCache(string_p->u.hash); in ecma_free_string_list()
156 ecma_string_t *cached_literal = (ecma_string_t *)GetJerryLiteralCache(nonref_string_p->u.hash); in ecma_find_or_create_literal_string()
212 AddJerryLiteralCache(string_p->u.hash, string_p); in ecma_find_or_create_literal_string()
228 AddJerryLiteralCache(string_p->u.hash, string_p); in ecma_find_or_create_literal_string()
/third_party/ltp/metadata/
H A Dmetaparse.c412 int hash = 0; in parse_array_size() local
446 hash = 1; in parse_array_size()
450 if (!hash) in parse_array_size()
645 int hash = 0; in parse_include_macros() local
653 hash = 1; in parse_include_macros()
657 if (!hash) in parse_include_macros()
663 hash = 0; in parse_include_macros()
861 fprintf(stderr, "Failed to initialize hash table\n"); in main()
/third_party/mesa3d/src/gallium/frontends/xa/
H A Dxa_tgsi.c435 struct cso_hash *hash, unsigned processor) in cache_destroy()
437 struct cso_hash_iter iter = cso_hash_first_node(hash); in cache_destroy()
447 iter = cso_hash_erase(hash, iter); in cache_destroy()
449 cso_hash_deinit(hash); in cache_destroy()
463 unsigned type, struct cso_hash *hash, unsigned key) in shader_from_cache()
467 struct cso_hash_iter iter = cso_hash_find(hash, key); in shader_from_cache()
474 cso_hash_insert(hash, key, shader); in shader_from_cache()
434 cache_destroy(struct pipe_context *pipe, struct cso_hash *hash, unsigned processor) cache_destroy() argument
462 shader_from_cache(struct pipe_context *pipe, unsigned type, struct cso_hash *hash, unsigned key) shader_from_cache() argument
/third_party/mesa3d/src/mesa/vbo/
H A Dvbo_minmax_index.c111 uint32_t hash; in vbo_get_minmax_cached() local
145 hash = vbo_minmax_cache_hash(&key); in vbo_get_minmax_cached()
146 result = _mesa_hash_table_search_pre_hashed(bufferObj->MinMaxCache, hash, &key); in vbo_get_minmax_cached()
183 uint32_t hash; in vbo_minmax_cache_store() local
208 hash = vbo_minmax_cache_hash(&entry->key); in vbo_minmax_cache_store()
211 hash, &entry->key); in vbo_minmax_cache_store()
222 hash, &entry->key, entry); in vbo_minmax_cache_store()
/third_party/node/deps/undici/src/lib/fetch/
H A Dutil.js19 supportedHashes = crypto.getHashes().filter((hash) => possibleRelevantHashes.includes(hash))
52 if (location && !location.hash) {
53 location.hash = requestFragment
471 url.hash = ''
535 // allow requests if an invalid hash is given, as precedence).
568 const expectedValue = item.hash
595 // https://w3c.github.io/webappsec-subresource-integrity/#grammardef-hash-with-options
598 const parseHashWithOptions = /(?<algo>sha256|sha384|sha512)-((?<hash>[A-Za-z0-9+/]+|[A-Za-z0-9_-]+)={0,2}(?:\s|$)( +[!-~]*)?)?/i
606 /** @type {{ algo: string, hash
[all...]
/third_party/toybox/toys/lsb/
H A Dmd5sum.c11 * see http://valerieaurora.org/hash.html).
32 Calculate md5 hash for each input file, reading from stdin if none.
33 Output one hash (32 hex digits) for each input file, followed by filename.
35 -b Brief (hash only, no filename)
36 -c Check each line of each FILE is the same hash+filename we'd output
45 Calculate sha hash for each input file, reading from stdin if none. Output
46 one hash (40 hex digits for sha1, 56 for sha224, 64 for sha256, 96 for sha384,
49 -b Brief (hash only, no filename)
50 -c Check each line of each FILE is the same hash+filename we'd output
124 // Mix next 64 bytes of data into md5 hash
251 struct hash { do_lib_hash() struct
266 }, * hash; do_lib_hash() local
[all...]
/third_party/toybox/toys/pending/
H A Dmodprobe.c141 unsigned i, hash = 0; in get_mod() local
144 for (i = 0; name[i]; i++) hash = ((hash*31) + hash) + name[i]; in get_mod()
145 hash %= ARRAY_LEN(TT.dbase); in get_mod()
146 for (temp = TT.dbase[hash]; temp; temp = temp->next) { in get_mod()
153 llist_add(&TT.dbase[hash], modentry); in get_mod()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_common/
H A Deap_gpsk_common.c44 u8 ibuf[2], hash[16]; in eap_gpsk_gkdf_cmac() local
48 hashlen = sizeof(hash); in eap_gpsk_gkdf_cmac()
60 if (omac1_aes_128_vector(psk, 2, addr, vlen, hash)) in eap_gpsk_gkdf_cmac()
63 os_memcpy(opos, hash, clen); in eap_gpsk_gkdf_cmac()
79 u8 ibuf[2], hash[SHA256_MAC_LEN]; in eap_gpsk_gkdf_sha256() local
95 if (hmac_sha256_vector(psk, 32, 2, addr, vlen, hash)) in eap_gpsk_gkdf_sha256()
98 os_memcpy(opos, hash, clen); in eap_gpsk_gkdf_sha256()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_common/
H A Deap_gpsk_common.c44 u8 ibuf[2], hash[16]; in eap_gpsk_gkdf_cmac() local
48 hashlen = sizeof(hash); in eap_gpsk_gkdf_cmac()
60 if (omac1_aes_128_vector(psk, 2, addr, vlen, hash)) in eap_gpsk_gkdf_cmac()
63 os_memcpy(opos, hash, clen); in eap_gpsk_gkdf_cmac()
79 u8 ibuf[2], hash[SHA256_MAC_LEN]; in eap_gpsk_gkdf_sha256() local
95 if (hmac_sha256_vector(psk, 32, 2, addr, vlen, hash)) in eap_gpsk_gkdf_sha256()
98 os_memcpy(opos, hash, clen); in eap_gpsk_gkdf_sha256()
/foundation/graphic/graphic_3d/lume/LumeFont/src/
H A Dfont_buffer.cpp24 FontBuffer::FontBuffer(FontManager* fontMgr, const uint64_t hash, BASE_NS::array_view<const uint8_t> bytes) in FontBuffer() argument
25 : hash_(hash), bytes_(bytes.data(), bytes.data() + bytes.size()), in FontBuffer()
/foundation/distributeddatamgr/data_object/frameworks/innerkitsimpl/src/
H A Dobject_types_util.cpp35 input.modifyTime, input.size, input.status, input.hash); in Marshalling()
41 output.modifyTime, output.size, output.status, output.hash); in Unmarshalling()
/kernel/linux/linux-5.10/arch/powerpc/boot/
H A DzImage.lds.S37 .hash : { *(.hash) }
/kernel/linux/linux-5.10/arch/parisc/boot/compressed/
H A Dvmlinux.lds.S102 *(.hash)
103 *(.gnu.hash)
/kernel/linux/linux-6.6/arch/powerpc/boot/
H A DzImage.lds.S45 .hash : { *(.hash) }
/kernel/linux/linux-6.6/arch/arm/crypto/
H A Dnhpoly1305-neon-glue.c3 * NHPoly1305 - ε-almost-∆-universal hash function for Adiantum
11 #include <crypto/internal/hash.h>
17 __le64 hash[NH_NUM_PASSES]);
67 MODULE_DESCRIPTION("NHPoly1305 ε-almost-∆-universal hash function (NEON-accelerated)");
/kernel/linux/linux-6.6/arch/arm64/crypto/
H A Dnhpoly1305-neon-glue.c3 * NHPoly1305 - ε-almost-∆-universal hash function for Adiantum
11 #include <crypto/internal/hash.h>
17 __le64 hash[NH_NUM_PASSES]);
67 MODULE_DESCRIPTION("NHPoly1305 ε-almost-∆-universal hash function (NEON-accelerated)");
/kernel/linux/linux-6.6/arch/parisc/boot/compressed/
H A Dvmlinux.lds.S102 *(.hash)
103 *(.gnu.hash)
/kernel/linux/linux-5.10/include/crypto/
H A Dnhpoly1305.h3 * Common values and helper functions for the NHPoly1305 hash function.
9 #include <crypto/hash.h>
51 * NH_MESSAGE_BYTES. When nonzero, 'nh_hash' holds the partial NH hash.
59 __le64 hash[NH_NUM_PASSES]);
/kernel/linux/linux-6.6/include/crypto/
H A Dnhpoly1305.h3 * Common values and helper functions for the NHPoly1305 hash function.
9 #include <crypto/hash.h>
51 * NH_MESSAGE_BYTES. When nonzero, 'nh_hash' holds the partial NH hash.
59 __le64 hash[NH_NUM_PASSES]);
/kernel/linux/linux-6.6/arch/x86/crypto/
H A Dnhpoly1305-avx2-glue.c3 * NHPoly1305 - ε-almost-∆-universal hash function for Adiantum
9 #include <crypto/internal/hash.h>
17 __le64 hash[NH_NUM_PASSES]);
68 MODULE_DESCRIPTION("NHPoly1305 ε-almost-∆-universal hash function (AVX2-accelerated)");
H A Dnhpoly1305-sse2-glue.c3 * NHPoly1305 - ε-almost-∆-universal hash function for Adiantum
9 #include <crypto/internal/hash.h>
17 __le64 hash[NH_NUM_PASSES]);
67 MODULE_DESCRIPTION("NHPoly1305 ε-almost-∆-universal hash function (SSE2-accelerated)");
/third_party/gn/src/gn/
H A Dbuilder_record_map.h26 size_t hash_value() const { return record->label().hash(); } in hash_value()
74 return NodeLookup(label.hash(), [&label](const NodeType* node) { in Lookup()
H A Dlabel_ptr.h55 // The default hash and comparison operators operate on the label, which should
71 struct hash<LabelPtrPair<T>> { struct
73 hash<Label> h; in operator ()()
H A Doutput_file.h54 struct hash<OutputFile> { struct
56 hash<std::string> h; in operator ()()
/third_party/mbedtls/3rdparty/p256-m/
H A Dp256-m_driver_entrypoints.h142 /** Sign an already-calculated hash with a private key using p256-m's ECDSA
151 * \param[in] hash The hash to sign.
152 * \param[in] hash_length Size of the \p hash buffer in bytes.
172 const uint8_t *hash,
178 /** Verify the signature of a hash using a SECP256R1 public key using p256-m's
195 * \param[in] hash The hash whose signature is to be
197 * \param[in] hash_length Size of the \p hash buffer in bytes.
214 const uint8_t *hash,
[all...]

Completed in 12 milliseconds

1...<<41424344454647484950>>...178