Lines Matching defs:point
201 void DtoaHelper::Dtoa(double value, char *buffer, int *point, int *length)
208 *point = *length + k;
303 // 'fractionals' is a fixed-point number, with binary point at bit
305 // is a fixed-point number, with binary point at bit 'point'.
309 int point = -exponent;
313 point--;
314 int digit = static_cast<int>(fractionals >> point);
317 fractionals -= static_cast<uint64_t>(digit) << point;
319 // If the first bit after the point is set we have to round up.
320 if (point > 0 && ((fractionals >> (point - 1)) & 1) == 1) {
327 int point = 128;
331 // point location.
334 point--;
335 int digit = fractionals128.DivModPowerOf2(point);
339 if (fractionals128.BitAt(point - 1) == 1) {
346 // If leading zeros are removed then the decimal point position is adjusted.