Lines Matching refs:hash
1120 uint32_t hash = ComputeUnseededHash(Smi::ToInt(object));
1121 return Smi::FromInt(hash & Smi::kMaxValue);
1129 uint32_t hash;
1132 hash = ComputeUnseededHash(FastD2I(num));
1134 hash = ComputeLongHash(base::double_to_uint64(num));
1136 return Smi::FromInt(hash & Smi::kMaxValue);
1138 uint32_t hash = Name::cast(object).EnsureHash();
1139 return Smi::FromInt(hash);
1141 uint32_t hash = Oddball::cast(object).to_string().EnsureHash();
1142 return Smi::FromInt(hash);
1144 uint32_t hash = BigInt::cast(object).Hash();
1145 return Smi::FromInt(hash & Smi::kMaxValue);
1147 uint32_t hash = SharedFunctionInfo::cast(object).Hash();
1148 return Smi::FromInt(hash & Smi::kMaxValue);
1156 Object hash = GetSimpleHash(*this);
1157 if (hash.IsSmi()) return hash;