Digit
UINT64 Digit;
Digit = Integer;
(void) AcpiUtShortDivide (Digit, 10, &Digit, &Remainder);
UINT64 Digit;
Digit = Operand[0]->Integer.Value;
for (i = 0; (i < AcpiGbl_IntegerNybbleWidth) && (Digit > 0); i++)
Temp32 = ((UINT32) Digit) & 0xF;
Digit >>= 4;
Digit = Operand[0]->Integer.Value;
for (i = 0; (i < AcpiGbl_IntegerNybbleWidth) && (Digit > 0); i++)
(void) AcpiUtShortDivide (Digit, 10, &Digit, &Temp32);
if (Digit > 0)
UINT32 Digit,
UINT32 Digit,
if ((Addend1 > 0) && (Digit > (ACPI_UINT64_MAX - Addend1)))
Sum = Addend1 + Digit;
['0' + 1 ... '9' + 1] = Digit | Hex,
if (!(class & (Dot | Digit | Letter)))
if (!(cclass[next + 1] & (Letter | Digit)))
if (class & Digit)