HomeSort by relevance Sort by last modified time
    Searched defs:HEX (Results 1 - 10 of 10) sorted by null

  /external/chromium/third_party/libjingle/source/talk/base/
stringencode.cc 43 static const char HEX[] = "0123456789abcdef";
47 return (val < 16) ? HEX[val] : '!';
  /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
  /external/v8/src/
scanner-base.cc 54 // According to ECMA-262, 3rd, 7.8.4, page 18, these hex escapes
554 enum { DECIMAL, HEX, OCTAL } kind = DECIMAL;
563 // if the first character is '0' we must check for octals and hex
567 // either 0, 0exxx, 0Exxx, 0.xxx, an octal number, or a hex number
569 // hex number
570 kind = HEX;
573 // we must have at least one hex digit after 'x'/'X'
609 ASSERT(kind != HEX); // 'e'/'E' must be scanned as part of the hex number
  /external/e2fsprogs/ext2ed/
ext2ed.h 74 #define HEX 1
371 #define HEX 1
  /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:
  /external/libvpx/vp8/encoder/
onyx_int.h 167 HEX = 2
  /prebuilt/common/mkidentity/
mkidentity-prebuilt.jar 
  /cts/tools/signature-tools/lib/
stringtemplate.jar 
  /prebuilt/common/netbeans-visual/
org-openide-util.jar 

Completed in 241 milliseconds