Lines Matching full:double
42 // Support cases, such as: int + double, int + int, double + double in AddWithTSType()
44 double a0Double = left.IsInt() ? left.GetInt() : left.GetDouble(); in AddWithTSType()
45 double a1Double = right.IsInt() ? right.GetInt() : right.GetDouble(); in AddWithTSType()
46 double ret = a0Double + a1Double; in AddWithTSType()
62 double a0Double = taggedValueA0.GetNumber(); in AddWithTSType()
63 double a1Double = taggedValueA1.GetNumber(); in AddWithTSType()
108 double a0Double = left.IsInt() ? left.GetInt() : left.GetDouble(); in SubWithTSType()
109 double a1Double = right.IsInt() ? right.GetInt() : right.GetDouble(); in SubWithTSType()
110 double ret = a0Double - a1Double; in SubWithTSType()
174 double dLeft = left.IsInt() ? left.GetInt() : left.GetDouble(); in DivWithTSType()
175 double dRight = right.IsInt() ? right.GetInt() : right.GetDouble(); in DivWithTSType()
182 … return JSTaggedValue(bit_cast<double>(flagBit ^ (bit_cast<uint64_t>(base::POSITIVE_INFINITY)))); in DivWithTSType()
208 double dLeft = left.IsInt() ? left.GetInt() : left.GetDouble(); in ModWithTSType()
209 double dRight = right.IsInt() ? right.GetInt() : right.GetDouble(); in ModWithTSType()
224 double dLeft = leftNumber.GetNumber(); in ModWithTSType()
227 double dRight = rightNumber.GetNumber(); in ModWithTSType()