Lines Matching refs:digit
230 u64 digit;
303 digit = operand[0]->integer.value;
305 /* Convert each BCD digit (each is one nybble wide) */
308 (i < acpi_gbl_integer_nybble_width) && (digit > 0);
311 /* Get the least significant 4-bit BCD digit */
313 temp32 = ((u32) digit) & 0xF;
315 /* Check the range of the digit */
319 "BCD digit too large (not decimal): 0x%X",
326 /* Sum the digit into the result with the current power of 10 */
331 /* Shift to next BCD digit */
333 digit >>= 4;
344 digit = operand[0]->integer.value;
346 /* Each BCD digit is one nybble wide */
349 (i < acpi_gbl_integer_nybble_width) && (digit > 0);
351 (void)acpi_ut_short_divide(digit, 10, &digit,
355 * Insert the BCD digit that resides in the
364 if (digit > 0) {