Home | History | Annotate | Download | only in src

Lines Matching full:hash_value

3558   int hash_value;
3563 hash_value = V8::RandomPrivate(isolate) & Smi::kMaxValue;
3565 } while (hash_value == 0 && attempts < 30);
3566 hash_value = hash_value != 0 ? hash_value : 1; // never return 0
3568 return Smi::FromInt(hash_value);