Home | History | Annotate | Download | only in src

Lines Matching full:hash_value

4800   int hash_value;
4805 hash_value = isolate->random_number_generator()->NextInt() & Smi::kMaxValue;
4807 } while (hash_value == 0 && attempts < 30);
4808 hash_value = hash_value != 0 ? hash_value : 1; // never return 0
4810 return Smi::FromInt(hash_value);