Lines Matching defs:Digit
404 UINT64 Digit;
484 Digit = Operand[0]->Integer.Value;
488 for (i = 0; (i < AcpiGbl_IntegerNybbleWidth) && (Digit > 0); i++)
492 Temp32 = ((UINT32) Digit) & 0xF;
513 Digit >>= 4;
536 Digit = Operand[0]->Integer.Value;
540 for (i = 0; (i < AcpiGbl_IntegerNybbleWidth) && (Digit > 0); i++)
542 (void) AcpiUtShortDivide (Digit, 10, &Digit, &Temp32);
552 /* Overflow if there is any data left in Digit */
554 if (Digit > 0)