Searched refs:ThisDigit (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.2-release/sys/contrib/dev/acpica/components/utilities/
H A Dutstring.c202 UINT32 ThisDigit = 0; local
290 ThisDigit = ((UINT8) *String) - '0';
300 ThisDigit = (UINT8) ACPI_TOUPPER (*String);
301 if (ACPI_IS_XDIGIT ((char) ThisDigit))
305 ThisDigit = ThisDigit - 'A' + 10;
324 else if ((ValidDigits == 0) && (ThisDigit == 0) && !SignOf0x)
345 (void) AcpiUtShortDivide ((Dividend - (UINT64) ThisDigit),
361 ReturnValue += ThisDigit;
/freebsd-10.2-release/sys/contrib/dev/acpica/compiler/
H A Ddtutils.c221 UINT32 ThisDigit; local
248 ThisDigit = ((UINT8) *ThisChar) - '0';
252 ThisDigit = (UINT32) ACPI_TOUPPER (*ThisChar);
253 if (!ACPI_IS_XDIGIT ((char) ThisDigit))
262 ThisDigit = (ThisDigit - 'A') + 10;
268 ReturnValue += ThisDigit;

Completed in 98 milliseconds