Lines Matching full: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 */ in acpi_ut_convert_octal_string()
114 /* Convert and insert this decimal digit into the accumulator */ in acpi_ut_convert_decimal_string()
168 /* Convert and insert this hex digit into the accumulator */ in acpi_ut_convert_hex_string()
311 * ascii_digit - ASCII single digit to be inserted
336 /* Make room in the accumulated value for the incoming digit */ in acpi_ut_insert_digit()
343 /* Add in the new digit, and store the sum to the accumulated value */ in acpi_ut_insert_digit()
412 * digit - New hex value/char
423 static acpi_status acpi_ut_strtoul_add64(u64 addend1, u32 digit, u64 *out_sum) in acpi_ut_strtoul_add64() argument
429 if ((addend1 > 0) && (digit > (ACPI_UINT64_MAX - addend1))) { in acpi_ut_strtoul_add64()
433 sum = addend1 + digit; in acpi_ut_strtoul_add64()