Home
last modified time | relevance | path

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

/external/v8/src/
Dconversions.cc1258 int integer_cursor = kBufferSize / 2; in DoubleToRadixCString() local
1259 int fraction_cursor = integer_cursor; in DoubleToRadixCString()
1312 buffer[--integer_cursor] = '0'; in DoubleToRadixCString()
1316 buffer[--integer_cursor] = chars[static_cast<int>(remainder)]; in DoubleToRadixCString()
1321 if (negative) buffer[--integer_cursor] = '-'; in DoubleToRadixCString()
1324 DCHECK_LE(0, integer_cursor); in DoubleToRadixCString()
1326 char* result = NewArray<char>(fraction_cursor - integer_cursor); in DoubleToRadixCString()
1327 memcpy(result, buffer + integer_cursor, fraction_cursor - integer_cursor); in DoubleToRadixCString()