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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/glx/tests/
enum_sizes.cpp 75 std::setw(4) << std::setfill('0') << std::hex << i;
107 std::setw(4) << std::setfill('0') << std::hex << i;
143 std::setw(4) << std::setfill('0') << std::hex << i;
169 std::setw(4) << std::setfill('0') << std::hex << i;
199 std::setw(4) << std::setfill('0') << std::hex << i;
301 std::setw(4) << std::setfill('0') << std::hex << i;
369 std::setw(4) << std::setfill('0') << std::hex << i;
391 std::setw(4) << std::setfill('0') << std::hex << i;
425 std::setw(4) << std::setfill('0') << std::hex << i;
459 std::setw(4) << std::setfill('0') << std::hex << i
    [all...]
  /external/mesa3d/src/glx/tests/
enum_sizes.cpp 75 std::setw(4) << std::setfill('0') << std::hex << i;
107 std::setw(4) << std::setfill('0') << std::hex << i;
143 std::setw(4) << std::setfill('0') << std::hex << i;
169 std::setw(4) << std::setfill('0') << std::hex << i;
199 std::setw(4) << std::setfill('0') << std::hex << i;
301 std::setw(4) << std::setfill('0') << std::hex << i;
369 std::setw(4) << std::setfill('0') << std::hex << i;
391 std::setw(4) << std::setfill('0') << std::hex << i;
425 std::setw(4) << std::setfill('0') << std::hex << i;
459 std::setw(4) << std::setfill('0') << std::hex << i
    [all...]
  /external/llvm/tools/llvm-readobj/
StreamWriter.h 75 HexNumber hex(T Value) { function in class:llvm::StreamWriter
93 startLine() << Label << ": " << Name << " (" << hex(Value) << ")\n";
95 startLine() << Label << ": " << hex(Value) << "\n";
120 startLine() << Label << " [ (" << hex(Value) << ")\n";
124 startLine() << " " << I->Name << " (" << hex(I->Value) << ")\n";
131 startLine() << Label << " [ (" << hex(Value) << ")\n";
136 startLine() << " " << hex(Flag) << "\n";
177 startLine() << Label << ": " << hex(Value) << "\n";
182 startLine() << Label << ": " << Str << " (" << hex(Value) << ")\n";
  /dalvik/vm/
Misc.cpp 34 * Print a hex dump in this format:
54 char* hex; local
74 hex = out;
78 *hex++ = gHexDigit[lineOffset >> 28];
81 hex++;
82 hex++;
90 hex += gap * 3;
95 *hex++ = gHexDigit[*addr >> 4];
96 *hex++ = gHexDigit[*addr & 0x0f];
97 hex++
    [all...]
  /external/chromium_org/media/audio/win/
audio_device_listener_win.cc 45 << std::hex << hr;
63 VLOG(1) << "Failed to retrieve the device id: " << std::hex << hr;
75 << "failed: " << std::hex << hr;
audio_low_latency_output_win.cc 291 << "Failed to start output streaming: " << std::hex << hr;
307 << "Failed to stop output streaming: " << std::hex << hr;
319 << "Failed to reset streaming: " << std::hex << hr;
394 << std::hex << hr;
454 << std::hex << hr;
495 << std::hex << hr;
571 VLOG(2) << "stream_flags: 0x" << std::hex << stream_flags;
620 VLOG(1) << "IAudioClient::SetEventHandle: " << std::hex << hr;
628 VLOG(1) << "IAudioClient::GetBufferSize: " << std::hex << hr;
  /external/chromium_org/win8/test/
metro_registration_helper.cc 89 LOG(ERROR) << std::hex << hr;
97 LOG(ERROR) << std::hex << hr;
128 LOG_IF(ERROR, FAILED(hr)) << std::hex << hr;
  /dalvik/dx/src/com/android/dx/command/dump/
BaseDumper.java 23 import com.android.dx.util.Hex;
56 /** number of bytes per line in hex dumps */
130 println("<dump skipped backwards to " + Hex.u4(offset) + ">");
133 String hex = rawBytes ? hexDump(at, offset - at) : ""; local
134 print(twoColumns(hex, "<skipped to " + Hex.u4(offset) + ">"));
138 String hex = rawBytes ? hexDump(offset, len) : ""; local
139 print(twoColumns(hex, human));
255 * Constructs a hex data dump of the given portion of {@link #bytes}.
262 return Hex.dump(bytes, offset, len, offset, hexCols, 4)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
inet_ntop.cc 42 output << std::hex << tuple;
  /external/chromium_org/remoting/host/win/
com_security.cc 60 << std::hex << result << std::dec << ".";
  /external/chromium_org/third_party/WebKit/Source/wtf/testing/
WTFTestHelpers.cpp 73 out.setf(std::ios_base::hex, std::ios_base::basefield);
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
numeric_lex.h 22 return std::ios::hex;
  /external/chromium_org/ui/gfx/test/
color_util.cc 17 stream << std::hex << std::uppercase << "#" << std::setfill('0')
  /external/zlib/src/test/
infcover.c 239 decodes liberally, in that hex digits can be adjacent, in which case two in
240 a row writes a byte. Or they can delimited by any non-hex character, where
241 the delimiters are ignored except when a single hex digit is followed by a
245 local unsigned char *h2b(const char *hex, unsigned *len)
250 in = malloc((strlen(hex) + 1) >> 1);
256 if (*hex >= '0' && *hex <= '9')
257 val = (val << 4) + *hex - '0';
258 else if (*hex >= 'A' && *hex <= 'F'
    [all...]
  /external/chromium_org/media/webm/
webm_audio_client.cc 83 MEDIA_LOG(log_cb_) << "Multiple values for id " << std::hex << id
112 MEDIA_LOG(log_cb_) << "Multiple values for id " << std::hex << id
  /external/icu4c/test/intltest/
tstnorm.cpp 323 errln("FAIL: " + hex(a) + " x DECOMP_COMPAT => " +
324 hex(b) + " x COMPOSE => " +
325 hex(c));
327 logln("Ok: " + hex(a) + " x DECOMP_COMPAT => " +
328 hex(b) + " x COMPOSE => " +
329 hex(c));
367 logln((UnicodeString)"Ok: " + hex(a) + " x COMPOSE_COMPAT => " + hex(b));
369 errln((UnicodeString)"FAIL: " + hex(a) + " x COMPOSE_COMPAT => " + hex(b)
486 UnicodeString BasicNormalizerTest::hex(UChar ch) { function in class:BasicNormalizerTest
491 UnicodeString BasicNormalizerTest::hex(const UnicodeString& s) { function in class:BasicNormalizerTest
    [all...]
  /libcore/json/src/main/java/org/json/
JSONTokener.java 249 String hex = in.substring(pos, pos + 4); local
251 return (char) Integer.parseInt(hex, 16);
594 * Returns the integer [0..15] value for the given hex character, or -1
595 * for non-hex input.
597 * @param hex a character in the ranges [0-9], [A-F] or [a-f]. Any other
600 public static int dehexchar(char hex) {
601 if (hex >= '0' && hex <= '9') {
602 return hex - '0';
603 } else if (hex >= 'A' && hex <= 'F')
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/
get_double.pass.cpp 92 hex(ios);
104 hex(ios);
116 hex(ios);
128 hex(ios);
140 hex(ios);
152 hex(ios);
164 hex(ios);
176 hex(ios);
get_long_double.pass.cpp 77 hex(ios);
89 hex(ios);
101 hex(ios);
113 hex(ios);
125 hex(ios);
137 hex(ios);
149 hex(ios);
161 hex(ios);
  /external/chromium_org/chrome/browser/resources/local_ntp/
instant_iframe_validation.js 12 * Converts an RGB color number to a hex color string if valid.
13 * @param {number} color A 6-digit hex RGB color code as a number.
18 // range for an RGB hex color.
  /external/chromium_org/third_party/icu/source/test/intltest/
tstnorm.cpp 322 errln("FAIL: " + hex(a) + " x DECOMP_COMPAT => " +
323 hex(b) + " x COMPOSE => " +
324 hex(c));
326 logln("Ok: " + hex(a) + " x DECOMP_COMPAT => " +
327 hex(b) + " x COMPOSE => " +
328 hex(c));
366 logln((UnicodeString)"Ok: " + hex(a) + " x COMPOSE_COMPAT => " + hex(b));
368 errln((UnicodeString)"FAIL: " + hex(a) + " x COMPOSE_COMPAT => " + hex(b)
485 UnicodeString BasicNormalizerTest::hex(UChar ch) { function in class:BasicNormalizerTest
490 UnicodeString BasicNormalizerTest::hex(const UnicodeString& s) { function in class:BasicNormalizerTest
    [all...]
  /external/tcpdump/
addrtoname.c 315 static char hex[] = "0123456789abcdef"; variable
494 *cp++ = hex[*ep >> 4 ];
495 *cp++ = hex[*ep++ & 0xf];
498 *cp++ = hex[*ep >> 4 ];
499 *cp++ = hex[*ep++ & 0xf];
528 *cp++ = hex[*ep >> 4];
529 *cp++ = hex[*ep++ & 0xf];
532 *cp++ = hex[*ep >> 4];
533 *cp++ = hex[*ep++ & 0xf];
556 *cp++ = hex[port >> 12 & 0xf]
    [all...]
  /dalvik/opcode-gen/
opcode-gen.awk 74 constName[i], hex[i]);
294 hex[idx] = parts[1];
458 # Convert a hex value to an int.
459 function parseHex(hex, result, chars, count, c, i) {
461 hex = tolower(hex);
462 count = split(hex, chars, "");
467 printf("bogus hex value: %s\n", hex) >"/dev/stderr";
  /external/chromium_org/net/third_party/nss/ssl/
ssltrace.c 15 static const char *hex = "0123456789abcdef"; variable
54 *bp++ = hex[(ch >> 4) & 0xf];
55 *bp++ = hex[ch & 0xf];
96 * b) It dumps only hex, not ASCII.
113 *bp++ = hex[(ch >> 4) & 0xf];
114 *bp++ = hex[ch & 0xf];
  /external/chromium_org/third_party/libxml/src/
genUnicode.py 332 pline += "{%s, %s}" % (hex(low), hex(high))
435 output.write("(code == %s)" % (hex(begin)))
438 hex(begin), hex(end)))

Completed in 1902 milliseconds

1 2 34 5 6 7 8 91011>>