Home
last modified time | relevance | path

Searched refs:hash_ (Results 1 - 14 of 14) sorted by relevance

/third_party/gn/src/gn/
H A Dlabel.h73 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 Dbignum.py29 hash_ = coeff * exp_hash % _PyHASH_MODULUS
30 ans = hash_ if sign == 1 else -hash_
/third_party/node/deps/v8/src/builtins/
H A Dprofile-data-reader.h19 int hash() const { return hash_; } in hash()
36 int hash_ = 0; member in v8::internal::ProfileDataFromFile
H A Dprofile-data-reader.cc25 hash_ = hash; in set_hash()
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/
H A Delf_mem_image.cc89 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 Delf_mem_image.h121 const ElfW(Word) *hash_; member in absl::debugging_internal::ElfMemImage
/third_party/node/deps/v8/src/diagnostics/
H A Dbasic-block-profiler.cc40 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 Dbasic-block-profiler.h69 int hash_ = 0; member in v8::internal::BasicBlockProfilerData
/third_party/node/deps/v8/src/compiler/
H A Doperator.h178 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 Dhash-table.h294 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 Dfractions.py657 hash_ = _PyHASH_INF
674 hash_ = hash(hash(abs(self._numerator)) * dinv)
675 result = hash_ if self._numerator >= 0 else -hash_
H A D_pydecimal.py975 hash_ = int(self._int) * exp_hash % _PyHASH_MODULUS
976 ans = hash_ if self >= 0 else -hash_
/third_party/skia/modules/skparagraph/src/
H A DParagraphImpl.h320 return hash_; in hash()
441 uint32_t hash_{0u};
/third_party/python/Lib/test/
H A Dtest_dataclasses.py563 for (hash_, compare, result ) in [
571 with self.subTest(hash=hash_, compare=compare):
574 x: int = field(compare=compare, hash=hash_, default=5)

Completed in 19 milliseconds