product 47 Source/core/frame/NavigatorID.h static String product(const NavigatorBase&); product 409 Source/platform/CheckedInt.h TwiceBiggerType product = TwiceBiggerType(x) * TwiceBiggerType(y); product 410 Source/platform/CheckedInt.h return IsInRange<T>(product); product 354 Source/wtf/DateMath.cpp int product = (quotient) * 28; product 356 Source/wtf/DateMath.cpp year += product; product 357 Source/wtf/DateMath.cpp ASSERT((year >= minYear && year <= maxYear) || (product - year == static_cast<int>(std::numeric_limits<double>::quiet_NaN()))); product 97 Source/wtf/HashFunctions.h uint64_t product = longRandom * (shortRandom1 * key1 + shortRandom2 * key2); product 98 Source/wtf/HashFunctions.h unsigned highBits = static_cast<unsigned>(product >> (sizeof(uint64_t) - sizeof(unsigned))); product 264 Source/wtf/dtoa/bignum.cc DoubleChunk product = static_cast<DoubleChunk>(factor) * bigits_[i] + carry; product 265 Source/wtf/dtoa/bignum.cc bigits_[i] = static_cast<Chunk>(product & kBigitMask); product 266 Source/wtf/dtoa/bignum.cc carry = (product >> kBigitSize); product 750 Source/wtf/dtoa/bignum.cc DoubleChunk product = static_cast<DoubleChunk>(factor) * other.bigits_[i]; product 751 Source/wtf/dtoa/bignum.cc DoubleChunk remove = borrow + product;