Home | History | Annotate | Download | only in utilities

Lines Matching defs:Precision

188     INT32                   Precision,
388 * Precision - Precision of the integer
393 * DESCRIPTION: Print an integer into a string with any base and any precision.
404 INT32 Precision,
470 if (i > Precision)
472 Precision = i;
475 Width -= Precision;
507 while (i <= --Precision)
552 INT32 Precision;
631 /* Process precision */
633 Precision = -1;
640 Precision = (INT32) Number;
645 Precision = va_arg (Args, int);
648 if (Precision < 0)
650 Precision = 0;
702 Length = (INT32) AcpiUtBoundStringLength (s, Precision);
757 Pos, End, ACPI_TO_INTEGER (p), 16, Width, Precision, Type);
808 Width, Precision, Type);