Lines Matching defs:Digit
404 UINT64 Digit;
484 Digit = Operand[0]->Integer.Value;
486 /* Convert each BCD digit (each is one nybble wide) */
488 for (i = 0; (i < AcpiGbl_IntegerNybbleWidth) && (Digit > 0); i++)
490 /* Get the least significant 4-bit BCD digit */
492 Temp32 = ((UINT32) Digit) & 0xF;
494 /* Check the range of the digit */
499 "BCD digit too large (not decimal): 0x%X",
506 /* Sum the digit into the result with the current power of 10 */
511 /* Shift to next BCD digit */
513 Digit >>= 4;
536 Digit = Operand[0]->Integer.Value;
538 /* Each BCD digit is one nybble wide */
540 for (i = 0; (i < AcpiGbl_IntegerNybbleWidth) && (Digit > 0); i++)
542 (void) AcpiUtShortDivide (Digit, 10, &Digit, &Temp32);
545 * Insert the BCD digit that resides in the
552 /* Overflow if there is any data left in Digit */
554 if (Digit > 0)