Lines Matching refs:width
148 /* compute width of decimal equivalent */
177 /* compute width of number string */
265 int width;
275 width = widthin;
277 width = 0;
279 (void) snprintf(string, SCALED_STRLEN, "%%%dllu", width);
318 /* reduce decimal places if we've overshot the desired width */
326 width = widthin;
328 width = 0;
330 (void) snprintf(string, SCALED_STRLEN, "%%%d.%dlf", width, decimals);
375 int width;
388 /* determine each number's width and modifier */
400 * determine the width and modifier to use for comparison.
401 * Use widest width and smallest modifier.
402 * Rescale to new width and modifier
420 width = 0;
421 if (width1 > width)
422 width = width1;
423 if (width2 > width)
424 width = width2;
427 * Convert first number to width and modifier.
437 ret = scaledtoscaled(scaled1, width, modifier,
442 /* convert second number to width and modifier matching first number */
443 ret = scaledtoscaled(scaled2, width, modifier,
461 int width;
466 /* determine for number's width and modifier */
467 ret = scaledtouint64(scaled, &tmpuint64, &width, &modifier, NULL,
472 if (width < minwidth)
473 width = minwidth;
476 * Convert first number to width and modifier.
486 ret = scaledtoscaled(scaled, width, modifier,
491 /* convert second number to width and modifier matching first number */
492 ret = uint64toscaled(uint64, width, modifier,