• Home
  • Raw
  • Download

Lines Matching refs:negative

66   bool negative = x < 0;  in FastD2UI()  local
67 if (negative) { in FastD2UI()
76 return negative ? ~result + 1 : result; in FastD2UI()
138 bool negative, in InternalStringToIntDouble() argument
145 if (current == end) return SignedZero(negative); in InternalStringToIntDouble()
223 if (negative) { in InternalStringToIntDouble()
233 return static_cast<double>(negative ? -number : number) * pow(2.0, exponent); in InternalStringToIntDouble()
249 bool negative = false; in InternalStringToInt() local
263 negative = true; in InternalStringToInt()
270 if (current == end) return SignedZero(negative); in InternalStringToInt()
286 if (current == end) return SignedZero(negative); in InternalStringToInt()
302 if (current == end) return SignedZero(negative); in InternalStringToInt()
313 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
316 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
319 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
323 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
327 unicode_cache, current, end, negative, allow_trailing_junk); in InternalStringToInt()
360 return negative ? -Strtod(buffer_vector, 0) : Strtod(buffer_vector, 0); in InternalStringToInt()
423 return negative ? -v : v; in InternalStringToInt()
464 bool negative = false; in InternalStringToDouble() local
473 negative = true; in InternalStringToDouble()
488 return negative ? -V8_INFINITY : V8_INFINITY; in InternalStringToDouble()
494 if (current == end) return SignedZero(negative); in InternalStringToDouble()
508 negative, in InternalStringToDouble()
515 if (current == end) return SignedZero(negative); in InternalStringToDouble()
560 if (current == end) return SignedZero(negative); in InternalStringToDouble()
652 negative, in InternalStringToDouble()
665 return negative ? -converted : converted; in InternalStringToDouble()