Home
last modified time | relevance | path

Searched +refs:hex +refs:digit (Results 1 – 25 of 8497) sorted by relevance

12345678910>>...340

/dports/lang/perl5.34/perl-5.34.0/t/lib/warnings/
H A Dutil3 Illegal octal digit ignored
6 Illegal hex digit ignored
7 my $a = hex "0xv9" ;
9 Illegal binary digit ignored
27 use warnings 'digit' ;
29 no warnings 'digit' ;
35 use warnings 'digit' ;
37 no warnings 'digit' ;
38 $a = hex "0xv9" ;
43 use warnings 'digit' ;
[all …]
/dports/lang/perl5.30/perl-5.30.3/t/lib/warnings/
H A Dutil3 Illegal octal digit ignored
6 Illegal hex digit ignored
7 my $a = hex "0xv9" ;
9 Illegal binary digit ignored
27 use warnings 'digit' ;
29 no warnings 'digit' ;
35 use warnings 'digit' ;
37 no warnings 'digit' ;
38 $a = hex "0xv9" ;
43 use warnings 'digit' ;
[all …]
/dports/lang/perl5.32/perl-5.32.1/t/lib/warnings/
H A Dutil3 Illegal octal digit ignored
6 Illegal hex digit ignored
7 my $a = hex "0xv9" ;
9 Illegal binary digit ignored
27 use warnings 'digit' ;
29 no warnings 'digit' ;
35 use warnings 'digit' ;
37 no warnings 'digit' ;
38 $a = hex "0xv9" ;
43 use warnings 'digit' ;
[all …]
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/t/lib/warnings/
H A Dutil3 Illegal octal digit ignored
6 Illegal hex digit ignored
7 my $a = hex "0xv9" ;
9 Illegal binary digit ignored
27 use warnings 'digit' ;
29 no warnings 'digit' ;
35 use warnings 'digit' ;
37 no warnings 'digit' ;
38 $a = hex "0xv9" ;
43 use warnings 'digit' ;
[all …]
/dports/databases/p5-GDBM/perl-5.14.2/t/lib/warnings/
H A Dutil3 Illegal octal digit ignored
6 Illegal hex digit ignored
7 my $a = hex "0xv9" ;
9 Illegal binary digit ignored
27 use warnings 'digit' ;
29 no warnings 'digit' ;
35 use warnings 'digit' ;
37 no warnings 'digit' ;
38 $a = hex "0xv9" ;
43 use warnings 'digit' ;
[all …]
/dports/emulators/jzintv/jzintv-20200712-src/examples/library/
H A Dhexdisp.asm15 ;; HEX16 -- Display a 4-digit hex number on the screen ;;
16 ;; HEX12M -- Display a 3-digit hex number on the screen (MSBs) ;;
17 ;; HEX8M -- Display a 2-digit hex number on the screen (MSBs) ;;
18 ;; HEX4M -- Display a 1-digit hex number on the screen (MSBs) ;;
19 ;; HEX12 -- Display a 3-digit hex number on the screen (LSBs) ;;
20 ;; HEX8 -- Display a 2-digit hex number on the screen (LSBs) ;;
21 ;; HEX4 -- Display a 1-digit hex number on the screen (LSBs) ;;
73 ; Mask out a single hex digit
80 BLT @@digit
81 ADDI #$38, R2 ; If the digit >= A, add 6 << 3.
[all …]
/dports/devel/arduino-sevseg/SevSeg-3.7.0/
H A DSevSeg.cpp179 for (uint8_t digit = 0 ; digit < numDigits ; digit++) { in begin() local
385 setNewNum(numToShow, decPlaces, hex); in setNumber()
393 if (hex) { in setNumberF()
401 setNewNum((int32_t)numToShow, (int8_t)decPlaces, hex); in setNumberF()
409 findDigits(numToShow, decPlaces, hex, digits); in setNewNum()
431 for (uint8_t digit = 0; digit < numDigits; digit++) { in setSegments() local
432 digitCodes[digit] = segs[digit]; in setSegments()
455 for (uint8_t digit = 0; digit < numDigits; digit++) { in getSegments() local
456 segs[digit] = digitCodes[digit]; in getSegments()
465 for (uint8_t digit = 0; digit < numDigits; digit++) { in setChars() local
[all …]
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/common/script_system/parser/
H A Djs_lex.l20 hex [0-9a-fA-F]
23 digit [0-9]
26 fract {digit}*\.{digit}+|{digit}+\.
27 exp [eE][+-]?{digit}+
29 hexfract {hex}*\.{hex}+|{hex}+\.
30 binexp [pP][+-]?{digit}+
32 icst ({dec}|0{oct}*|0[xX]{hex}+)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pyjson5/src/json5/
H A Djson5.g55 | ~('x'|'u'|digit|eol) anything:c -> c
56 | '0' ~digit -> '\u0000'
60 hex_esc = 'x' hex:h1 hex:h2 -> xtou(h1 + h2)
62 unicode_esc = 'u' hex:a hex:b hex:c hex:d -> xtou(a + b + c + d)
90 | digit
113 dec_int_lit = '0' ~digit -> '0'
114 | nonzerodigit:d digit*:ds -> d + join('', ds)
116 digit = '0'..'9'
120 hex_literal = ('0x' | '0X') hex+:hs -> '0x' + join('', hs)
122 hex = 'a'..'f' | 'A'..'F' | digit
[all …]
/dports/cad/stepcode/stepcode-0.8/doc/
H A Diso-10303-21--2002.bnf6 binary = '"' ( '0' | '1' | '2' | '3' ) { hex } '"' .
11 digit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' .
15 entity_instance_name = '#' digit { digit } .
16 enumeration = '.' upper { upper | digit } '.' .
23 hex = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | 'A' | 'B' | 'C' | 'D' | 'E' | 'F'…
25 hex_one = hex hex .
27 integer = [ sign ] digit { digit } .
31 non_q_char = special | digit | space | lower | upper .
36 real = [ sign ] digit { digit } '.' { digit } [ 'E' [ sign ] digit { digit } ] .
44 standard_keyword = upper { upper | digit } .
[all …]
H A Diso-10303-21--1994.bnf6 binary = '"' ( '0' | '1' | '2' | '3' ) { hex } '"' .
11 digit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' .
15 entity_instance_name = '#' digit { digit } .
16 enumeration = '.' upper { upper | digit } '.' .
24 hex = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | 'A' | 'B' | 'C' | 'D' | 'E' | 'F'…
26 hex_one = hex hex .
28 integer = [ sign ] digit { digit } .
32 non_q_char = special | digit | space | lower | upper .
37 real = [ sign ] digit { digit } '.' { digit } [ 'E' [ sign ] digit { digit } ] .
46 standard_keyword = upper { upper | digit } .
[all …]
/dports/devel/objecthash/objecthash-770874c/src/main/java/org/links/objecthash/
H A DObjectHash.java169 private static int parseHex(char digit) { in parseHex() argument
170 assert ((digit >= '0' && digit <= '9') || (digit >= 'a' && digit <= 'f')); in parseHex()
171 if (digit >= '0' && digit <= '9') { in parseHex()
172 return digit - '0'; in parseHex()
174 return 10 + digit - 'a'; in parseHex()
180 hex = hex.toLowerCase(); in fromHex()
181 if (hex.length() % 2 == 1) { in fromHex()
182 hex = '0' + hex; in fromHex()
186 for (int idx = hex.length(); idx > 0; idx -= 2) { in fromHex()
253 if (hex.length() == 1) { in toHex()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.WebPages/Helpers/AntiXsrf/
H A DMachineKeyCryptoSystem.cs43 string hex = _encoder(dataWithHeader, MachineKeyProtection.All); in Protect()
44 return HexToBase64(hex); in Protect()
49 string hex = Base64ToHex(protectedData); in Unprotect()
50 byte[] dataWithHeader = _decoder(hex, MachineKeyProtection.All); in Unprotect()
82 private static int HexValue(char digit) in HexValue() argument
84 return digit > '9' ? digit - '7' : digit - '0'; in HexValue()
87 internal static string HexToBase64(string hex) in HexToBase64() argument
89 int size = hex.Length / 2; in HexToBase64()
93 bytes[idx] = (byte)((HexValue(hex[idx * 2]) << 4) + HexValue(hex[(idx * 2) + 1])); in HexToBase64()
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/tools/qlalr/examples/glsl/
H A Dglsl-lex.l37 hex [0-9a-fA-F]
40 digit [0-9]
42 fract {digit}*\.{digit}+|{digit}+\.
43 exp [eE][+-]?{digit}+
45 hexfract {hex}*\.{hex}+|{hex}+\.
46 binexp [pP][+-]?{digit}+
48 icst ({dec}|0{oct}*|0[xX]{hex}+)
210 {digit}+{exp}[flFL]? {
220 0[xX]{hex}+{binexp}[flFL]? {
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/tools/qlalr/examples/glsl/
H A Dglsl-lex.l37 hex [0-9a-fA-F]
40 digit [0-9]
42 fract {digit}*\.{digit}+|{digit}+\.
43 exp [eE][+-]?{digit}+
45 hexfract {hex}*\.{hex}+|{hex}+\.
46 binexp [pP][+-]?{digit}+
48 icst ({dec}|0{oct}*|0[xX]{hex}+)
210 {digit}+{exp}[flFL]? {
220 0[xX]{hex}+{binexp}[flFL]? {
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/tools/qlalr/examples/glsl/
H A Dglsl-lex.l37 hex [0-9a-fA-F]
40 digit [0-9]
42 fract {digit}*\.{digit}+|{digit}+\.
43 exp [eE][+-]?{digit}+
45 hexfract {hex}*\.{hex}+|{hex}+\.
46 binexp [pP][+-]?{digit}+
48 icst ({dec}|0{oct}*|0[xX]{hex}+)
210 {digit}+{exp}[flFL]? {
220 0[xX]{hex}+{binexp}[flFL]? {
/dports/devel/qt5-qmake/kde-qtbase-5.15.2p263/src/tools/qlalr/examples/glsl/
H A Dglsl-lex.l37 hex [0-9a-fA-F]
40 digit [0-9]
42 fract {digit}*\.{digit}+|{digit}+\.
43 exp [eE][+-]?{digit}+
45 hexfract {hex}*\.{hex}+|{hex}+\.
46 binexp [pP][+-]?{digit}+
48 icst ({dec}|0{oct}*|0[xX]{hex}+)
210 {digit}+{exp}[flFL]? {
220 0[xX]{hex}+{binexp}[flFL]? {
/dports/converters/wkhtmltopdf/qt-5db36ec/util/qlalr/examples/glsl/
H A Dglsl-lex.l50 hex [0-9a-fA-F]
53 digit [0-9]
55 fract {digit}*\.{digit}+|{digit}+\.
56 exp [eE][+-]?{digit}+
58 hexfract {hex}*\.{hex}+|{hex}+\.
59 binexp [pP][+-]?{digit}+
61 icst ({dec}|0{oct}*|0[xX]{hex}+)
223 {digit}+{exp}[flFL]? {
233 0[xX]{hex}+{binexp}[flFL]? {
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/tools/qlalr/examples/glsl/
H A Dglsl-lex.l37 hex [0-9a-fA-F]
40 digit [0-9]
42 fract {digit}*\.{digit}+|{digit}+\.
43 exp [eE][+-]?{digit}+
45 hexfract {hex}*\.{hex}+|{hex}+\.
46 binexp [pP][+-]?{digit}+
48 icst ({dec}|0{oct}*|0[xX]{hex}+)
210 {digit}+{exp}[flFL]? {
220 0[xX]{hex}+{binexp}[flFL]? {
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/tools/qlalr/examples/glsl/
H A Dglsl-lex.l37 hex [0-9a-fA-F]
40 digit [0-9]
42 fract {digit}*\.{digit}+|{digit}+\.
43 exp [eE][+-]?{digit}+
45 hexfract {hex}*\.{hex}+|{hex}+\.
46 binexp [pP][+-]?{digit}+
48 icst ({dec}|0{oct}*|0[xX]{hex}+)
210 {digit}+{exp}[flFL]? {
220 0[xX]{hex}+{binexp}[flFL]? {
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/tools/qlalr/examples/glsl/
H A Dglsl-lex.l37 hex [0-9a-fA-F]
40 digit [0-9]
42 fract {digit}*\.{digit}+|{digit}+\.
43 exp [eE][+-]?{digit}+
45 hexfract {hex}*\.{hex}+|{hex}+\.
46 binexp [pP][+-]?{digit}+
48 icst ({dec}|0{oct}*|0[xX]{hex}+)
210 {digit}+{exp}[flFL]? {
220 0[xX]{hex}+{binexp}[flFL]? {
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/tools/qlalr/examples/glsl/
H A Dglsl-lex.l37 hex [0-9a-fA-F]
40 digit [0-9]
42 fract {digit}*\.{digit}+|{digit}+\.
43 exp [eE][+-]?{digit}+
45 hexfract {hex}*\.{hex}+|{hex}+\.
46 binexp [pP][+-]?{digit}+
48 icst ({dec}|0{oct}*|0[xX]{hex}+)
210 {digit}+{exp}[flFL]? {
220 0[xX]{hex}+{binexp}[flFL]? {
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/tools/qlalr/examples/glsl/
H A Dglsl-lex.l37 hex [0-9a-fA-F]
40 digit [0-9]
42 fract {digit}*\.{digit}+|{digit}+\.
43 exp [eE][+-]?{digit}+
45 hexfract {hex}*\.{hex}+|{hex}+\.
46 binexp [pP][+-]?{digit}+
48 icst ({dec}|0{oct}*|0[xX]{hex}+)
210 {digit}+{exp}[flFL]? {
220 0[xX]{hex}+{binexp}[flFL]? {
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/tools/qlalr/examples/glsl/
H A Dglsl-lex.l37 hex [0-9a-fA-F]
40 digit [0-9]
42 fract {digit}*\.{digit}+|{digit}+\.
43 exp [eE][+-]?{digit}+
45 hexfract {hex}*\.{hex}+|{hex}+\.
46 binexp [pP][+-]?{digit}+
48 icst ({dec}|0{oct}*|0[xX]{hex}+)
210 {digit}+{exp}[flFL]? {
220 0[xX]{hex}+{binexp}[flFL]? {
/dports/net/qt5-network/kde-qtbase-5.15.2p263/src/tools/qlalr/examples/glsl/
H A Dglsl-lex.l37 hex [0-9a-fA-F]
40 digit [0-9]
42 fract {digit}*\.{digit}+|{digit}+\.
43 exp [eE][+-]?{digit}+
45 hexfract {hex}*\.{hex}+|{hex}+\.
46 binexp [pP][+-]?{digit}+
48 icst ({dec}|0{oct}*|0[xX]{hex}+)
210 {digit}+{exp}[flFL]? {
220 0[xX]{hex}+{binexp}[flFL]? {

12345678910>>...340