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

<<11121314151617181920>>

  /external/icu/icu4c/source/test/cintltst/
utransts.c 269 "Any-Hex",
270 "Hex-Any"
508 UTransliterator* hex = utrans_open("Any-Hex", UTRANS_FORWARD, NULL,0,NULL,&status); local
510 if (hex == 0 || U_FAILURE(status)) {
511 log_err("FAIL: utrans_open(Unicode-Hex) failed, error=%s\n",
519 utrans_setFilter(hex, filt, -1, &status);
530 utrans_transUChars(hex, buf, NULL, 128, 0, &limit, &status);
548 utrans_close(hex);
  /external/wpa_supplicant_8/src/utils/
common.c 26 int hex2byte(const char *hex)
29 a = hex2num(*hex++);
32 b = hex2num(*hex++);
122 * hexstr2bin - Convert ASCII hex string into binary data
123 * @hex: ASCII hex string (e.g., "01ab")
125 * @len: Length of the text to convert in bytes (of buf); hex will be double
127 * Returns: 0 on success, -1 on failure (invalid hex string)
129 int hexstr2bin(const char *hex, u8 *buf, size_t len)
133 const char *ipos = hex;
    [all...]
  /art/compiler/
elf_writer_quick.cc 258 LOG(INFO) << "phdr_offset=" << phdr_offset << std::hex << " " << phdr_offset;
259 LOG(INFO) << "phdr_size=" << phdr_size << std::hex << " " << phdr_size;
301 << std::hex << " " << dynstr.size();
303 << std::hex << " " << dynsym_builder_.GetSize();
312 << std::hex << " " << strtab.size();
314 << std::hex << " " << symtab_builder_.GetSize();
388 << std::hex << " " << shstrtab.size();
390 << std::hex << " " << section_ptrs.size();
398 << std::hex << " " << hash.size() * sizeof(Elf32_Word);
    [all...]
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 595 String hex = Integer.toHexString(0xFF & bytes[i]); local
596 if (hex.length() == 1) {
599 sb.append(hex);
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 595 String hex = Integer.toHexString(0xFF & bytes[i]); local
596 if (hex.length() == 1) {
599 sb.append(hex);
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageCache.java 595 String hex = Integer.toHexString(0xFF & bytes[i]); local
596 if (hex.length() == 1) {
599 sb.append(hex);
  /external/chromium_org/native_client_sdk/src/examples/demo/drive/
drive.cc 37 char hex[] = "0123456789ABCDEF"; local
45 result += hex[(c >> 4) & 0xf];
46 result += hex[c & 0xf];
  /external/chromium_org/remoting/host/win/
rdp_client_window.cc 222 << ", result=0x" << std::hex << result << std::dec;
375 << std::hex << result << std::dec;
524 LOG(WARNING) << "RDP: closing a window: " << std::hex << window << std::dec;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer.cc 60 // "\\\\x[0-9a-fA-F])*\"|" // hex escape
369 AddError("Expected hex digits for escape sequence.");
371 // Possibly followed by another hex digit, but again we don't care.
377 AddError("Expected four hex digits for \\u escape sequence.");
380 // We expect 8 hex digits; but only the range up to 0x10ffff is
390 AddError("Expected eight hex digits up to 10ffff for \\U escape "
416 // A hex number (started with "0x").
417 ConsumeOneOrMore<HexDigit>("\"0x\" must be followed by hex digits.");
459 AddError("Hex and octal numbers must be integers.");
846 // This is hex
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
code-reading.c 28 static unsigned int hex(char c) function
58 /* Get 2 hex digits */
69 *(unsigned char *)*buf = (hex(c1) << 4) | hex(c2);
  /external/ppp/pppd/plugins/radius/
avpair.c 164 unsigned char hex[3]; /* For hex string conversion. */ local
199 sprintf (hex, "%2.2X", *x_ptr);
200 strcat (buffer, hex);
  /libcore/luni/src/main/java/java/util/
Properties.java 135 String hex = Integer.toHexString(ch); local
137 for (int j = 0; j < 4 - hex.length(); j++) {
140 buffer.append(hex);
  /packages/apps/OMA-DM/engine/dmlib/tool-src/db_wizard_tool/com/mot/dm/dbtool/
Util.java 411 //carrier name... replace unicode to hex if required.
414 String hex = ""; local
425 hex += tmpHex;
428 tmp = (hexRequired) ? hex.replaceAll(" ", "_") : tmp.replaceAll(" ", "_"); //carrier name...
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
ios_base.h 241 * - hex
269 static const fmtflags hex = _S_hex; member in class:ios_base
314 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
941 /// Calls base.setf(ios_base::hex, ios_base::basefield).
943 hex(ios_base& __base) function
945 __base.setf(ios_base::hex, ios_base::basefield);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
ios_base.h 239 * - hex
267 static const fmtflags hex = _S_hex; member in class:ios_base
312 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
939 /// Calls base.setf(ios_base::hex, ios_base::basefield).
941 hex(ios_base& __base) function
943 __base.setf(ios_base::hex, ios_base::basefield);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
ios_base.h 239 * - hex
267 static const fmtflags hex = _S_hex; member in class:ios_base
312 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
939 /// Calls base.setf(ios_base::hex, ios_base::basefield).
941 hex(ios_base& __base) function
943 __base.setf(ios_base::hex, ios_base::basefield);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
ios_base.h 247 * - hex
275 static const fmtflags hex = _S_hex; member in class:ios_base
320 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
943 /// Calls base.setf(ios_base::hex, ios_base::basefield).
945 hex(ios_base& __base) function
947 __base.setf(ios_base::hex, ios_base::basefield);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
ios_base.h 247 * - hex
275 static const fmtflags hex = _S_hex; member in class:ios_base
320 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
943 /// Calls base.setf(ios_base::hex, ios_base::basefield).
945 hex(ios_base& __base) function
947 __base.setf(ios_base::hex, ios_base::basefield);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
ios_base.h 247 * - hex
275 static const fmtflags hex = _S_hex; member in class:ios_base
320 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
943 /// Calls base.setf(ios_base::hex, ios_base::basefield).
945 hex(ios_base& __base) function
947 __base.setf(ios_base::hex, ios_base::basefield);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
ios_base.h 247 * - hex
275 static const fmtflags hex = _S_hex; member in class:ios_base
320 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
943 /// Calls base.setf(ios_base::hex, ios_base::basefield).
945 hex(ios_base& __base) function
947 __base.setf(ios_base::hex, ios_base::basefield);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
ios_base.h 241 * - hex
269 static const fmtflags hex = _S_hex; member in class:ios_base
314 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
941 /// Calls base.setf(ios_base::hex, ios_base::basefield).
943 hex(ios_base& __base) function
945 __base.setf(ios_base::hex, ios_base::basefield);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
ios_base.h 241 * - hex
269 static const fmtflags hex = _S_hex; member in class:ios_base
314 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
941 /// Calls base.setf(ios_base::hex, ios_base::basefield).
943 hex(ios_base& __base) function
945 __base.setf(ios_base::hex, ios_base::basefield);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
ios_base.h 241 * - hex
269 static const fmtflags hex = _S_hex; member in class:ios_base
314 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
941 /// Calls base.setf(ios_base::hex, ios_base::basefield).
943 hex(ios_base& __base) function
945 __base.setf(ios_base::hex, ios_base::basefield);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
ios_base.h 241 * - hex
269 static const fmtflags hex = _S_hex; member in class:ios_base
314 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
941 /// Calls base.setf(ios_base::hex, ios_base::basefield).
943 hex(ios_base& __base) function
945 __base.setf(ios_base::hex, ios_base::basefield);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
ios_base.h 239 * - hex
267 static const fmtflags hex = _S_hex; member in class:ios_base
312 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
939 /// Calls base.setf(ios_base::hex, ios_base::basefield).
941 hex(ios_base& __base) function
943 __base.setf(ios_base::hex, ios_base::basefield);

Completed in 1153 milliseconds

<<11121314151617181920>>