• Home
  • Raw
  • Download

Lines Matching refs:negative

54 inline double SignedZero(bool negative) {  in SignedZero()  argument
55 return negative ? uint64_to_double(Double::kSignMask) : 0.0; in SignedZero()
71 bool negative = x < 0; in FastD2UI() local
72 if (negative) { in FastD2UI()
81 return negative ? ~result + 1 : result; in FastD2UI()
143 bool negative, in InternalStringToIntDouble() argument
150 if (current == end) return SignedZero(negative); in InternalStringToIntDouble()
228 if (negative) { in InternalStringToIntDouble()
236 return ldexp(static_cast<double>(negative ? -number : number), exponent); in InternalStringToIntDouble()
252 bool negative = false; in InternalStringToInt() local
266 negative = true; in InternalStringToInt()
274 if (current == end) return SignedZero(negative); in InternalStringToInt()
287 if (current == end) return SignedZero(negative); in InternalStringToInt()
303 if (current == end) return SignedZero(negative); in InternalStringToInt()
314 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
317 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
320 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
324 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
328 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
361 return negative ? -Strtod(buffer_vector, 0) : Strtod(buffer_vector, 0); in InternalStringToInt()
424 return negative ? -v : v; in InternalStringToInt()