Home
last modified time | relevance | path

Searched refs:Digit (Results 1 – 4 of 4) sorted by relevance

/f-stack/freebsd/contrib/dev/acpica/compiler/
H A Daslsupport.l780 UINT8 Digit; in AslDoStringLiteral() local
909 Digit = (UINT8) strtoul (ConvertBuffer, NULL, 8); in AslDoStringLiteral()
913 if ((Digit == 0) || (Digit > ACPI_ASCII_MAX)) in AslDoStringLiteral()
922 *StringBuffer = (char) Digit; in AslDoStringLiteral()
953 Digit = (UINT8) strtoul (ConvertBuffer, NULL, 16); in AslDoStringLiteral()
957 if ((Digit == 0) || (Digit > ACPI_ASCII_MAX)) in AslDoStringLiteral()
966 *StringBuffer = (char) Digit; in AslDoStringLiteral()
/f-stack/freebsd/contrib/dev/acpica/components/executer/
H A Dexoparg1.c399 UINT64 Digit; in AcpiExOpcode_1A_1T_1R() local
478 Digit = Operand[0]->Integer.Value; in AcpiExOpcode_1A_1T_1R()
482 for (i = 0; (i < AcpiGbl_IntegerNybbleWidth) && (Digit > 0); i++) in AcpiExOpcode_1A_1T_1R()
486 Temp32 = ((UINT32) Digit) & 0xF; in AcpiExOpcode_1A_1T_1R()
507 Digit >>= 4; in AcpiExOpcode_1A_1T_1R()
518 Digit = Operand[0]->Integer.Value; in AcpiExOpcode_1A_1T_1R()
522 for (i = 0; (i < AcpiGbl_IntegerNybbleWidth) && (Digit > 0); i++) in AcpiExOpcode_1A_1T_1R()
524 (void) AcpiUtShortDivide (Digit, 10, &Digit, &Temp32); in AcpiExOpcode_1A_1T_1R()
536 if (Digit > 0) in AcpiExOpcode_1A_1T_1R()
H A Dexconvrt.c429 UINT64 Digit; in AcpiExConvertToAscii() local
474 Digit = Integer; in AcpiExConvertToAscii()
477 (void) AcpiUtShortDivide (Digit, 10, &Digit, &Remainder); in AcpiExConvertToAscii()
/f-stack/freebsd/contrib/dev/acpica/components/utilities/
H A Dutstrsuppt.c176 UINT32 Digit,
639 UINT32 Digit, in AcpiUtStrtoulAdd64() argument
647 if ((Addend1 > 0) && (Digit > (ACPI_UINT64_MAX - Addend1))) in AcpiUtStrtoulAdd64()
652 Sum = Addend1 + Digit; in AcpiUtStrtoulAdd64()