/netbsd-src/external/public-domain/xz/dist/src/liblzma/lz/ |
H A D | lz_encoder_mf.c | 312 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 D | lz_encoder_hash.h | 42 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 D | IRSimilarityIdentifier.h | 175 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 D | Hashing.h | 94 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 D | DenseMapInfo.h | 305 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 D | APFloat.h | 407 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 D | Math.h | 26 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 D | MCRegister.h | 23 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 D | Sanitizers.cpp | 55 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 D | igc_mac.c | 208 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 D | symtab.cc | 119 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 D | symtab.c | 119 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 D | DirectoryEntry.h | 53 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 D | FileEntry.h | 99 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 D | Sanitizers.h | 79 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 D | HeaderSearchOptions.h | 255 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 D | systm.h | 205 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 D | vulnerabilities-file.c | 227 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 D | MergingTypeTableBuilder.cpp | 114 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 D | io.c | 38 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 D | symtab.h | 34 unsigned int hash_value; member
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwp/ |
H A D | DWPStringPool.h | 22 return (unsigned)hash_value(StringRef(Val)); in getHashValue()
|
/netbsd-src/external/gpl3/gcc/dist/libcpp/include/ |
H A D | symtab.h | 34 unsigned int hash_value; member
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | StmtDataCollectors.td | 82 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 D | WasmTraits.h | 36 uintptr_t H = hash_value(Sig.State);
|