HomeSort by: relevance | last modified time | path
    Searched refs:Digit (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/utilities/
utstrsuppt.c 176 UINT32 Digit,
223 /* Convert and insert this octal digit into the accumulator */
285 /* Convert and insert this decimal digit into the accumulator */
347 /* Convert and insert this hex digit into the accumulator */
512 * AsciiDigit - ASCII single digit to be inserted
541 /* Make room in the accumulated value for the incoming digit */
549 /* Add in the new digit, and store the sum to the accumulated value */
625 * Digit - New hex value/char
639 UINT32 Digit,
647 if ((Addend1 > 0) && (Digit > (ACPI_UINT64_MAX - Addend1))
    [all...]
  /src/sys/external/bsd/acpica/dist/executer/
exoparg1.c 404 UINT64 Digit;
484 Digit = Operand[0]->Integer.Value;
486 /* Convert each BCD digit (each is one nybble wide) */
488 for (i = 0; (i < AcpiGbl_IntegerNybbleWidth) && (Digit > 0); i++)
490 /* Get the least significant 4-bit BCD digit */
492 Temp32 = ((UINT32) Digit) & 0xF;
494 /* Check the range of the digit */
499 "BCD digit too large (not decimal): 0x%X",
506 /* Sum the digit into the result with the current power of 10 */
511 /* Shift to next BCD digit */
    [all...]
exconvrt.c 432 UINT64 Digit;
477 Digit = Integer;
480 (void) AcpiUtShortDivide (Digit, 10, &Digit, &Remainder);
505 /* Get one hex digit, most significant digits first */
762 /* Each digit is separated by either a comma or space */
  /src/sys/arch/emips/stand/common/
start.S 396 bnez t1,$Digit
400 $Digit:
  /src/sys/external/bsd/acpica/dist/compiler/
aslsupport.l 780 UINT8 Digit;
876 /* Check for an octal digit (0-7) */
909 Digit = (UINT8) strtoul (ConvertBuffer, NULL, 8);
913 if ((Digit == 0) || (Digit > ACPI_ASCII_MAX))
922 *StringBuffer = (char) Digit;
935 /* Append another digit of the constant */
953 Digit = (UINT8) strtoul (ConvertBuffer, NULL, 16);
957 if ((Digit == 0) || (Digit > ACPI_ASCII_MAX)
    [all...]

Completed in 14 milliseconds