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

1 2

  /external/icu/icu4c/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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
DisplayRadix.java 20 DECIMAL, HEX
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
UnicodeLabel.java 39 private static class Hex extends UnicodeLabel {
41 if (isShort) return Utility.hex(codepoint,4);
42 return "U+" + Utility.hex(codepoint,4);
60 public static final UnicodeLabel HEX = new Hex();
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
UnicodeLabel.java 38 private static class Hex extends UnicodeLabel {
40 if (isShort) return Utility.hex(codepoint,4);
41 return "U+" + Utility.hex(codepoint,4);
59 public static final UnicodeLabel HEX = new Hex();
  /prebuilts/gdb/darwin-x86/lib/python2.7/
quopri.py 11 HEX = '0123456789ABCDEF'
38 return ESCAPE + HEX[i//16] + HEX[i%16]
  /prebuilts/gdb/linux-x86/lib/python2.7/
quopri.py 11 HEX = '0123456789ABCDEF'
38 return ESCAPE + HEX[i//16] + HEX[i%16]
  /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/ipsec-tools/src/racoon/
prsa_par.h 43 HEX = 259,
67 #define HEX 259
  /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] : '!';
  /toolchain/binutils/binutils-2.25/bfd/
verilog.c 1 /* BFD back-end for verilog hex memory dump files.
24 Verilog hex memory file handling
28 Verilog hex memory files cannot hold anything but addresses
61 /* Macros for converting between hex and binary. */
66 #define HEX(buffer) ((NIBBLE ((buffer)[0])<<4) + NIBBLE ((buffer)[1]))
259 /* Initialize by filling in the hex conversion array. */
srec.c 111 /* Macros for converting between hex and binary. */
116 #define HEX(buffer) ((NIBBLE ((buffer)[0])<<4) + NIBBLE ((buffer)[1]))
176 /* Initialize by filling in the hex conversion array. */
412 /* Skip a dollar sign before the hex value. */
478 check_sum = bytes = HEX (hdr + 1);
520 check_sum += HEX (data);
521 address = HEX (data);
526 check_sum += HEX (data);
527 address = (address << 8) | HEX (data);
532 check_sum += HEX (data)
    [all...]
tekhex.c 1 /* BFD backend for Extended Tektronix Hex Format objects.
24 Tektronix Hex Format handling
28 Tek Hex records can hold symbols and data, but not
37 Tex Hex may contain many sections, but the data which comes in
92 #define HEX(buffer) ((NIBBLE ((buffer)[0]) << 4) + NIBBLE ((buffer)[1]))
376 insert_byte (abfd, HEX (src), addr);
532 chars_on_line = HEX (src) - 5;
590 for a percent sign and some hex digits. */
  /external/icu/android_icu4j/src/main/java/android/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/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
PatternTokenizer.java 226 result.append("\\u").append(Utility.hex(cp,4));
228 result.append("\\U").append(Utility.hex(cp,8));
253 private static final int AFTER_QUOTE = -1, NONE = 0, START_QUOTE = 1, NORMAL_QUOTE = 2, SLASH_START = 3, HEX = 4;
271 quoteStatus = HEX;
276 quoteStatus = HEX;
291 case HEX:
371 case HEX:
  /external/e2fsprogs/ext2ed/
ext2ed.h 70 #define HEX 1
367 #define HEX 1
  /external/v8/src/parsing/
scanner.cc 958 enum { DECIMAL, HEX, OCTAL, IMPLICIT_OCTAL, BINARY } kind = DECIMAL;
968 // if the first character is '0' we must check for octals and hex
973 // either 0, 0exxx, 0Exxx, 0.xxx, a hex number, a binary number or
976 // hex number
977 kind = HEX;
980 // we must have at least one hex digit after 'x'/'X'
1058 DCHECK(kind != HEX); // 'e'/'E' must be scanned as part of the hex number
1096 // hex digits between { } is arbitrary. \ and u have already been read.
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_speed_features.h 23 HEX = 2,
120 // Motion search method (Diamond, NSTEP, Hex, Big Diamond, Square, etc).
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfwprintf.c 303 * F: at least two digits for decimal, at least one digit for hex
322 enum { OCT, DEC, HEX } base; /* base for %[diouxX] conversion */
810 base = HEX;
860 goto hex;
863 hex: _umax = UARG();
864 base = HEX;
911 case HEX:
    [all...]
vfprintf.c 296 * F: at least two digits for decimal, at least one digit for hex
315 enum { OCT, DEC, HEX } base; /* base for %[diouxX] conversion */
848 base = HEX;
900 goto hex;
903 hex: _umax = UARG();
904 base = HEX;
951 case HEX:
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_speed_features.h 64 HEX = 2,
171 // Motion search method (Diamond, NSTEP, Hex, Big Diamond, Square, etc).
  /toolchain/binutils/binutils-2.25/include/opcode/
m88k.h 34 * hex constant, and bit field specification. The last field is a
386 HEX = 1,
  /external/libvpx/libvpx/vp8/encoder/
onyx_int.h 173 HEX = 2
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
onyx_int.h 176 HEX = 2

Completed in 967 milliseconds

1 2