Lines Matching refs:negative
33 inline double SignedZero(bool negative) { in SignedZero() argument
34 return negative ? uint64_to_double(Double::kSignMask) : 0.0; in SignedZero()
50 bool negative = x < 0; in FastD2UI() local
51 if (negative) { in FastD2UI()
64 return negative ? ~result + 1 : result; in FastD2UI()
201 bool negative, in InternalStringToIntDouble() argument
208 if (current == end) return SignedZero(negative); in InternalStringToIntDouble()
286 if (negative) { in InternalStringToIntDouble()
294 return std::ldexp(static_cast<double>(negative ? -number : number), exponent); in InternalStringToIntDouble()
310 bool negative = false; in InternalStringToInt() local
324 negative = true; in InternalStringToInt()
332 if (current == end) return SignedZero(negative); in InternalStringToInt()
345 if (current == end) return SignedZero(negative); in InternalStringToInt()
361 if (current == end) return SignedZero(negative); in InternalStringToInt()
372 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
375 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
378 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
382 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
386 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
419 return negative ? -Strtod(buffer_vector, 0) : Strtod(buffer_vector, 0); in InternalStringToInt()
482 return negative ? -v : v; in InternalStringToInt()