Home
last modified time | relevance | path

Searched refs:HexChar (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/contrib/dev/acpica/components/utilities/
H A Duthex.c244 int HexChar) in AcpiUtAsciiCharToHex() argument
249 if (HexChar <= '9') in AcpiUtAsciiCharToHex()
251 return ((UINT8) (HexChar - '0')); in AcpiUtAsciiCharToHex()
256 if (HexChar <= 'F') in AcpiUtAsciiCharToHex()
258 return ((UINT8) (HexChar - 0x37)); in AcpiUtAsciiCharToHex()
263 return ((UINT8) (HexChar - 0x57)); in AcpiUtAsciiCharToHex()
/freebsd/sys/contrib/dev/acpica/components/debugger/
H A Ddbconvert.c179 int HexChar, in AcpiDbHexCharToValue() argument
187 if (!isxdigit (HexChar)) in AcpiDbHexCharToValue()
192 if (HexChar <= 0x39) in AcpiDbHexCharToValue()
194 Value = (UINT8) (HexChar - 0x30); in AcpiDbHexCharToValue()
198 Value = (UINT8) (toupper (HexChar) - 0x37); in AcpiDbHexCharToValue()
/freebsd/sys/contrib/dev/acpica/components/executer/
H A Dexconvrt.c440 UINT8 HexChar; in AcpiExConvertToAscii() local
507 HexChar = (UINT8) in AcpiExConvertToAscii()
512 if (HexChar == ACPI_ASCII_ZERO && SupressZeros) in AcpiExConvertToAscii()
518 String[k] = HexChar; in AcpiExConvertToAscii()
/freebsd/sys/contrib/dev/acpica/include/
H A Dacdebug.h295 int HexChar,
H A Dacutils.h483 int HexChar);