HomeSort by relevance Sort by last modified time
    Searched refs:HEX (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/third_party/icu/source/test/intltest/
testutil.cpp 14 static const UChar HEX[16]={48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70};
19 buf.append(HEX[0xF&(ch>>20)]);
21 buf.append(HEX[0xF&(ch>>16)]);
23 buf.append(HEX[0xF&(ch>>12)]);
24 buf.append(HEX[0xF&(ch>>8)]);
25 buf.append(HEX[0xF&(ch>>4)]);
26 buf.append(HEX[0xF&ch]);
30 UnicodeString TestUtility::hex(UChar32 ch) { function in class:TestUtility
36 UnicodeString TestUtility::hex(const UnicodeString& s) { function in class:TestUtility
37 return hex(s, 44 /*,*/)
40 UnicodeString TestUtility::hex(const UnicodeString& s, UChar sep) { function in class:TestUtility
54 UnicodeString TestUtility::hex(const uint8_t* bytes, int32_t len) { function in class:TestUtility
    [all...]
  /external/icu4c/test/intltest/
testutil.cpp 14 static const UChar HEX[16]={48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70};
19 buf.append(HEX[0xF&(ch>>20)]);
21 buf.append(HEX[0xF&(ch>>16)]);
23 buf.append(HEX[0xF&(ch>>12)]);
24 buf.append(HEX[0xF&(ch>>8)]);
25 buf.append(HEX[0xF&(ch>>4)]);
26 buf.append(HEX[0xF&ch]);
30 UnicodeString TestUtility::hex(UChar32 ch) { function in class:TestUtility
36 UnicodeString TestUtility::hex(const UnicodeString& s) { function in class:TestUtility
37 return hex(s, 44 /*,*/)
40 UnicodeString TestUtility::hex(const UnicodeString& s, UChar sep) { function in class:TestUtility
54 UnicodeString TestUtility::hex(const uint8_t* bytes, int32_t len) { function in class:TestUtility
    [all...]
  /external/ipsec-tools/src/racoon/
prsa_par.h 43 HEX = 259,
67 #define HEX 259
prsa_par.y 138 %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...]
prsa_tok.l 52 hex [0-9a-fA-F]
53 word6 {hex}{0,4}
67 return HEX;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLIntegerProperty.java 21 public enum DisplayRadix { DECIMAL, HEX };
49 if (mRadix == DisplayRadix.HEX) {
GLState.java 177 Integer.valueOf(0xffffffff), DisplayRadix.HEX);
188 GLStateType.STENCIL_BACK_VALUE_MASK, Integer.valueOf(0xffffffff), DisplayRadix.HEX);
  /external/arduino/hardware/arduino/cores/arduino/
Print.h 29 #define HEX 16
  /external/e2fsprogs/ext2ed/
file_com.c 42 file_info.display=HEX;
59 if (file_info.display==HEX)
232 strcpy (buffer,"hex");
236 if (strcasecmp (buffer,"hex")==0) {
237 wprintw (command_win,"Display set to hex\n");wrefresh (command_win);
238 file_info.display=HEX;
441 int mode=HEX;
455 else if (strcasecmp (buffer,"hex")==0) {
456 mode=HEX;
464 if (mode==HEX) {
    [all...]
ext2ed.h 74 #define HEX 1
371 #define HEX 1
general_com.c 431 int mode=HEX;
445 else if (strcasecmp (buffer,"hex")==0) {
446 mode=HEX;
454 if (mode==HEX) {
504 if (strcmp (buffer,"none")==0 || strcmp (buffer,"hex")==0) {
505 wprintw (command_win,"Data will be shown as hex dump\n");refresh_command_win ();
dir_com.c 70 info_ptr->display=HEX; /* This is not actually used */
  /device/google/accessory/arduino/AndroidAccessory/
AndroidAccessory.cpp 179 Serial.println( descType, HEX);
209 Serial.println(inEp.epAddr, HEX);
210 Serial.println(outEp.epAddr, HEX);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
quopri.py 11 HEX = '0123456789ABCDEF'
38 return ESCAPE + HEX[i//16] + HEX[i%16]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
quopri.py 11 HEX = '0123456789ABCDEF'
38 return ESCAPE + HEX[i//16] + HEX[i%16]
  /external/elfutils/src/
ldlex.l 85 HEX 0[xX][0-9a-fA-F]+[kKmM]?
180 {HEX}|{OCT}|{DEC} { char *endp;
  /external/chromium/third_party/libjingle/source/talk/base/
stringencode.cc 43 static const char HEX[] = "0123456789abcdef";
47 return (val < 16) ? HEX[val] : '!';
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Color.js 57 // Simple - #hex, rgb(), nickname, hsl()
62 if (match[1]) { // hex
63 var hex = match[1].toUpperCase();
65 if (hex.length === 3) {
67 hex = hex.charAt(0) + hex.charAt(0) + hex.charAt(1) + hex.charAt(1) + hex.charAt(2) + hex.charAt(2)
    [all...]
Spectrum.js 222 return color.toString(cf.HEX);
  /device/google/accessory/arduino/USB_Host_Shield/
Usb.cpp 108 Serial.print( rcode, HEX );
111 //Serial.println( direction, HEX );
117 Serial.print( rcode, HEX );
364 //Serial.println( usb_task_state, HEX );
  /bionic/libc/stdio/
vfprintf.c 196 enum { OCT, DEC, HEX } base;/* base for [diouxX] conversion */
205 char ox[2]; /* space for 0x hex-prefix */
602 base = HEX;
637 goto hex;
640 hex: _umax = UARG();
641 base = HEX;
688 case HEX:
  /prebuilts/tools/common/mkidentity/
mkidentity-prebuilt.jar 
  /external/libvpx/libvpx/vp8/encoder/
onyx_int.h 172 HEX = 2
  /external/libvpx/libvpx/vp9/encoder/
vp9_onyx_int.h 179 HEX = 2,
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGrammar.y.in 69 case HEX:
120 %nonassoc <string> HEX
1278 | HEX {
    [all...]

Completed in 941 milliseconds

1 2