Home
last modified time | relevance | path

Searched refs:hash_value (Results 1 – 25 of 121) sorted by relevance

12345

/netbsd-src/external/public-domain/xz/dist/src/liblzma/lz/
H A Dlz_encoder_mf.c312 const uint32_t cur_match = mf->hash[FIX_3_HASH_SIZE + hash_value]; in lzma_mf_hc3_find()
315 mf->hash[FIX_3_HASH_SIZE + hash_value] = pos; in lzma_mf_hc3_find()
352 = mf->hash[FIX_3_HASH_SIZE + hash_value]; in lzma_mf_hc3_skip()
355 mf->hash[FIX_3_HASH_SIZE + hash_value] = pos; in lzma_mf_hc3_skip()
375 const uint32_t cur_match = mf->hash[FIX_4_HASH_SIZE + hash_value]; in lzma_mf_hc4_find()
379 mf->hash[FIX_4_HASH_SIZE + hash_value] = pos; in lzma_mf_hc4_find()
431 = mf->hash[FIX_4_HASH_SIZE + hash_value]; in lzma_mf_hc4_skip()
435 mf->hash[FIX_4_HASH_SIZE + hash_value] = pos; in lzma_mf_hc4_skip()
593 const uint32_t cur_match = mf->hash[hash_value]; in lzma_mf_bt2_find()
594 mf->hash[hash_value] = pos; in lzma_mf_bt2_find()
[all …]
H A Dlz_encoder_hash.h42 const uint32_t hash_value = *(const uint16_t *)(cur)
45 const uint32_t hash_value \
52 const uint32_t hash_value \
60 const uint32_t hash_value = (temp ^ ((uint32_t)(cur[2]) << 8) \
73 const uint32_t hash_value \
86 const uint32_t hash_value \
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DIRSimilarityIdentifier.h175 friend hash_code hash_value(const IRInstructionData &ID) { in hash_value() function
182 llvm::hash_value(ID.Inst->getOpcode()), in hash_value()
183 llvm::hash_value(ID.Inst->getType()), in hash_value()
184 llvm::hash_value(ID.getPredicate()), in hash_value()
188 llvm::hash_value(ID.Inst->getOpcode()), in hash_value()
189 llvm::hash_value(ID.Inst->getType()), in hash_value()
190 llvm::hash_value(CI->getCalledFunction()->getName().str()), in hash_value()
193 llvm::hash_value(ID.Inst->getOpcode()), in hash_value()
194 llvm::hash_value(ID.Inst->getType()), in hash_value()
221 using llvm::hash_value; in getHashValue()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DHashing.h94 friend size_t hash_value(const hash_code &code) { return code.value; } in hash_value() function
105 std::enable_if_t<is_integral_or_enum<T>::value, hash_code> hash_value(T value);
110 template <typename T> hash_code hash_value(const T *ptr);
114 hash_code hash_value(const std::pair<T, U> &arg);
118 hash_code hash_value(const std::tuple<Ts...> &arg);
122 hash_code hash_value(const std::basic_string<T> &arg);
377 using ::llvm::hash_value;
378 return hash_value(value);
634 std::enable_if_t<is_integral_or_enum<T>::value, hash_code> hash_value(T value) {
641 template <typename T> hash_code hash_value(const T *ptr) {
[all …]
H A DDenseMapInfo.h305 return (unsigned)(hash_value(Val));
333 return (unsigned)(hash_value(Val));
367 return static_cast<unsigned>(hash_value(Key));
386 return static_cast<unsigned>(hash_value(Key));
H A DAPFloat.h407 friend hash_code hash_value(const IEEEFloat &Arg);
593 hash_code hash_value(const IEEEFloat &Arg);
692 friend hash_code hash_value(const DoubleAPFloat &Arg);
695 hash_code hash_value(const DoubleAPFloat &Arg);
1251 friend hash_code hash_value(const APFloat &Arg);
1263 hash_code hash_value(const APFloat &Arg);
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h26 friend hash_code hash_value(const Vector &);
100 inline hash_code hash_value(const Vector &V) { in hash_value() function
123 friend hash_code hash_value(const Matrix &);
237 inline hash_code hash_value(const Matrix &M) { in hash_value() function
267 inline hash_code hash_value(const MDVector<Metadata> &V) { in hash_value() function
268 return hash_value(static_cast<const Vector&>(V)); in hash_value()
284 inline hash_code hash_value(const MDMatrix<Metadata> &M) { in hash_value() function
285 return hash_value(static_cast<const Matrix&>(M)); in hash_value()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCRegister.h23 friend hash_code hash_value(const MCRegister &);
109 inline hash_code hash_value(const MCRegister &Reg) {
110 return hash_value(Reg.id());
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DSanitizers.cpp55 llvm::hash_code SanitizerMask::hash_value() const { in hash_value() function in SanitizerMask
60 llvm::hash_code hash_value(const clang::SanitizerMask &Arg) { in hash_value() function
61 return Arg.hash_value(); in hash_value()
/netbsd-src/sys/dev/pci/igc/
H A Digc_mac.c208 uint32_t hash_value, hash_mask; in igc_hash_mc_addr_generic() local
262 hash_value = hash_mask & (((mc_addr[4] >> (8 - bit_shift)) | in igc_hash_mc_addr_generic()
265 return hash_value; in igc_hash_mc_addr_generic()
281 uint32_t hash_value, hash_bit, hash_reg; in igc_update_mc_addr_list_generic() local
291 hash_value = igc_hash_mc_addr_generic(hw, mc_addr_list); in igc_update_mc_addr_list_generic()
293 hash_reg = (hash_value >> 5) & (hw->mac.mta_reg_count - 1); in igc_update_mc_addr_list_generic()
294 hash_bit = hash_value & 0x1F; in igc_update_mc_addr_list_generic()
/netbsd-src/external/gpl3/gcc/dist/libcpp/
H A Dsymtab.cc119 else if (node->hash_value == hash in ht_lookup_with_hash()
141 else if (node->hash_value == hash in ht_lookup_with_hash()
159 node->hash_value = hash; in ht_lookup_with_hash()
198 hash = (*p)->hash_value; in ht_expand()
/netbsd-src/external/gpl3/gcc.old/dist/libcpp/
H A Dsymtab.c119 else if (node->hash_value == hash in ht_lookup_with_hash()
141 else if (node->hash_value == hash in ht_lookup_with_hash()
159 node->hash_value = hash; in ht_lookup_with_hash()
198 hash = (*p)->hash_value; in ht_expand()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DDirectoryEntry.h53 friend llvm::hash_code hash_value(DirectoryEntryRef Ref) { in hash_value() function
54 return llvm::hash_value(&Ref.getDirEntry()); in hash_value()
205 return hash_value(Val);
H A DFileEntry.h99 friend llvm::hash_code hash_value(FileEntryRef Ref) { in hash_value() function
100 return llvm::hash_value(&Ref.getFileEntry()); in hash_value()
238 return hash_value(Val);
H A DSanitizers.h79 llvm::hash_code hash_value() const;
126 llvm::hash_code hash_value(const clang::SanitizerMask &Arg);
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DHeaderSearchOptions.h255 inline llvm::hash_code hash_value(const HeaderSearchOptions::Entry &E) { in hash_value() function
260 hash_value(const HeaderSearchOptions::SystemHeaderPrefix &SHP) { in hash_value() function
/netbsd-src/sys/sys/
H A Dsystm.h205 hash_value(&dst, sizeof(dst), &src, sizeof(src)); \
214 hash_value(&__v, sizeof(__v), &src, sizeof(src)); \
224 hash_value(&dst, sizeof(dst), &src, sizeof(src)); \
233 hash_value(&dst, sizeof(dst), &__v, sizeof(__v)); \
237 void hash_value(void *, size_t, const void *, size_t);
/netbsd-src/external/bsd/pkg_install/dist/lib/
H A Dvulnerabilities-file.c227 const char *last_start, *next, *hash_value; in verify_hash() local
280 hash_value = (*hash->finish)(ctx); in verify_hash()
281 if (strncmp(hash_line, hash_value, strlen(hash_value))) in verify_hash()
283 hash_line += strlen(hash_value); in verify_hash()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DMergingTypeTableBuilder.cpp114 return insertRecordAs(hash_value(Record), Record); in insertRecordBytes()
138 LocallyHashedType WeakHash{hash_value(Record), Record}; in replaceType()
/netbsd-src/external/gpl2/diffutils/dist/src/
H A Dio.c38 typedef size_t hash_value; typedef
39 verify (hash_value_is_unsigned, ! TYPE_SIGNED (hash_value));
48 hash_value hash; /* Hash of lines in this class. */
221 hash_value h; in find_and_hash_each_line()
/netbsd-src/external/gpl3/gcc.old/dist/libcpp/include/
H A Dsymtab.h34 unsigned int hash_value; member
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwp/
H A DDWPStringPool.h22 return (unsigned)hash_value(StringRef(Val)); in getHashValue()
/netbsd-src/external/gpl3/gcc/dist/libcpp/include/
H A Dsymtab.h34 unsigned int hash_value; member
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtDataCollectors.td82 addData(llvm::hash_value(S->getValue()));
87 addData(llvm::hash_value(S->getValue()));
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DWasmTraits.h36 uintptr_t H = hash_value(Sig.State);

12345