Home
last modified time | relevance | path

Searched full:hashes (Results 1 – 25 of 383) sorted by relevance

12345678910>>...16

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeHashing.h41 /// Given a sequence of types, compute all of the local hashes.
44 std::vector<LocallyHashedType> Hashes; in hashTypes() local
45 Hashes.reserve(std::distance(std::begin(Records), std::end(Records))); in hashTypes()
47 Hashes.push_back(hashType(R)); in hashTypes()
49 return Hashes; in hashTypes()
54 std::vector<LocallyHashedType> Hashes; in hashTypeCollection() local
55 Types.ForEachRecord([&Hashes](TypeIndex TI, const CVType &Type) { in hashTypeCollection()
56 Hashes.push_back(hashType(Type.RecordData)); in hashTypeCollection()
58 return Hashes; in hashTypeCollection()
73 /// global hashes o
124 std::vector<GloballyHashedType> Hashes; hashTypes() local
170 std::vector<GloballyHashedType> Hashes; hashTypeCollection() local
[all...]
H A DTypeStreamMerger.h99 ArrayRef<GloballyHashedType> Hashes,
105 ArrayRef<GloballyHashedType> Hashes,
111 ArrayRef<GloballyHashedType> Hashes);
/freebsd/crypto/libecc/scripts/
H A Dtest_ec_utils.sh28 hashes=("SHA224" "SHA256" "SHA384" "SHA512" "SHA512_224" "SHA512_256" "SHA3_224" "SHA3_256" "SHA3_3…
52 for h in "${!hashes[@]}"
56 if [[ "${hashes[h]}" != "SHA512" ]]
63 if [[ "${hashes[h]}" != "SHAKE256" ]]
68 echo "========= TESTING ${curves[c]} ${signatures[s]} ${hashes[h]}"
70 …$EC_UTILS sign ${curves[c]} ${signatures[s]} ${hashes[h]} $EC_UTILS test_key_private_key.bin signe…
72 …$EC_UTILS verify ${curves[c]} ${signatures[s]} ${hashes[h]} $EC_UTILS test_key_public_key.bin sign…
75 …$EC_UTILS struct_sign ${curves[c]} ${signatures[s]} ${hashes[h]} $EC_UTILS test_key_private_key.bi…
77 …$EC_UTILS struct_verify ${curves[c]} ${signatures[s]} ${hashes[h]} signed_file.bin.signed test_key…
/freebsd/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_mi_vector_hash.c50 uint32_t hashes[3]; member
75 uint32_t hashes[3]; in ATF_TC_BODY() local
82 mi_vector_hash(buf + j, len, 0, hashes); in ATF_TC_BODY()
83 ATF_CHECK_EQ(hashes[0], testv[i].hashes[0]); in ATF_TC_BODY()
84 ATF_CHECK_EQ(hashes[1], testv[i].hashes[1]); in ATF_TC_BODY()
85 ATF_CHECK_EQ(hashes[2], testv[i].hashes[2]); in ATF_TC_BODY()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DConcurrentHashtable.h57 /// (pointers to KeyDataTy) and another array of entries hashes:
59 /// BucketsArray[BucketIdx].Hashes[EntryIdx]:
62 /// [Bucket 0].Hashes -> [uint32_t][uint32_t]
65 /// [Bucket 1].Hashes -> [uint32_t][uint32_t][uint32_t][uint32_t]
68 /// [Bucket N].Hashes -> [uint32_t][uint32_t][uint32_t]
134 HashesPtr Hashes = new ExtHashBitsTy[InitialBucketSize]; in MultiThreadAllocator()
135 memset(Hashes, 0, sizeof(ExtHashBitsTy) * InitialBucketSize); in MultiThreadAllocator() local
141 BucketsArray[Idx].Hashes = Hashes; in MultiThreadAllocator()
162 delete[] BucketsArray[Idx].Hashes; in ~ConcurrentHashTableByPtr()
287 HashesPtr Hashes = nullptr; global() member
[all...]
/freebsd/contrib/jemalloc/src/
H A Dckh.c19 * fewest that can work, and supporting multiple hashes is an implementation
25 * #hashes | 1 | 2 | 4 | 8 |
81 size_t hashes[2], bucket, cell; in ckh_isearch()
85 ckh->hash(key, hashes); in ckh_isearch()
88 bucket = hashes[0] & ((ZU(1) << ckh->lg_curbuckets) - 1); in ckh_isearch()
95 bucket = hashes[1] & ((ZU(1) << ckh->lg_curbuckets) - 1); in ckh_isearch()
137 size_t hashes[2], bucket, tbucket; in ckh_evict_reloc_insert()
149 * were an item for which both hashes indicated the same in ckh_evict_reloc_insert()
167 ckh->hash(key, hashes); in ckh_evict_reloc_insert()
168 tbucket = hashes[ in ckh_evict_reloc_insert()
82 size_t hashes[2], bucket, cell; ckh_isearch() local
138 size_t hashes[2], bucket, tbucket; ckh_evict_reloc_insert() local
206 size_t hashes[2], bucket; ckh_try_insert() local
[all...]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.h75 /// Hashes the attributes in \param Attrs in order.
78 /// Hashes the data in a block like DIEValue, e.g. DW_FORM_block or
82 /// Hashes the contents pointed to in the .debug_loc section.
85 /// Hashes an individual attribute.
88 /// Hashes an attribute that refers to another DIE.
92 /// Hashes a reference to a named type in such a way that is
98 /// Hashes a reference to a previously referenced type DIE.
/freebsd/crypto/libecc/src/examples/hash/
H A DMakefile10 HASHES = gostr34_11_94.c md2.c md4.c md5.c mdc2.c sha0.c sha1.c tdes.c macro
18 libhash.a: $(HASHES) hash.c
19 $(VERBOSE_MAKE)$(CROSS_COMPILE)$(CC) $(LIB_CFLAGS) $(HASHES) hash.c -c
24 …$(VERBOSE_MAKE)$(CROSS_COMPILE)$(CC) $(BIN_CFLAGS) -DHASH $(HASHES) hash.c $(ROOT_DIR)/src/externa…
29 …$(VERBOSE_MAKE)$(CROSS_COMPILE)$(CC) $(BIN_CFLAGS) -DHASH $(HASHES) hash.c $(ROOT_DIR)/src/externa…
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp92 ArrayRef<GloballyHashedType> Hashes,
97 ArrayRef<GloballyHashedType> Hashes);
99 ArrayRef<GloballyHashedType> Hashes,
274 ArrayRef<GloballyHashedType> Hashes, in mergeTypeRecords() argument
278 GlobalHashes = Hashes; in mergeTypeRecords()
287 ArrayRef<GloballyHashedType> Hashes) { in mergeIdRecords() argument
291 GlobalHashes = Hashes; in mergeIdRecords()
298 const CVTypeArray &IdsAndTypes, ArrayRef<GloballyHashedType> Hashes, in mergeTypesAndIds() argument
303 GlobalHashes = Hashes; in mergeTypesAndIds()
456 ArrayRef<GloballyHashedType> Hashes, in mergeTypeAndIdRecords() argument
[all …]
/freebsd/crypto/openssl/crypto/x509/
H A Dby_dir.c42 STACK_OF(BY_DIR_HASH) *hashes;
152 sk_BY_DIR_HASH_pop_free(ent->hashes, by_dir_hash_free); in by_dir_entry_free()
206 ent->hashes = sk_BY_DIR_HASH_new(by_dir_hash_cmp); in add_cert_dir()
208 if (ent->dir == NULL || ent->hashes == NULL) { in add_cert_dir()
274 if (type == X509_LU_CRL && ent->hashes) { in get_cert_by_subject_ex()
278 idx = sk_BY_DIR_HASH_find(ent->hashes, &htmp); in get_cert_by_subject_ex()
280 hent = sk_BY_DIR_HASH_value(ent->hashes, idx); in get_cert_by_subject_ex()
374 idx = sk_BY_DIR_HASH_find(ent->hashes, &htmp); in get_cert_by_subject_ex()
375 hent = sk_BY_DIR_HASH_value(ent->hashes, idx); in get_cert_by_subject_ex()
386 if (!sk_BY_DIR_HASH_push(ent->hashes, hent)) { in get_cert_by_subject_ex()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DTpiStreamBuilder.cpp75 ArrayRef<uint32_t> Hashes) { in addTypeRecords()
76 // Ignore empty type buffers. There should be no hashes or sizes in this case. in addTypeRecords()
78 assert(Sizes.empty() && Hashes.empty()); in addTypeRecords()
85 assert(Sizes.size() == Hashes.size() && "sizes and hashes should be in sync"); in addTypeRecords()
91 llvm::append_range(TypeHashes, Hashes); in addTypeRecords()
135 "either all or no type records should have hashes"); in calculateHashBufferSize()
74 addTypeRecords(ArrayRef<uint8_t> Types,ArrayRef<uint16_t> Sizes,ArrayRef<uint32_t> Hashes) addTypeRecords() argument
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.h28 bool Hashes, codeview::LazyRandomTypeCollection &Types, in MinimalTypeDumpVisitor() argument
33 : P(P), Width(Width), RecordBytes(RecordBytes), Hashes(Hashes), in MinimalTypeDumpVisitor()
59 bool Hashes = false; variable
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypeHashing.cpp32 io.mapOptional("HashValues", DebugH.Hashes); in mapping()
61 DHS.Hashes.emplace_back(S); in fromDebugH()
69 uint32_t Size = 8 + 8 * DebugH.Hashes.size(); in toDebugH()
78 for (const auto &H : DebugH.Hashes) { in toDebugH()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DStableHashing.h
/freebsd/sys/dev/qat/qat_api/common/ctrl/
H A Dsal_crypto.c1371 CPA_BITMAP_BIT_SET(pCapInfo->hashes, CPA_CY_SYM_HASH_SHA1); in cpaCySymQueryCapabilities()
1372 CPA_BITMAP_BIT_SET(pCapInfo->hashes, CPA_CY_SYM_HASH_SHA224); in cpaCySymQueryCapabilities()
1373 CPA_BITMAP_BIT_SET(pCapInfo->hashes, CPA_CY_SYM_HASH_SHA256); in cpaCySymQueryCapabilities()
1374 CPA_BITMAP_BIT_SET(pCapInfo->hashes, CPA_CY_SYM_HASH_SHA384); in cpaCySymQueryCapabilities()
1375 CPA_BITMAP_BIT_SET(pCapInfo->hashes, CPA_CY_SYM_HASH_SHA512); in cpaCySymQueryCapabilities()
1376 CPA_BITMAP_BIT_SET(pCapInfo->hashes, CPA_CY_SYM_HASH_AES_XCBC); in cpaCySymQueryCapabilities()
1377 CPA_BITMAP_BIT_SET(pCapInfo->hashes, CPA_CY_SYM_HASH_AES_CCM); in cpaCySymQueryCapabilities()
1378 CPA_BITMAP_BIT_SET(pCapInfo->hashes, CPA_CY_SYM_HASH_AES_GCM); in cpaCySymQueryCapabilities()
1379 CPA_BITMAP_BIT_SET(pCapInfo->hashes, CPA_CY_SYM_HASH_AES_CMAC); in cpaCySymQueryCapabilities()
1380 CPA_BITMAP_BIT_SET(pCapInfo->hashes, CPA_CY_SYM_HASH_AES_GMAC); in cpaCySymQueryCapabilities()
[all …]
/freebsd/tools/tools/git/
H A Dmfc-candidates.lua6 -- MFC candidate search utility. Identify hashes that exist only in the
45 -- Return a table of original hashes of changes that have already been
77 -- Hashes are 40 chars; if less, expand short hash.
89 --- Remove hashes from 'set1' list that are present in 'set2' list
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineStableHash.cpp43 "MachineBasicBlocks while computing stable hashes");
46 "ConstantPoolIndex while computing stable hashes");
52 "GlobalAddress while computing stable hashes");
55 "BlockAddress while computing stable hashes");
58 "Metadata of an unsupported kind while computing stable hashes");
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-rehash.pod.in65 Hashes for CRL's look similar except the letter B<r> appears after
80 uses the B<openssl> program to compute the hashes and
133 The path to an executable to use to generate hashes and
/freebsd/crypto/libecc/src/examples/sig/rsa/
H A DMakefile17 # Compile the hashes
26 # Compile the hashes
/freebsd/contrib/bearssl/src/x509/
H A Dx509_minimal_full.c37 static const br_hash_class *hashes[] = { in br_x509_minimal_init_full() local
56 hc = hashes[id - 1]; in br_x509_minimal_init_full()
/freebsd/usr.bin/bsdiff/bsdiff/
H A Dbsdiff.171 utility does not store the hashes of
81 store the hashes of
/freebsd/contrib/unbound/validator/
H A Dval_nsec3.h102 * Cache table for NSEC3 hashes.
122 * @param ct: cached hashes table.
160 * @param ct: cached hashes table.
185 * @param ct: cached hashes table.
212 * @param ct: cached hashes table.
240 * @param ct: cached hashes table.
411 * the owner and next hashes and does not equal either.
/freebsd/secure/usr.bin/openssl/man/
H A Dopenssl-rehash.1123 Hashes for CRL's look similar except the letter \fBr\fR appears after
137 uses the \fBopenssl\fR program to compute the hashes and
189 The path to an executable to use to generate hashes and
/freebsd/sys/arm/allwinner/
H A Dif_emac.c219 uint32_t h, *hashes = arg; in emac_hash_maddr() local
222 hashes[h >> 5] |= 1 << (h & 0x1f); in emac_hash_maddr()
231 uint32_t hashes[2]; in emac_set_rx_mode() local
244 hashes[0] = 0; in emac_set_rx_mode()
245 hashes[1] = 0; in emac_set_rx_mode()
247 hashes[0] = 0xffffffff; in emac_set_rx_mode()
248 hashes[1] = 0xffffffff; in emac_set_rx_mode()
250 if_foreach_llmaddr(ifp, emac_hash_maddr, hashes); in emac_set_rx_mode()
253 EMAC_WRITE_REG(sc, EMAC_RX_HASH0, hashes[0]); in emac_set_rx_mode()
254 EMAC_WRITE_REG(sc, EMAC_RX_HASH1, hashes[1]); in emac_set_rx_mode()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DIssueHash.h1 //===---------- IssueHash.h - Generate identification hashes ----*- C++ -*-===//
25 /// We may introduce more variants of issue hashes in the future

12345678910>>...16