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

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
quopri.py 11 HEX = '0123456789ABCDEF'
38 return ESCAPE + HEX[i//16] + HEX[i%16]
  /external/cldr/tools/java/org/unicode/cldr/util/props/
UnicodeLabel.java 39 private static class Hex extends UnicodeLabel {
42 if (isShort) return Utility.hex(codepoint,4);
43 return "U+" + Utility.hex(codepoint,4);
63 public static final UnicodeLabel HEX = new Hex();
  /external/python/cpython2/Lib/
quopri.py 11 HEX = '0123456789ABCDEF'
38 return ESCAPE + HEX[i//16] + HEX[i%16]
  /external/python/cpython3/Lib/
quopri.py 11 HEX = b'0123456789ABCDEF'
40 return ESCAPE + bytes((HEX[c//16], HEX[c%16]))
189 assert False, "non-hex digit "+repr(c)
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1OctetString.java 33 private static final BaseEncoding HEX = BaseEncoding.base16();
167 return getTypeName() + " = [ " + (value == null ? "<null>" : HEX.encode(value)) + " ];\n";
  /external/icu/icu4c/source/test/intltest/
testutil.cpp 23 static const UChar HEX[] = u"0123456789ABCDEF";
28 buf.append(HEX[0xF&(ch>>20)]);
30 buf.append(HEX[0xF&(ch>>16)]);
32 buf.append(HEX[0xF&(ch>>12)]);
33 buf.append(HEX[0xF&(ch>>8)]);
34 buf.append(HEX[0xF&(ch>>4)]);
35 buf.append(HEX[0xF&ch]);
39 UnicodeString TestUtility::hex(UChar32 ch) { function in class:TestUtility
45 UnicodeString TestUtility::hex(const UnicodeString& s) { function in class:TestUtility
46 return hex(s, u',')
49 UnicodeString TestUtility::hex(const UnicodeString& s, UChar sep) { function in class:TestUtility
63 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
  /bionic/libc/stdio/
vfprintf.cpp 66 * F: at least two digits for decimal, at least one digit for hex
84 enum { OCT, DEC, HEX } base; /* base for %[diouxX] conversion */
474 base = HEX;
520 goto hex;
523 hex:
525 base = HEX;
571 case HEX:
vfwprintf.cpp 66 * F: at least two digits for decimal, at least one digit for hex
84 enum { OCT, DEC, HEX } base; /* base for %[diouxX] conversion */
467 base = HEX;
509 goto hex;
512 hex:
514 base = HEX;
560 case HEX:
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vsnprintf_ss.c 133 enum { OCT, DEC, HEX } base;/* base for [diouxX] conversion */
311 base = HEX;
347 goto hex;
350 hex: _uquad = UARG();
351 base = HEX;
398 case HEX:
  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer.cc 120 // Stages the hex repr. of the given int type in the current line buffer.
123 // Make enough room to hex encode the largest int type + NUL.
124 static const char HEX[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
128 hexstr[i] = HEX[static_cast<uint8_t>(value) & 0x0F];
133 // Stages the buffer content hex-encoded in the current line buffer.
  /external/webrtc/webrtc/base/
stringencode.cc 411 static const char HEX[] = "0123456789abcdef";
415 return (val < 16) ? HEX[val] : '!';
  /external/grpc-grpc-java/core/src/main/java/io/grpc/
Status.java 569 private static final byte[] HEX =
605 escapedBytes[wi + 1] = HEX[(b >> 4) & 0xF];
606 escapedBytes[wi + 2] = HEX[b & 0xF];
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
PatternTokenizer.java 230 result.append("\\u").append(Utility.hex(cp,4));
232 result.append("\\U").append(Utility.hex(cp,8));
257 private static final int AFTER_QUOTE = -1, NONE = 0, START_QUOTE = 1, NORMAL_QUOTE = 2, SLASH_START = 3, HEX = 4;
275 quoteStatus = HEX;
280 quoteStatus = HEX;
295 case HEX:
375 case HEX:
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
PatternTokenizer.java 228 result.append("\\u").append(Utility.hex(cp,4));
230 result.append("\\U").append(Utility.hex(cp,8));
255 private static final int AFTER_QUOTE = -1, NONE = 0, START_QUOTE = 1, NORMAL_QUOTE = 2, SLASH_START = 3, HEX = 4;
273 quoteStatus = HEX;
278 quoteStatus = HEX;
293 case HEX:
373 case HEX:
  /external/e2fsprogs/ext2ed/
ext2ed.h 70 #define HEX 1
367 #define HEX 1
  /external/ltp/testcases/kernel/ipc/pipeio/
pipeio.c 68 #define HEX 'x'
115 static int format = HEX;
240 format = HEX;
263 fprintf(stderr, "\tIt must be x(hex), o(octal),"
275 fprintf(stderr, "\tIt must be x(hex),"
735 -f format - define format of bad buffer: h(hex), o(octal)\n\
736 d(decimal), a(ascii), n (none). hex is default\n\
805 case HEX:
  /external/cldr/tools/java/org/unicode/cldr/tool/
CLDRModify.java 94 static final UnicodeSet HEX = new UnicodeSet("[a-fA-F0-9]").freeze();
148 && HEX.containsAll(match);
183 throw new IllegalArgumentException("No path for hex id: " + exactMatch);
    [all...]
  /external/libaom/libaom/av1/encoder/
speed_features.h 90 HEX = 2,
209 // Motion search method (Diamond, NSTEP, Hex, Big Diamond, Square, etc).
  /external/libvpx/libvpx/vp9/encoder/
vp9_speed_features.h 56 HEX = 2,
184 // Motion search method (Diamond, NSTEP, Hex, Big Diamond, Square, etc).
  /external/v8/src/parsing/
scanner.h 245 // This error is specifically an invalid hex or unicode escape sequence.
535 HEX,
  /external/libvpx/libvpx/vp8/encoder/
onyx_int.h 157 typedef enum { DIAMOND = 0, NSTEP = 1, HEX = 2 } SEARCH_METHODS;
  /external/cldr/tools/java/org/unicode/cldr/icu/
LDMLConstants.java 207 public static final String HEX = "hex";
    [all...]
  /external/guice/lib/build/
bnd-0.0.384.jar 
  /external/grpc-grpc-java/core/
grpc-core-1.14.0.jar 

Completed in 795 milliseconds

1 2