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

  /src/sys/external/bsd/acpica/dist/utilities/
utstrsuppt.c 68 UINT32 Digit,
115 /* Convert and insert this octal digit into the accumulator */
177 /* Convert and insert this decimal digit into the accumulator */
239 /* Convert and insert this hex digit into the accumulator */
404 * AsciiDigit - ASCII single digit to be inserted
433 /* Make room in the accumulated value for the incoming digit */
441 /* Add in the new digit, and store the sum to the accumulated value */
517 * Digit - New hex value/char
531 UINT32 Digit,
539 if ((Addend1 > 0) && (Digit > (ACPI_UINT64_MAX - Addend1))
    [all...]
  /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/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))
MicrosoftDemangle.cpp 164 // Note that the reason the first digit cannot be A is two fold. First, it
167 // digit number with a leading 0. Presumably the anonymous namespace
168 // ambiguity is also why single digit encoded numbers use 0-9 rather than A-J.
889 // <non-negative integer> ::= <decimal digit> # when 1 <= Number <= 10
890 // ::= <hex digit>+ @ # when Number == 0 or >= 10
892 // <hex-digit> ::= [A-P] # A = 0, B = 1, ...
1105 static void writeHexDigit(char *Buffer, uint8_t Digit) {
1106 assert(Digit <= 15);
1107 *Buffer = (Digit < 10) ? ('0' + Digit) : ('A' + Digit - 10)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
ScaledNumber.cpp 42 // Check whether the upper digit is empty.
149 static bool doesRoundUp(char Digit) {
150 switch (Digit) {
296 // Round with the first truncated digit.
APInt.cpp 49 /// A utility function that converts a character to a digit.
1376 DEBUG_KNUTH(dbgs() << "KnuthDiv: quotient digit #" << j << '\n');
1442 DEBUG_KNUTH(dbgs() << "\nKnuthDiv: digit result = " << q[j] << '\n');
2146 // Enter digit traversal loop
2148 unsigned digit = getDigit(*p, radix);
2149 assert(digit < radix && "Invalid character in digit string");
2159 // Add in the digit we just interpreted
2160 *this += digit;
2255 // because the number of bits per digit (1, 3 and 4 respectively) divide
    [all...]
  /src/sys/arch/emips/stand/common/
start.S 396 bnez t1,$Digit
400 $Digit:
  /src/sys/external/bsd/acpica/dist/compiler/
aslsupport.l 672 UINT8 Digit;
768 /* Check for an octal digit (0-7) */
801 Digit = (UINT8) strtoul (ConvertBuffer, NULL, 8);
805 if ((Digit == 0) || (Digit > ACPI_ASCII_MAX))
814 *StringBuffer = (char) Digit;
827 /* Append another digit of the constant */
845 Digit = (UINT8) strtoul (ConvertBuffer, NULL, 16);
849 if ((Digit == 0) || (Digit > ACPI_ASCII_MAX)
    [all...]
  /src/external/bsd/openldap/dist/libraries/liblunicode/ucdata/
format.txt 27 Nd 3 Number, Decimal Digit
71 Hd 42 Hex 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.
  /src/external/apache2/llvm/dist/clang/lib/Driver/
Driver.cpp 5481 unsigned Digit;
5482 if (Str.consumeInteger(10, Digit))
5484 Digits[CurDigit] = Digit;

Completed in 55 milliseconds