Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dstring_utils.cpp63 char Digit = static_cast<char>(NumBuffer[Pos]); in appendNumber() local
64 Digit = static_cast<char>((Digit < 10) ? '0' + Digit in appendNumber()
65 : (Upper ? 'A' : 'a') + Digit - 10); in appendNumber()
66 Res += appendChar(Buffer, BufferEnd, Digit); in appendNumber()
/openbsd-src/gnu/usr.bin/perl/lib/unicore/extracted/
H A DDNumType.txt17 # Numeric_Type=Digit: When there is a value in field 7, but not in field 6.
189 00B2..00B3 ; Digit # No [2] SUPERSCRIPT TWO..SUPERSCRIPT THREE
190 00B9 ; Digit # No SUPERSCRIPT ONE
191 1369..1371 ; Digit # No [9] ETHIOPIC DIGIT ONE..ETHIOPIC DIGIT NINE
192 19DA ; Digit # No NEW TAI LUE THAM DIGIT ONE
193 2070 ; Digit # No SUPERSCRIPT ZERO
194 2074..2079 ; Digit # No [6] SUPERSCRIPT FOUR..SUPERSCRIPT NINE
195 2080..2089 ; Digit # No [10] SUBSCRIPT ZERO..SUBSCRIPT NINE
196 2460..2468 ; Digit # No [9] CIRCLED DIGIT ONE..CIRCLED DIGIT NINE
197 2474..247C ; Digit # No [9] PARENTHESIZED DIGIT ONE..PARENTHESIZED DIGIT NINE
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Demangle/
H A DRustDemangle.cpp903 uint64_t Digit; in parseBase62Number() local
909 Digit = C - '0'; in parseBase62Number()
911 Digit = 10 + (C - 'a'); in parseBase62Number()
913 Digit = 10 + 26 + (C - 'A'); in parseBase62Number()
922 if (!addAssign(Value, Digit)) in parseBase62Number()
1162 size_t Digit = 0; in decodePunycode() local
1163 if (!decodePunycodeDigit(C, Digit)) in decodePunycode()
1166 if (Digit > (Max - I) / W) in decodePunycode()
1168 I += Digit * W; in decodePunycode()
1178 if (Digit < T) in decodePunycode()
H A DDLangDemangle.cpp190 unsigned long Digit = Mangled[0] - '0'; in decodeNumber() local
193 if (Val > (std::numeric_limits<unsigned int>::max() - Digit) / 10) in decodeNumber()
196 Val = Val * 10 + Digit; in decodeNumber()
H A DMicrosoftDemangle.cpp1106 static void writeHexDigit(char *Buffer, uint8_t Digit) { in writeHexDigit() argument
1107 assert(Digit <= 15); in writeHexDigit()
1108 *Buffer = (Digit < 10) ? ('0' + Digit) : ('A' + Digit - 10); in writeHexDigit()
/openbsd-src/gnu/usr.bin/perl/t/re/
H A Dregex_sets.t60 my $thai_or_lao_digit = qr/(?[ \p{Digit} & $thai_or_lao ])/;
71 my $ascii_digits_plus_all_of_arabic = qr/(?[ \p{Arabic} + \p{Digit} & $ascii_word ])/;
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DScaledNumber.cpp149 static bool doesRoundUp(char Digit) { in doesRoundUp() argument
150 switch (Digit) { in doesRoundUp()
H A DAPInt.cpp2235 unsigned Digit = unsigned(Tmp.getRawData()[0]) & MaskAmt; in toString() local
2236 Str.push_back(Digits[Digit]); in toString()
2241 uint64_t Digit; in toString() local
2242 udivrem(Tmp, Radix, Tmp, Digit); in toString()
2243 assert(Digit < Radix && "divide failed"); in toString()
2244 Str.push_back(Digits[Digit]); in toString()
/openbsd-src/share/misc/
H A Dusb_hid_usages2674 0xB9 EAN 8 Flag Digit 1
2675 0xBA EAN 8 Flag Digit 2
2676 0xBB EAN 8 Flag Digit 3
2677 0xBC EAN 13 Flag Digit 1
2678 0xBD EAN 13 Flag Digit 2
2679 0xBE EAN 13 Flag Digit 3
2695 0xD6 Check Digit
2696 0xD7 Check Digit Disable
2697 0xD8 Check Digit Enable Interleaved 2 of 5 OPCC
2698 0xD9 Check Digit Enable Interleaved 2 of 5 USS
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-rc/
H A DResourceFileWriter.cpp256 char Digit = tolower(Chars[Pos]); in processString() local
260 if (isdigit(Digit)) in processString()
261 ReadInt |= Digit - '0'; in processString()
263 ReadInt |= Digit - 'a' + 10; in processString()
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperlrecharclass.pod96 matches anything that is matched by C<\p{Digit}>, which includes [0-9].
124 What C<\p{Digit}> means (and hence C<\d> except under the C</a>
126 C<\p{General_Category=Digit}>. Starting with Unicode version 4.1, this
129 C<\p{Numeric_Type=Digit}>, which matches a completely different set of
138 C<\p{Numeric_Type=Digit}>, and so C<\d> doesn't match them.
1036 /(?[ \p{Thai} & \p{Digit} ])/
1048 /(?[ ( \p{Thai} + \p{Lao} ) & \p{Digit} ])/
1184 qr/(?[ \p{Digit} & $thai_or_lao ])/;
1191 qr/(?[ \p{Digit} & $thai_or_lao ])/;
1195 qr/(?[ \p{Digit}
[all...]
H A Dperlreref.pod191 [:digit:] \d \p{Digit}
192 [:^digit:] \D \P{Digit}
H A Dperluniprops.pod2458 \p{Digit} \p{XPosixDigit} (= \p{General_Category=
2715 \p{General_Category: Digit} \p{General_Category=Decimal_Number}
4449 \p{Numeric_Type: Di} \p{Numeric_Type=Digit} (128)
4450 \p{Numeric_Type: Digit} (Short: \p{Nt=Di}) (128: [\xb2-\xb3\xb9],
7359 Digit XPosixDigit (=General_Category=
7627 Digit). (Perl extension). [0-9] + all
H A Dperldiag.pod2491 qr/(?[ \p{Digit} & $thai_or_lao ])/;
4830 (?[ \p{Digit} \p{Thai} ])
7002 (?[ | \p{Digit} ])
7041 (?[ ( \p{Digit} + ) ])
7060 (?[ \p{Digit} ( \p{Lao} + \p{Thai} ) ])
H A Dperlunicode.pod534 Nd Decimal_Number (also Digit)
H A Dperlre.pod790 can instead use C<\p{Digit}> (or C<\p{Word}> for C<\w>). There are
/openbsd-src/gnu/llvm/clang/lib/Driver/
H A DDriver.cpp6338 unsigned Digit; in GetReleaseVersion() local
6339 if (Str.consumeInteger(10, Digit)) in GetReleaseVersion()
6341 Digits[CurDigit] = Digit; in GetReleaseVersion()
/openbsd-src/gnu/usr.bin/perl/lib/unicore/
H A DPropValueAliases.txt1180 nt ; Di ; Digit
H A Dmktables10544 nt ; di ; Digit
11602 $fields[$NUMERIC_TYPE_OTHER_DIGIT] = 'Digit';
12994 # Decimal Digit duplicates UnicodeData.txt: gc=nd
14561 my $Digit = $perl->add_match_table('Digit', Full_Name => 'XPosixDigit',
14563 $Digit->set_equivalent_to($gc->table('Decimal_Number'), Related => 1);
14565 Initialize => $Digit & $ASCII,
/openbsd-src/gnu/llvm/libcxx/include/
H A Dlocale957 // Digit grouping checked
1014 // Digit grouping checked
1069 // Digit grouping checked