HomeSort by relevance Sort by last modified time
    Searched refs:Hashcode (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/v8/src/compiler/
operator.h 68 // Compute a hashcode to speed up equivalence-set checking.
71 virtual int HashCode() const = 0;
117 virtual int HashCode() const FINAL { return opcode(); }
139 static int HashCode(T a) { return 0; }
151 static int HashCode(int a) { return a; }
161 static int HashCode(double a) {
175 static int HashCode(Unique<Object> a) {
176 return static_cast<int>(a.Hashcode());
187 static int HashCode(Unique<Name> a) { return static_cast<int>(a.Hashcode()); }
    [all...]
  /external/chromium_org/v8/test/cctest/
test-unique.cc 70 int64_t hasha = static_cast<int64_t>(a.Hashcode());
71 int64_t hashb = static_cast<int64_t>(b.Hashcode());
80 int64_t hasha = static_cast<int64_t>(a.Hashcode());
81 int64_t hashb = static_cast<int64_t>(b.Hashcode());
  /external/chromium_org/v8/src/
hydrogen-bce.cc 26 return static_cast<uint32_t>(index_base_->Hashcode() ^ length_->Hashcode());
unique.h 26 // the address of the object, which is used as the hashcode and the basis for
84 inline intptr_t Hashcode() const {
hydrogen-gvn.cc 200 uint32_t hash = static_cast<uint32_t>(instr->Hashcode());
288 uint32_t pos = Bound(static_cast<uint32_t>(instr->Hashcode()));
hydrogen-check-elimination.cc 748 PrintF("%" V8PRIxPTR, list->at(j).Hashcode());
hydrogen-instructions.h 767 virtual intptr_t Hashcode();
    [all...]
hydrogen-instructions.cc 425 DCHECK(!result || Hashcode() == other->Hashcode());
430 intptr_t HValue::Hashcode() {
    [all...]

Completed in 283 milliseconds