HomeSort by relevance Sort by last modified time
    Searched defs:hex (Results 76 - 100 of 856) sorted by null

1 2 34 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/command/dump/
BaseDumper.java 24 import com.android.dx.util.Hex;
57 /** number of bytes per line in hex dumps */
137 String hex = rawBytes ? hexDump(offset, len) : ""; local
138 print(twoColumns(hex, human));
245 * Constructs a hex data dump of the given portion of {@link #bytes}.
252 return Hex.dump(bytes, offset, len, offset, hexCols, 4);
  /device/google/contexthub/contexthubhal/
nanohubhal.cpp 60 os << vendor << ", " << std::hex << std::setw(6) << seqId;
62 os << "#" << std::hex << appId.id;
74 os << "; EVT=" << std::hex << evtId;
76 os << "; EPT=" << std::hex << endpoint;
77 os << "]:" << std::hex; member in class:android::nanohub::std
  /device/google/contexthub/contexthubhal/test/
main.cpp 36 os << vendor << ", " << std::hex << std::setw(6) << seqId;
38 os << "#" << std::hex << appId.id;
49 os << "; EVT=" << std::hex << evtId;
50 os << "]:" << std::hex; member in class:std
258 // ignore any garbage after parsed hex value;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
uuid.py 31 # make a UUID from a string of hex digits (braces and hyphens ignored)
34 # convert a UUID to a string of hex digits in standard form
88 hex the UUID as a 32-character hexadecimal string
101 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,
109 argument. When a string of hex digits is given, curly braces,
122 Exactly one of 'hex', 'bytes', 'bytes_le', 'fields', or 'int' must
125 overriding the given 'hex', 'bytes', 'bytes_le', 'fields', or 'int'.
128 if [hex, bytes, bytes_le, fields, int].count(None) != 4:
129 raise TypeError('need one of hex, bytes, bytes_le, fields, or int')
130 if hex is not None:
268 hex = property(get_hex) variable in class:UUID
    [all...]
  /external/ImageMagick/Magick++/lib/
Statistic.cpp 150 hex; local
155 if (sscanf(hash_.substr(i*5,5).c_str(),"%05x",&hex) != 1)
158 value=((unsigned short)hex) / pow(10.0, (double)(hex >> 17));
159 if (hex & (1 << 16))
192 hex; local
199 hex=0;
200 while(hex < 7 && fabs(value*10) < 65536)
203 hex++;
206 hex=(hex<<1)
    [all...]
  /external/boringssl/src/crypto/bn_extra/
convert.c 113 // decode_hex decodes |in_len| bytes of hex data from |in| and updates |bn|.
119 // |in_len| is the number of hex digits.
137 BN_ULONG hex; local
139 hex = c - '0';
141 hex = c - 'a' + 10;
143 hex = c - 'A' + 10;
145 hex = 0;
149 word = (word << 4) | hex;
210 // in is the start of the hex digits, and it is 'i' long
  /external/deqp/external/vulkancts/modules/vulkan/robustness/
vktRobustnessUtil.cpp 209 logMsg << std::hex; member in class:vkt::robustness::std
  /external/flatbuffers/grpc/src/compiler/
cpp_generator.cc 68 static char hex[] = "0123456789abcdef"; local
70 result.push_back(hex[(c >> 4) & 0xf]);
71 result.push_back(hex[c & 0xf]);
    [all...]
  /external/gptfdisk/
gptpart.cc 46 // Return the gdisk-specific two-byte hex code for the partition
314 cout << hex << partitionType.GetHexType() << " " << dec;
383 cout << hex; local
440 cout << "Hex code or GUID (L to show codes, Enter = " << hex << DEFAULT_GPT_TYPE << dec << "): ";
  /external/honggfuzz/libcommon/
util.c 348 char hex[] = {s[i + 1], s[i + 2], 0}; local
349 s[o] = strtoul(hex, NULL, 16);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
ConformanceTest.java 337 +Utility.hex(s1) + " s2: " + Utility.hex(s2));
343 +Utility.hex(s1) + " s2: " + Utility.hex(s2));
350 +Utility.hex(s1) + " s2: " + Utility.hex(s2));
357 errln("cross test failed s1: " + Utility.hex(s1) + " s2: "
358 +Utility.hex(s2));
432 errln((" " + msg + ": " + op + op2 + '(' + s + ")=" + hex(got) +
433 ", exp. " + hex(exp)))
487 int hex = Integer.parseInt(strToHex,16); local
    [all...]
NormalizerBuilder.java 106 //System.out.println("Excluding " + hex(value));
183 "\"\\u" + hex((char)value) + "\", "
184 + "\"\\u" + hex(decomp, "\\u") + "\", "
442 * Utility: Parses a sequence of hex Unicode characters separated by spaces
477 throw new IllegalArgumentException("Bad hex value in " + source);
484 * Utility: Supplies a zero-padded hex representation of an integer (without 0x)
486 static public String hex(int i) { method in class:NormalizerBuilder
492 * Utility: Supplies a zero-padded hex representation of a Unicode character (without 0x, \\u)
494 static public String hex(char i) { method in class:NormalizerBuilder
500 * Utility: Supplies a zero-padded hex representation of a Unicode character (without 0x, \\u
502 public static String hex(String s, String sep) { method in class:NormalizerBuilder
506 result.append(hex(s.charAt(i))); method
    [all...]
UnicodeNormalizerConformanceTest.java 193 errln((" " + msg + ") " + op + "(" + s + ")=" + hex(got) +
194 ", exp. " + hex(exp)));
200 * character. Then, parse the resultant fields from hex into
248 int hex = Integer.parseInt(strToHex,16); local
249 if (hex < 0 ) {
250 throw new IllegalArgumentException("Out of range hex " +
251 hex + " in " + s);
252 }else if (hex > 0xFFFF){
253 buf.append((char)((hex>>10)+0xd7c0));
254 buf.append((char)((hex&0x3ff)|0xdc00))
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
ConformanceTest.java 334 +Utility.hex(s1) + " s2: " + Utility.hex(s2));
340 +Utility.hex(s1) + " s2: " + Utility.hex(s2));
347 +Utility.hex(s1) + " s2: " + Utility.hex(s2));
354 errln("cross test failed s1: " + Utility.hex(s1) + " s2: "
355 +Utility.hex(s2));
429 errln((" " + msg + ": " + op + op2 + '(' + s + ")=" + hex(got) +
430 ", exp. " + hex(exp)))
484 int hex = Integer.parseInt(strToHex,16); local
    [all...]
NormalizerBuilder.java 105 //System.out.println("Excluding " + hex(value));
182 "\"\\u" + hex((char)value) + "\", "
183 + "\"\\u" + hex(decomp, "\\u") + "\", "
441 * Utility: Parses a sequence of hex Unicode characters separated by spaces
476 throw new IllegalArgumentException("Bad hex value in " + source);
483 * Utility: Supplies a zero-padded hex representation of an integer (without 0x)
485 static public String hex(int i) { method in class:NormalizerBuilder
491 * Utility: Supplies a zero-padded hex representation of a Unicode character (without 0x, \\u)
493 static public String hex(char i) { method in class:NormalizerBuilder
499 * Utility: Supplies a zero-padded hex representation of a Unicode character (without 0x, \\u
501 public static String hex(String s, String sep) { method in class:NormalizerBuilder
505 result.append(hex(s.charAt(i))); method
    [all...]
UnicodeNormalizerConformanceTest.java 190 errln((" " + msg + ") " + op + "(" + s + ")=" + hex(got) +
191 ", exp. " + hex(exp)));
197 * character. Then, parse the resultant fields from hex into
245 int hex = Integer.parseInt(strToHex,16); local
246 if (hex < 0 ) {
247 throw new IllegalArgumentException("Out of range hex " +
248 hex + " in " + s);
249 }else if (hex > 0xFFFF){
250 buf.append((char)((hex>>10)+0xd7c0));
251 buf.append((char)((hex&0x3ff)|0xdc00))
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
CanonicalCharacterData.java 93 System.out.println(Utility.hex(character, 6) + " - " + count + ":");
104 System.out.print(Utility.hex(UTF16.charAt(equiv, c), 6));
ClassTable.java 111 System.out.print(Utility.hex(startGlyphID, 6));
113 System.out.print(Utility.hex(endGlyphID, 6));
LigatureTree.java 84 result.append(Utility.hex(chars[i], 6));
87 result.append(" => " + Utility.hex(chars[len], 6));
100 ": already have " + Utility.hex(ligature, 6));
177 w.write(Utility.hex(target, 6));
183 w.write(Utility.hex(ligature, 6));
LigatureTreeWalker.java 113 System.out.print(Utility.hex(firstComponentChar(set), 6) + ": ");
  /external/libcups/filter/
rastertolabel.c 744 static const unsigned char *hex = (const unsigned char *)"0123456789ABCDEF"; local
745 /* Hex digits */
813 * Convert the line to hex digits...
820 *compptr++ = hex[*ptr >> 4];
821 *compptr++ = hex[*ptr & 15];
  /external/libese/libese-teq1/tests/
teq1_unittests.cpp 383 static constexpr char hex[] = "0123456789ABCDEF"; local
387 out.push_back(hex[c / 16]);
388 out.push_back(hex[c % 16]);
  /external/libxkbcommon/xkbcommon/src/
scanner-utils.h 183 hex(struct scanner *s, uint8_t *out) function
  /external/llvm/include/llvm/Support/
ScopedPrinter.h 91 template <typename T> HexNumber hex(T Value) { return HexNumber(Value); } function in class:llvm::ScopedPrinter
107 startLine() << Label << ": " << Name << " (" << hex(Value) << ")\n";
109 startLine() << Label << ": " << hex(Value) << "\n";
141 startLine() << Label << " [ (" << hex(Value) << ")\n";
143 startLine() << " " << Flag.Name << " (" << hex(Flag.Value) << ")\n";
149 startLine() << Label << " [ (" << hex(Value) << ")\n";
154 startLine() << " " << hex(Flag) << "\n";
238 OS << hex(Item);
245 startLine() << Label << ": " << hex(Value) << "\n";
249 startLine() << Label << ": " << Str << " (" << hex(Value) << ")\n"
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
PropIDUtils.cpp 558 char hex[16]; local
559 ConvertUInt32ToHex8Digits(tag, hex);
560 s.AddAscii(hex);

Completed in 1382 milliseconds

1 2 34 5 6 7 8 91011>>