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

  /external/v8/src/objects/
ordered-hash-table.h 135 int HashToBucket(int hash) { return hash & (NumberOfBuckets() - 1); }
138 int bucket = HashToBucket(hash);
460 int HashToBucket(int hash) const { return hash & (NumberOfBuckets() - 1); }
463 int bucket = HashToBucket(hash);
ordered-hash-table.cc 107 int bucket = table->HashToBucket(hash);
253 int bucket = table->HashToBucket(hash);
386 int bucket = table->HashToBucket(hash);
419 int bucket = table->HashToBucket(hash);
483 int bucket = new_table->HashToBucket(hash);

Completed in 142 milliseconds