/third_party/node/deps/npm/node_modules/cacache/lib/ |
H A D | verify.js | 189 const hashed = index.hashKey(k) 193 if (buckets[hashed] && !excluded) { 194 buckets[hashed].push(entry) 195 } else if (buckets[hashed] && excluded) { 198 buckets[hashed] = [] 199 buckets[hashed]._path = index.bucketPath(cache, k) 201 buckets[hashed] = [entry] 202 buckets[hashed]._path = index.bucketPath(cache, k)
|
H A D | entry-index.js | 280 const hashed = hashKey(key) 283 [bucketDir(cache)].concat(hashToSegments(hashed))
|
/kernel/linux/linux-5.10/drivers/net/ipa/ |
H A D | ipa_table.c | 36 * are normally another set of "hashed" filter and route tables, which are 38 * by all IPA hardware (IPA v4.2 doesn't support hashed tables). 151 ipa_table_valid_one(struct ipa *ipa, bool route, bool ipv6, bool hashed) in ipa_table_valid_one() argument 159 mem = hashed ? &ipa->mem[IPA_MEM_V6_ROUTE_HASHED] in ipa_table_valid_one() 162 mem = hashed ? &ipa->mem[IPA_MEM_V4_ROUTE_HASHED] in ipa_table_valid_one() 167 mem = hashed ? &ipa->mem[IPA_MEM_V6_FILTER_HASHED] in ipa_table_valid_one() 170 mem = hashed ? &ipa->mem[IPA_MEM_V4_FILTER_HASHED] in ipa_table_valid_one() 175 if (!ipa_cmd_table_valid(ipa, mem, route, ipv6, hashed)) in ipa_table_valid_one() 183 if (hashed && !mem->size) in ipa_table_valid_one() 187 ipv6 ? '6' : '4', hashed in ipa_table_valid_one() [all...] |
H A D | ipa_cmd.h | 62 * @hashed: - Whether the table is hashed or non-hashed 67 bool route, bool ipv6, bool hashed); 81 bool ipv6, bool hashed) in ipa_cmd_table_valid() 112 * @size: Size of non-hashed routing table memory 113 * @offset: Offset in IPA shared memory of non-hashed routing table memory 114 * @addr: DMA address of non-hashed table data to write 115 * @hash_size: Size of hashed routing table memory 116 * @hash_offset: Offset in IPA shared memory of hashed routin 79 ipa_cmd_table_valid(struct ipa *ipa, const struct ipa_mem *mem, bool route, bool ipv6, bool hashed) ipa_cmd_table_valid() argument [all...] |
H A D | ipa_cmd.c | 151 * in the ipa_cmd_hw_ip_fltrt_init structure. Although hashed tables in ipa_cmd_validate_build() 152 * might not be used, non-hashed and hashed tables have the same in ipa_cmd_validate_build() 169 bool route, bool ipv6, bool hashed) in ipa_cmd_table_valid() 174 offset_max = hashed ? field_max(IP_FLTRT_FLAGS_HASH_ADDR_FMASK) in ipa_cmd_table_valid() 179 ipv6 ? '6' : '4', hashed ? "hashed " : "", in ipa_cmd_table_valid() 190 ipv6 ? '6' : '4', hashed ? "hashed " : "", in ipa_cmd_table_valid() 284 /* If hashed table in ipa_cmd_register_write_valid() 168 ipa_cmd_table_valid(struct ipa *ipa, const struct ipa_mem *mem, bool route, bool ipv6, bool hashed) ipa_cmd_table_valid() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/ipa/ |
H A D | ipa_table.c | 36 * is normally another set of "hashed" filter and route tables, which are 38 * by all IPA hardware (IPA v4.2 doesn't support hashed tables). 148 ipa_table_mem(struct ipa *ipa, bool filter, bool hashed, bool ipv6) in ipa_table_mem() argument 152 mem_id = filter ? hashed ? ipv6 ? IPA_MEM_V6_FILTER_HASHED in ipa_table_mem() 156 : hashed ? ipv6 ? IPA_MEM_V6_ROUTE_HASHED in ipa_table_mem() 203 bool hashed, bool ipv6, u16 first, u16 count) in ipa_table_reset_add() 212 mem = ipa_table_mem(ipa, filter, hashed, ipv6); in ipa_table_reset_add() 228 * for the IPv4 and IPv6 non-hashed and hashed filter tables. 231 ipa_filter_reset_table(struct ipa *ipa, bool hashed, boo argument 202 ipa_table_reset_add(struct gsi_trans *trans, bool filter, bool hashed, bool ipv6, u16 first, u16 count) ipa_table_reset_add() argument [all...] |
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_ldm.c | 283 size_t hashed; in ZSTD_ldm_fillHashTable() local 287 hashed = ZSTD_ldm_gear_feed(&hashState, ip, iend - ip, splits, &numSplits); in ZSTD_ldm_fillHashTable() 302 ip += hashed; in ZSTD_ldm_fillHashTable() 361 size_t hashed; in ZSTD_ldm_generateSequences_internal() local 365 hashed = ZSTD_ldm_gear_feed(&hashState, ip, ilimit - ip, in ZSTD_ldm_generateSequences_internal() 471 /* If we find a match that ends after the data that we've hashed in ZSTD_ldm_generateSequences_internal() 479 if (anchor > ip + hashed) { in ZSTD_ldm_generateSequences_internal() 481 /* Continue the outer loop at anchor (ip + hashed == anchor). */ in ZSTD_ldm_generateSequences_internal() 482 ip = anchor - hashed; in ZSTD_ldm_generateSequences_internal() 487 ip += hashed; in ZSTD_ldm_generateSequences_internal() [all...] |
/third_party/python/Lib/test/ |
H A D | test_hash.py | 55 hashed = list(map(hash, objlist)) 56 for h in hashed[1:]: 57 if h != hashed[0]: 58 self.fail("hashed values differ: %r" % (objlist,))
|
/third_party/libcoap/src/ |
H A D | coap_ws.c | 395 coap_bin_const_t *hashed = NULL; in coap_ws_build_key_hash() local 407 if (!coap_crypto_hash(COSE_ALGORITHM_SHA_1, &info, &hashed)) in coap_ws_build_key_hash() 410 if (!coap_base64_encode_buffer(hashed->s, hashed->length, in coap_ws_build_key_hash() 412 coap_delete_bin_const(hashed); in coap_ws_build_key_hash() 415 coap_delete_bin_const(hashed); in coap_ws_build_key_hash()
|
/kernel/linux/linux-5.10/drivers/scsi/libsas/ |
H A D | sas_init.c | 71 void sas_hash_addr(u8 *hashed, const u8 *sas_addr) in sas_hash_addr() argument 91 hashed[0] = (r >> 16) & 0xFF; in sas_hash_addr() 92 hashed[1] = (r >> 8) & 0xFF; in sas_hash_addr() 93 hashed[2] = r & 0xFF; in sas_hash_addr()
|
/kernel/linux/linux-6.6/drivers/scsi/libsas/ |
H A D | sas_init.c | 68 void sas_hash_addr(u8 *hashed, const u8 *sas_addr) in sas_hash_addr() argument 88 hashed[0] = (r >> 16) & 0xFF; in sas_hash_addr() 89 hashed[1] = (r >> 8) & 0xFF; in sas_hash_addr() 90 hashed[2] = r & 0xFF; in sas_hash_addr()
|
/third_party/curl/lib/vauth/ |
H A D | digest.c | 775 char hashed[65]; in auth_create_digest_http_message() local 779 convert_to_ascii(hashbuf, (unsigned char *)hashed); in auth_create_digest_http_message() 781 hashthis2 = aprintf("%s:%s", hashthis, hashed); in auth_create_digest_http_message()
|
/third_party/toybox/toys/pending/ |
H A D | tcpsvd.c | 65 struct hashed { struct 70 struct hashed h[HASH_NR];
|
/kernel/linux/linux-5.10/include/scsi/ |
H A D | libsas.h | 425 void sas_hash_addr(u8 *hashed, const u8 *sas_addr);
|
/kernel/linux/linux-6.6/include/scsi/ |
H A D | libsas.h | 407 void sas_hash_addr(u8 *hashed, const u8 *sas_addr);
|
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | sha1-ppc.pl | 233 ; and hashed separately...
|
H A D | sha512-ppc.pl | 265 ; and hashed separately...
|
/third_party/openssl/crypto/sha/asm/ |
H A D | sha1-ppc.pl | 233 ; and hashed separately...
|
H A D | sha512-ppc.pl | 265 ; and hashed separately...
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 14261 for (auto const& hashed : indexed_tests) { 14262 sorted.emplace_back(*hashed.second);
|