HomeSort by relevance Sort by last modified time
    Searched refs:hex (Results 251 - 275 of 745) sorted by null

<<11121314151617181920>>

  /external/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/
get_long_long.pass.cpp 82 hex(ios);
  /external/lldb/source/Plugins/Process/POSIX/
ProcessMessage.cpp 21 ss << " (fault address: 0x" << std::hex << addr << ")";
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpConnection.java 316 /** Scratch space for up to 16 hex digits, and then a constant CRLF. */
317 private final byte[] hex = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '\r', '\n' }; field in class:HttpConnection.ChunkedSink
353 hex[--cursor] = HEX_DIGITS[((int) (i & 0xf))];
355 sink.write(hex, cursor, hex.length - cursor);
518 throw new ProtocolException("Expected a hex chunk size but was " + chunkSizeString);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
RequestTest.java 79 return buffer.readByteString(buffer.size()).hex();
  /external/sfntly/cpp/src/sample/chromium/
chrome_subsetter.cc 31 ss << std::hex << in;
102 fprintf(stderr, "\tGlyph ids are comma separated hex values\n");
  /external/skia/tools/
generate_fir_coeff.py 118 print sum(coeffs), hex(sum(coeffs_rounded))
  /external/srtp/crypto/math/
datatypes.c 112 /* double length, since one octet takes two hex characters */
172 hex_string_to_octet_string(char *raw, char *hex, int len) {
179 tmp = hex_char_to_nibble(hex[0]);
184 tmp = hex_char_to_nibble(hex[1]);
190 hex += 2;
  /frameworks/compile/mclinker/lib/LD/
Relocator.cpp 66 ss << "0x" << std::hex << undef_sym_pos;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/
get_long_long.pass.cpp 82 hex(ios);
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
perlkw.swg 17 PERLBN(hex);
44 PERLBN(hex);
  /art/runtime/
fault_handler.cc 270 VLOG(signals) << "looking for dex pc for return pc " << std::hex << return_pc;
273 VLOG(signals) << "pc offset: " << std::hex << sought_offset;
  /external/chromium_org/media/formats/webm/
webm_parser.cc 506 DVLOG(3) << "WebMParseElementHeader() : id " << std::hex << *id << std::dec
658 DVLOG(1) << "Unexpected list element start with ID " << std::hex << id;
663 DVLOG(1) << "Unexpected list element end with ID " << std::hex << id;
668 DVLOG(1) << "Unexpected unsigned integer element with ID " << std::hex << id;
673 DVLOG(1) << "Unexpected float element with ID " << std::hex << id;
678 DVLOG(1) << "Unexpected binary element with ID " << std::hex << id;
683 DVLOG(1) << "Unexpected string element with ID " << std::hex << id;
811 DVLOG(1) << "No ElementType info for ID 0x" << std::hex << id;
  /external/chromium_org/third_party/codesighs/
readelf_wrap.pl 182 my $diff = hex($section->[$SECT_SIZE]) - $section_sizes[$section->[$SECT_NUM]];
  /external/chromium_org/third_party/sqlite/src/tool/
restore_jrnl.tcl 104 # Print journal page data in hex dump form
123 # now hex dump the data
134 # Convert the data to hex and to characters.
135 binary scan $s H*@0a* hex ascii
141 regexp -- {(.{16})(.{0,16})} $hex -> hex1 hex2
143 # Convert the hex to pairs of hex digits
147 # Print the hex and ascii data
  /external/chromium_org/v8/test/preparser/
non-use-strict-hex-escape.js 28 // A string looking like "use strict", but with a hex escape in it,
non-use-strict-uhex-escape.js 28 // A string looking like "use strict", but with a long hex escape in it,
  /external/chromium_org/v8/test/webkit/fast/js/kde/
literals.js 29 // hex (non-normative)
  /external/deqp/framework/common/
tcuFormatUtil.hpp 39 class Hex
42 Hex (deUint64 value_) : value(value_) {}
67 std::ostream& operator<< (std::ostream& stream, tcu::Format::Hex<NumDigits> hex)
69 return hex.toStream(stream);
114 stream << Hex<BitfieldSize/4>(bitsLeft);
152 return stream << Hex<sizeof(int)*2>(m_value);
161 return Hex<sizeof(int)*2>(m_value).toString();
216 // Hex format iterator (useful for combining with ArrayFormatter).
233 Hex<sizeof(T)*2> operator* (void) const { return Hex<sizeof(T)*2>(*m_iter);
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
util.c 173 static int hex(char ch) function
185 * While we find nice hex chars, build a long_val.
194 const int hex_val = hex(*p);
  /external/valgrind/main/coregrind/m_gdbserver/
server.h 302 int unhexify (char *bin, const char *hex, int count);
303 int hexify (char *hex, const char *bin, int count);
362 /* Max size of a string encoded in a packet. Hex Encoding can
  /hardware/invensense/6515/libsensors_iio/
MPLSupport.cpp 176 void convert_long_to_hex_char(long* quat, unsigned char* hex, int numElement)
181 hex[bytePosition] = (int) ((quat[index] >> (4-1-i) * 8) & 0xFF);
182 //LOGI("e%d quat[%d]: %x", index, bytePosition, hex[bytePosition]);
  /hardware/invensense/65xx/libsensors_iio/
MPLSupport.cpp 176 void convert_long_to_hex_char(long* quat, unsigned char* hex, int numElement)
181 hex[bytePosition] = (int) ((quat[index] >> (4-1-i) * 8) & 0xFF);
182 //LOGI("e%d quat[%d]: %x", index, bytePosition, hex[bytePosition]);
  /prebuilts/misc/common/swig/include/2.0.11/python/
pythonkw.swg 75 PYTHONBN(hex);
  /external/chromium_org/media/formats/mp4/
mp4_stream_parser.cc 220 << std::hex << entry.format << " in stsd box.";
225 DVLOG(1) << "audio_type " << std::hex << static_cast<int>(audio_type);
227 MEDIA_LOG(log_cb_) << "audio object type 0x" << std::hex << audio_type
247 MEDIA_LOG(log_cb_) << "Unsupported audio object type 0x" << std::hex
282 << std::hex << entry.format << " in stsd box.";
  /external/chromium_org/third_party/icu/source/test/cintltst/
utransts.c 266 "Any-Hex",
267 "Hex-Any"
505 UTransliterator* hex = utrans_open("Any-Hex", UTRANS_FORWARD, NULL,0,NULL,&status); local
507 if (hex == 0 || U_FAILURE(status)) {
508 log_err("FAIL: utrans_open(Unicode-Hex) failed, error=%s\n",
516 utrans_setFilter(hex, filt, -1, &status);
527 utrans_transUChars(hex, buf, NULL, 128, 0, &limit, &status);
545 utrans_close(hex);

Completed in 5044 milliseconds

<<11121314151617181920>>