Home
last modified time | relevance | path

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

/third_party/lib/acpica/source/components/utilities/
A Dutnonansi.c192 UINT32 ThisDigit = 0; in AcpiUtStrtoul64() local
280 ThisDigit = ((UINT8) *String) - '0'; in AcpiUtStrtoul64()
290 ThisDigit = (UINT8) toupper ((int) *String); in AcpiUtStrtoul64()
291 if (isxdigit ((int) ThisDigit)) in AcpiUtStrtoul64()
295 ThisDigit = ThisDigit - 'A' + 10; in AcpiUtStrtoul64()
314 else if ((ValidDigits == 0) && (ThisDigit == 0) && !SignOf0x) in AcpiUtStrtoul64()
336 (Dividend - (UINT64) ThisDigit), Base, &Quotient, NULL); in AcpiUtStrtoul64()
351 ReturnValue += ThisDigit; in AcpiUtStrtoul64()
/third_party/lib/acpica/source/compiler/
A Ddtutils.c221 UINT32 ThisDigit; in DtStrtoul64() local
248 ThisDigit = ((UINT8) *ThisChar) - '0'; in DtStrtoul64()
252 ThisDigit = (UINT32) toupper ((int) *ThisChar); in DtStrtoul64()
253 if (!isxdigit ((int) ThisDigit)) in DtStrtoul64()
262 ThisDigit = (ThisDigit - 'A') + 10; in DtStrtoul64()
268 ReturnValue += ThisDigit; in DtStrtoul64()

Completed in 4 milliseconds