Home | History | Annotate | Download | only in src

Lines Matching refs:hash_value

2289   int hash_value;
2291 hash_value = i::Smi::cast(*hash)->value();
2297 hash_value = i::V8::Random() & i::Smi::kMaxValue;
2299 } while (hash_value == 0 && attempts < 30);
2300 hash_value = hash_value != 0 ? hash_value : 1; // never return 0
2303 i::Handle<i::Object>(i::Smi::FromInt(hash_value)),
2306 return hash_value;