Searched refs:hash_value (Results 1 - 25 of 58) sorted by relevance

123

/freebsd-11-stable/contrib/xz/src/liblzma/lz/
H A Dlz_encoder_hash.h42 const uint32_t hash_value = read16ne(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 \
80 const uint32_t hash_value \
86 const uint32_t hash_value \
H A Dlz_encoder_mf.c312 const uint32_t cur_match = mf->hash[FIX_3_HASH_SIZE + hash_value];
315 mf->hash[FIX_3_HASH_SIZE + hash_value] = pos;
352 = mf->hash[FIX_3_HASH_SIZE + hash_value];
355 mf->hash[FIX_3_HASH_SIZE + hash_value] = pos;
375 const uint32_t cur_match = mf->hash[FIX_4_HASH_SIZE + hash_value];
379 mf->hash[FIX_4_HASH_SIZE + hash_value] = pos;
431 = mf->hash[FIX_4_HASH_SIZE + hash_value];
435 mf->hash[FIX_4_HASH_SIZE + hash_value] = pos;
593 const uint32_t cur_match = mf->hash[hash_value];
594 mf->hash[hash_value]
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DSanitizers.cpp46 llvm::hash_code SanitizerMask::hash_value() const { function in class:SanitizerMask
51 llvm::hash_code hash_value(const clang::SanitizerMask &Arg) { function in namespace:clang
52 return Arg.hash_value();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h26 friend hash_code hash_value(const Vector &);
99 /// Return a hash_value for the given vector.
100 inline hash_code hash_value(const Vector &V) {
123 friend hash_code hash_value(const Matrix &);
237 inline hash_code hash_value(const Matrix &M) {
267 inline hash_code hash_value(const MDVector<Metadata> &V) {
268 return hash_value(static_cast<const Vector&>(V));
284 inline hash_code hash_value(const MDMatrix<Metadata> &M) {
285 return hash_value(static_cast<const Matrix&>(M));
H A DCostAllocator.h58 return hash_value(C);
/freebsd-11-stable/sys/dev/ixgb/
H A Dixgb_hw.c49 uint32_t hash_value);
428 uint32_t hash_value; local
471 hash_value = ixgb_hash_mc_addr(hw,
475 DEBUGOUT1(" Hash value = 0x%03X\n", hash_value);
477 ixgb_mta_set(hw, hash_value);
498 uint32_t hash_value = 0; local
511 hash_value = ((mc_addr[4] >> 4) | (((uint16_t) mc_addr[5]) << 4));
514 hash_value = ((mc_addr[4] >> 3) | (((uint16_t) mc_addr[5]) << 5));
517 hash_value = ((mc_addr[4] >> 2) | (((uint16_t) mc_addr[5]) << 6));
520 hash_value
540 ixgb_mta_set(struct ixgb_hw *hw, uint32_t hash_value) argument
[all...]
/freebsd-11-stable/sys/dev/e1000/
H A De1000_vf.c359 u32 hash_value, hash_mask; local
374 hash_value = hash_mask & (((mc_addr[4] >> (8 - bit_shift)) |
377 return hash_value;
405 u32 hash_value; local
430 hash_value = e1000_hash_mc_addr_vf(hw, mc_addr_list);
431 DEBUGOUT1("Hash value = 0x%03X\n", hash_value);
432 hash_list[i] = hash_value & 0x0FFF;
H A De1000_mac.c518 u32 hash_value, hash_mask; local
552 * case 0: hash_value = ((0x34 >> 4) | (0x56 << 4)) & 0xFFF = 0x563
553 * case 1: hash_value = ((0x34 >> 3) | (0x56 << 5)) & 0xFFF = 0xAC6
554 * case 2: hash_value = ((0x34 >> 2) | (0x56 << 6)) & 0xFFF = 0x163
555 * case 3: hash_value = ((0x34 >> 0) | (0x56 << 8)) & 0xFFF = 0x634
572 hash_value = hash_mask & (((mc_addr[4] >> (8 - bit_shift)) |
575 return hash_value;
590 u32 hash_value, hash_bit, hash_reg; local
600 hash_value = e1000_hash_mc_addr_generic(hw, mc_addr_list);
602 hash_reg = (hash_value >>
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Ddag_cache.c222 apr_uint32_t hash_value;
315 apr_uint32_t hash_value = (apr_uint32_t)(apr_uint64_t)change_set;
340 two chunks from the input per hash_value self-multiplication.
345 hash_value = hash_value * factor * factor
355 hash_value = hash_value * 32 + (hash_value + (apr_byte_t)path->data[i]);
357 bucket_index = hash_value + (hash_value >> 1
220 apr_uint32_t hash_value; member in struct:cache_entry_t
313 apr_uint32_t hash_value = (apr_uint32_t)(apr_uint64_t)change_set; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearchOptions.h250 inline llvm::hash_code hash_value(const HeaderSearchOptions::Entry &E) { function in namespace:clang
255 hash_value(const HeaderSearchOptions::SystemHeaderPrefix &SHP) { function in namespace:clang
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DHashing.h26 // -- 'hash_value' is a function designed to be overloaded for each
34 // within the implementation of a 'hash_value' routine or similar context.
68 /// using llvm::hash_value;
69 /// llvm::hash_code code = hash_value(x);
92 /// Allow a hash_code to be directly run through hash_value.
93 friend size_t hash_value(const hash_code &code) { return code.value; } function in class:llvm::hash_code
105 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(cons
631 hash_value(T value) { function in namespace:llvm
638 template <typename T> hash_code hash_value(const T *ptr) { function in namespace:llvm
646 hash_code hash_value(const std::pair<T, U> &arg) { function in namespace:llvm
653 hash_code hash_value(const std::basic_string<T> &arg) { function in namespace:llvm
[all...]
H A DDenseMapInfo.h236 return (unsigned)(hash_value(Val));
264 return (unsigned)(hash_value(Val));
/freebsd-11-stable/contrib/gcclibs/libcpp/include/
H A Dsymtab.h31 unsigned int hash_value; local
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Dsymtab.c119 if (node->hash_value == hash
142 if (node->hash_value == hash
162 node->hash_value = hash;
195 hash = (*p)->hash_value;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasmTraits.h36 uintptr_t H = hash_value(Sig.State);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwp/
H A DDWPStringPool.h22 return (unsigned)hash_value(StringRef(Val));
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSanitizers.h78 llvm::hash_code hash_value() const;
125 llvm::hash_code hash_value(const clang::SanitizerMask &Arg);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DMappedHash.h213 const uint32_t hash_value = local
215 const uint32_t bucket_idx = hash_value % bucket_count;
220 if (curr_hash_value == hash_value) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeHashing.cpp29 return {llvm::hash_value(RecordData), RecordData};
H A DMergingTypeTableBuilder.cpp114 return insertRecordAs(hash_value(Record), Record);
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/
H A DLLVM.h99 return llvm::hash_value(s);
/freebsd-11-stable/contrib/gperf/src/
H A Doutput.cc1252 int hash_value; /* Hash value for this particular duplicate set. */ member in struct:duplicate_entry
1270 int hash_value = temp->first()->_hash_value; local
1271 lookup_array[hash_value] = temp->first()->_final_index;
1278 dup_ptr->hash_value = hash_value;
1301 "dup_ptr[%td]: hash_value = %d, index = %d, count = %d\n",
1303 dup_ptr->hash_value, dup_ptr->index, dup_ptr->count);
1308 for (i = dup_ptr->hash_value; i < lookup_array_size-1; i++)
1313 for (i = dup_ptr->hash_value-1; i >= 0; i--)
1323 assert (lookup_array[dup_ptr->hash_value]
[all...]
/freebsd-11-stable/contrib/diff/src/
H A Dio.c37 typedef size_t hash_value;
38 verify (hash_value_is_unsigned, ! TYPE_SIGNED (hash_value));
47 hash_value hash; /* Hash of lines in this class. */
223 hash_value h;
36 typedef size_t hash_value; typedef
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRVRegNamerUtils.cpp72 return llvm::hash_value(MO);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/
H A DInterfaceFile.h145 return hash_combine(hash_value(Key.Kind), hash_value(Key.Name));

Completed in 164 milliseconds

123