Home
last modified time | relevance | path

Searched refs:integer_cursor (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/
Dconversions.cc430 int integer_cursor = kBufferSize / 2; in DoubleToRadixCString() local
431 int fraction_cursor = integer_cursor; in DoubleToRadixCString()
484 buffer[--integer_cursor] = '0'; in DoubleToRadixCString()
488 buffer[--integer_cursor] = chars[static_cast<int>(remainder)]; in DoubleToRadixCString()
493 if (negative) buffer[--integer_cursor] = '-'; in DoubleToRadixCString()
496 DCHECK_LE(0, integer_cursor); in DoubleToRadixCString()
498 char* result = NewArray<char>(fraction_cursor - integer_cursor); in DoubleToRadixCString()
499 memcpy(result, buffer + integer_cursor, fraction_cursor - integer_cursor); in DoubleToRadixCString()