/third_party/gn/src/gn/ |
H A D | label.h | 73 return hash_ == other.hash_ && name_.SameAs(other.name_) && in operator ==() 101 size_t hash() const { return hash_; } in hash() 105 : dir_(dir), name_(name), hash_(ComputeHash()) {} in Label() 115 hash_(ComputeHash()) {} in Label() 131 size_t hash_; member in Label
|
/third_party/python/Modules/_decimal/tests/ |
H A D | bignum.py | 29 hash_ = coeff * exp_hash % _PyHASH_MODULUS 30 ans = hash_ if sign == 1 else -hash_
|
/third_party/node/deps/v8/src/builtins/ |
H A D | profile-data-reader.h | 19 int hash() const { return hash_; } in hash() 36 int hash_ = 0; member in v8::internal::ProfileDataFromFile
|
H A D | profile-data-reader.cc | 25 hash_ = hash; in set_hash()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/ |
H A D | elf_mem_image.cc | 89 if (!hash_) { in GetNumSymbols() 93 return hash_[1]; in GetNumSymbols() 158 hash_ = nullptr; 227 hash_ = reinterpret_cast<ElfW(Word) *>(value); 252 if (!hash_ || !dynsym_ || !dynstr_ || !versym_ ||
|
H A D | elf_mem_image.h | 121 const ElfW(Word) *hash_; member in absl::debugging_internal::ElfMemImage
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | basic-block-profiler.cc | 40 void BasicBlockProfilerData::SetHash(int hash) { hash_ = hash; } 91 hash_ = js_heap_data.hash(); in CopyFromJSHeap() 121 block_ids, counts, name, schedule, code, hash_, AllocationType::kOld); in CopyToJSHeap() 194 isolate->logger()->BuiltinHashEvent(function_name_.c_str(), hash_); in Log()
|
H A D | basic-block-profiler.h | 69 int hash_ = 0; member in v8::internal::BasicBlockProfilerData
|
/third_party/node/deps/v8/src/compiler/ |
H A D | operator.h | 178 hash_(hash) {} in Operator1() 189 return base::hash_combine(this->opcode(), this->hash_(this->parameter())); 209 Hash const hash_; member in v8::internal::compiler::Operator1
|
/third_party/node/deps/v8/src/objects/ |
H A D | hash-table.h | 294 explicit HashTableKey(uint32_t hash) : hash_(hash) {} in HashTableKey() 302 uint32_t Hash() const { return hash_; } in Hash() 306 DCHECK_EQ(0, hash_); in set_hash() 307 hash_ = hash; in set_hash() 311 uint32_t hash_ = 0; member in v8::internal::HashTableKey
|
/third_party/python/Lib/ |
H A D | fractions.py | 657 hash_ = _PyHASH_INF 674 hash_ = hash(hash(abs(self._numerator)) * dinv) 675 result = hash_ if self._numerator >= 0 else -hash_
|
H A D | _pydecimal.py | 975 hash_ = int(self._int) * exp_hash % _PyHASH_MODULUS 976 ans = hash_ if self >= 0 else -hash_
|
/third_party/skia/modules/skparagraph/src/ |
H A D | ParagraphImpl.h | 320 return hash_; in hash() 441 uint32_t hash_{0u};
|
/third_party/python/Lib/test/ |
H A D | test_dataclasses.py | 563 for (hash_, compare, result ) in [ 571 with self.subTest(hash=hash_, compare=compare): 574 x: int = field(compare=compare, hash=hash_, default=5)
|