Lines Matching defs:base
16 acpi_ut_insert_digit(u64 *accumulated_value, u32 base, int ascii_digit);
19 acpi_ut_strtoul_multiply64(u64 multiplicand, u32 base, u64 *out_product);
32 * DESCRIPTION: Performs a base 8 conversion of the input string to an
86 * DESCRIPTION: Performs a base 10 conversion of the input string to an
140 * DESCRIPTION: Performs a base 16 conversion of the input string to an
310 * base - Radix, either 8/10/16
320 * base in order to make room for the new character.
331 acpi_ut_insert_digit(u64 *accumulated_value, u32 base, int ascii_digit)
338 status = acpi_ut_strtoul_multiply64(*accumulated_value, base, &product);
358 * base - Base/Radix
370 acpi_ut_strtoul_multiply64(u64 multiplicand, u32 base, u64 *out_product)
378 if (!multiplicand || !base) {
390 acpi_ut_short_divide(ACPI_UINT64_MAX, base, "ient, NULL);
395 product = multiplicand * base;