Lines Matching refs:digit
236 u64 digit;
310 digit = operand[0]->integer.value;
312 /* Convert each BCD digit (each is one nybble wide) */
315 (i < acpi_gbl_integer_nybble_width) && (digit > 0);
318 /* Get the least significant 4-bit BCD digit */
320 temp32 = ((u32) digit) & 0xF;
322 /* Check the range of the digit */
326 "BCD digit too large (not decimal): 0x%X",
333 /* Sum the digit into the result with the current power of 10 */
338 /* Shift to next BCD digit */
340 digit >>= 4;
365 digit = operand[0]->integer.value;
367 /* Each BCD digit is one nybble wide */
370 (i < acpi_gbl_integer_nybble_width) && (digit > 0);
372 (void)acpi_ut_short_divide(digit, 10, &digit,
376 * Insert the BCD digit that resides in the
385 if (digit > 0) {