Home
last modified time | relevance | path

Searched refs:HEX (Results 1 – 25 of 25) sorted by relevance

/external/icu4c/test/intltest/
Dtestutil.cpp14 static const UChar HEX[16]={48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70}; variable
19 buf.append(HEX[0xF&(ch>>20)]); in appendHex()
21 buf.append(HEX[0xF&(ch>>16)]); in appendHex()
23 buf.append(HEX[0xF&(ch>>12)]); in appendHex()
24 buf.append(HEX[0xF&(ch>>8)]); in appendHex()
25 buf.append(HEX[0xF&(ch>>4)]); in appendHex()
26 buf.append(HEX[0xF&ch]); in appendHex()
57 buf.append(HEX[0x0F & (bytes[i] >> 4)]); in hex()
58 buf.append(HEX[0x0F & bytes[i]]); in hex()
/external/ipsec-tools/src/racoon/
Dprsa_par.y138 %token COLON HEX
139 %token OBRACE EBRACE COLON HEX
145 %type <bn> HEX
215 | TAG_PUB HEX
290 MODULUS COLON HEX
292 | PUBLIC_EXPONENT COLON HEX
294 | PRIVATE_EXPONENT COLON HEX
296 | PRIME1 COLON HEX
298 | PRIME2 COLON HEX
300 | EXPONENT1 COLON HEX
[all …]
Dprsa_par.h43 HEX = 259, enumerator
67 #define HEX 259 macro
Dprsa_tok.l67 return HEX;
/external/e2fsprogs/ext2ed/
Dfile_com.c42 file_info.display=HEX; in init_file_info()
59 if (file_info.display==HEX) in type_file___show()
238 file_info.display=HEX; in type_file___display()
441 int mode=HEX; in type_file___set()
456 mode=HEX; in type_file___set()
464 if (mode==HEX) { in type_file___set()
Dext2ed.h74 #define HEX 1 macro
371 #define HEX 1 macro
Dgeneral_com.c431 int mode=HEX; in hex_set()
446 mode=HEX; in hex_set()
454 if (mode==HEX) { in hex_set()
Ddir_com.c70 info_ptr->display=HEX; /* This is not actually used */ in init_dir_info()
/external/arduino/hardware/arduino/cores/arduino/
DPrint.h29 #define HEX 16 macro
/external/elfutils/src/
Dldlex.l85 HEX 0[xX][0-9a-fA-F]+[kKmM]?
180 {HEX}|{OCT}|{DEC} { char *endp;
/external/v8/src/
Dscanner.cc722 enum { DECIMAL, HEX, OCTAL } kind = DECIMAL; in ScanNumber() enumerator
739 kind = HEX; in ScanNumber()
778 ASSERT(kind != HEX); // 'e'/'E' must be scanned as part of the hex number in ScanNumber()
/external/chromium/third_party/libjingle/source/talk/base/
Dstringencode.cc43 static const char HEX[] = "0123456789abcdef"; variable
47 return (val < 16) ? HEX[val] : '!'; in hex_encode()
/external/iproute2/examples/
DREADME.cbq37 # Each shaper has its personal ID - two byte HEX number. Really ID is
/external/webkit/Source/WebCore/css/
Dtokenizer.flex48 "#"{h}+ {yyTok = HEX; return yyTok;}
DCSSGrammar.y121 %nonassoc <string> HEX
1015 | HEX {
1416 | HEX maybe_space { $$.id = 0; $$.string = $1; $$.unit = CSSPrimitiveValue::CSS_PARSER_HEXCOLOR; }
DCSSParser.cpp5940 case HEX: in lex()
6030 case HEX: in text()
/external/libvpx/vp8/encoder/
Donyx_int.h167 HEX = 2 enumerator
Dpickinter.c733 if (cpi->sf.search_method == HEX) in vp8_pick_inter_mode()
Drdopt.c1154 if (cpi->sf.search_method == HEX) in rd_check_segment()
2097 if (cpi->sf.search_method == HEX) in vp8_rd_pick_inter_mode()
Donyx_if.c990 sf->search_method = HEX; in vp8_set_speed_features()
/external/bison/doc/
Dbison.info5660 special construct `hex (HEX-EXPR)'. After the keyword `hex' comes an
5675 | HEX '('
Dbison.texinfo6137 | HEX '('
/external/libppp/src/
Dppp.8.m46070 to HEX to determine the actual file name.
/external/icu4c/data/unidata/
DUnicodeData.txt12278 A27D;YI SYLLABLE HEX;Lo;0;L;;;;;N;;;;;
/external/webkit/Source/WebCore/
DChangeLog-2009-06-1693272 … In the bison template, "hexcolor" was defined as both "HEX maybe_space" OR "IDENT maybe_space".