Lines Matching refs:digit
21 static acpi_status acpi_ut_strtoul_add64(u64 addend1, u32 digit, u64 *out_sum);
60 /* Convert and insert this octal digit into the accumulator */
114 /* Convert and insert this decimal digit into the accumulator */
168 /* Convert and insert this hex digit into the accumulator */
311 * ascii_digit - ASCII single digit to be inserted
336 /* Make room in the accumulated value for the incoming digit */
343 /* Add in the new digit, and store the sum to the accumulated value */
412 * digit - New hex value/char
423 static acpi_status acpi_ut_strtoul_add64(u64 addend1, u32 digit, u64 *out_sum)
429 if ((addend1 > 0) && (digit > (ACPI_UINT64_MAX - addend1))) {
433 sum = addend1 + digit;