Home | History | Annotate | Download | only in optimizing

Lines Matching defs:hash_code

87     size_t hash_code = HashCode(instruction);
88 size_t index = BucketIndex(hash_code);
93 buckets_[index] = new (allocator_) Node(instruction, hash_code, buckets_[index]);
100 size_t hash_code = HashCode(instruction);
101 size_t index = BucketIndex(hash_code);
104 if (node->GetHashCode() == hash_code) {
116 size_t hash_code = HashCode(instruction);
117 size_t index = BucketIndex(hash_code);
203 Node(HInstruction* instruction, size_t hash_code, Node* next)
204 : instruction_(instruction), hash_code_(hash_code), next_(next) {}
312 size_t hash_code = instruction->ComputeHashCode();
318 return (hash_code << 1) | 0;
320 return (hash_code << 1) | 1;
325 size_t BucketIndex(size_t hash_code) const {
326 return hash_code & (num_buckets_ - 1);