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

  /src/sys/external/bsd/acpica/dist/executer/
exoparg1.c 296 UINT64 Digit;
376 Digit = Operand[0]->Integer.Value;
378 /* Convert each BCD digit (each is one nybble wide) */
380 for (i = 0; (i < AcpiGbl_IntegerNybbleWidth) && (Digit > 0); i++)
382 /* Get the least significant 4-bit BCD digit */
384 Temp32 = ((UINT32) Digit) & 0xF;
386 /* Check the range of the digit */
391 "BCD digit too large (not decimal): 0x%X",
398 /* Sum the digit into the result with the current power of 10 */
403 /* Shift to next BCD digit */
    [all...]
exconvrt.c 324 UINT64 Digit;
369 Digit = Integer;
372 (void) AcpiUtShortDivide (Digit, 10, &Digit, &Remainder);
397 /* Get one hex digit, most significant digits first */
654 /* 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/external/apache2/llvm/dist/llvm/lib/Demangle/
RustDemangle.cpp 648 // digit or another underscore.
691 uint64_t Digit;
697 Digit = C - '0';
699 Digit = 10 + (C - 'a');
701 Digit = 10 + 26 + (C - 'A');
710 if (!addAssign(Value, Digit))
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceFileWriter.cpp 246 // there are some hex-digit Unicode character outside of ASCII, and
256 char Digit = tolower(Chars[Pos]);
260 if (isdigit(Digit))
261 ReadInt |= Digit - '0';
263 ReadInt |= Digit - 'a' + 10;
273 // Read an octal number. Note that we've already read the first digit.

Completed in 20 milliseconds