HomeSort by relevance Sort by last modified time
    Searched refs:hex (Results 426 - 450 of 750) sorted by null

<<11121314151617181920>>

  /external/deqp/framework/common/
tcuFloatFormat.cpp 249 << std::hex << std::setw(numDigits) << std::setfill('0') << aligned
  /external/fonttools/Lib/fontTools/ttLib/tables/
M_E_T_A_.py 266 string = string + "&#x" + hex(i)[2:] + ";"
  /external/qemu-pc-bios/bochs/bios/
apmbios.S 66 ; print the hex number in eax
  /external/wpa_supplicant_8/src/wps/
wps_enrollee.c 274 char hex[65]; local
287 wpa_snprintf_hex(hex, sizeof(hex), psk, sizeof(psk));
290 wpabuf_put_data(msg, hex, sizeof(psk) * 2);
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config_file.c 639 char hex[32 * 2 + 1]; local
642 wpa_snprintf_hex(hex, sizeof(hex), psk->psk, sizeof(psk->psk));
644 psk->p2p ? "P2P-" : "", MAC2STR(psk->addr), hex);
    [all...]
  /hardware/libhardware/tests/camera2/
CameraStreamFixture.h 64 *os << "Format: 0x" << std::hex << p.mFormat << ", ";
  /art/disassembler/
disassembler_x86.cc 1242 std::stringstream hex; local
    [all...]
  /art/runtime/gc/space/
image_space.cc 105 LOG(WARNING) << "Unexpected file type of " << std::hex << de->d_type << " encountered.";
180 LOG(INFO) << "Using an offset of 0x" << std::hex << base_offset << " from default "
181 << "art base address of 0x" << std::hex << ART_BASE_ADDRESS;
    [all...]
  /bootable/recovery/applypatch/
applypatch.c 529 // Take a string 'str' of 40 hex digits and parse it into the 20
676 const char* hex = "0123456789abcdef"; local
678 putchar(hex[(sha1[i]>>4) & 0xf]);
679 putchar(hex[sha1[i] & 0xf]);
    [all...]
  /external/chromium_org/content/common/gpu/media/
dxva_video_decode_accelerator.cc 49 log << ", HRESULT: 0x" << std::hex << result, \
63 log << ", HRESULT: 0x" << std::hex << result, \
815 << std::hex << std::showbase << output_stream_info_.dwFlags;
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
regcoll.cpp 1151 errln(UnicodeString("Failed: Identical key\n") + " text1: " + text1[i] + "\n" + " text2: " + text2[i] + "\n" + " key : " + TestUtility::hex(key1, len1));
1153 logln(UnicodeString("Keys produced -\n") + " text1: " + text1[i] + "\n" + " key1 : " + TestUtility::hex(key1, len1) + "\n" + " text2: " + text2[i] + "\n" + " key2 : "
1154 + TestUtility::hex(key2, len2));
    [all...]
  /external/iproute2/ip/
ipl2tp.c 446 static int hex(char ch) function
463 c = hex(buf[j]);
469 c = hex(buf[j + 1]);
505 fprintf(stderr, " HEXSTR := { 8 or 16 hex digits (4 / 8 bytes) }\n");
593 invarg("cookie must be either 8 or 16 hex digits\n", *argv);
597 invarg("cookie must be a hex string\n", *argv);
603 invarg("cookie must be either 8 or 16 hex digits\n", *argv);
607 invarg("cookie must be a hex string\n", *argv);
  /external/pdfium/core/src/fxge/ge/
fx_ge_ps.cpp 638 CFX_ByteString hex; local
639 hex.Format("<%02X>", ps_glyphindex);
640 buf << hex << FX_BSTRC("Tj\n");
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
mcomp.c 865 MV hex[6] = { { -1, -2}, {1, -2}, {2, 0}, {1, 2}, { -1, 2}, { -2, 0} } ; local
916 /* hex search */
923 this_mv.as_mv.row = br + hex[i].row;
924 this_mv.as_mv.col = bc + hex[i].col;
933 this_mv.as_mv.row = br + hex[i].row;
934 this_mv.as_mv.col = bc + hex[i].col;
946 br += hex[best_site].row;
947 bc += hex[best_site].col;
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
mcomp.c 864 MV hex[6] = { { -1, -2}, {1, -2}, {2, 0}, {1, 2}, { -1, 2}, { -2, 0} } ; local
915 /* hex search */
922 this_mv.as_mv.row = br + hex[i].row;
923 this_mv.as_mv.col = bc + hex[i].col;
932 this_mv.as_mv.row = br + hex[i].row;
933 this_mv.as_mv.col = bc + hex[i].col;
945 br += hex[best_site].row;
946 bc += hex[best_site].col;
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
mcomp.c 864 MV hex[6] = { { -1, -2}, {1, -2}, {2, 0}, {1, 2}, { -1, 2}, { -2, 0} } ; local
917 /* hex search */
924 this_mv.as_mv.row = br + hex[i].row;
925 this_mv.as_mv.col = bc + hex[i].col;
934 this_mv.as_mv.row = br + hex[i].row;
935 this_mv.as_mv.col = bc + hex[i].col;
947 br += hex[best_site].row;
948 bc += hex[best_site].col;
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
csharp.swg 19 static const char hex[17] = "0123456789abcdef";
24 *(c++) = hex[(uu & 0xf0) >> 4];
25 *(c++) = hex[uu & 0xf];
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/java/
java.swg 18 static const char hex[17] = "0123456789abcdef";
23 *(c++) = hex[(uu & 0xf0) >> 4];
24 *(c++) = hex[uu & 0xf];
    [all...]
  /art/compiler/dex/quick/arm64/
assemble_arm64.cc     [all...]
  /external/android-clat/
clatd_test.cpp 376 // Hex dump, 20 bytes per line, one space between bytes (1 byte = 3 chars), indented by 4.
657 << std::showbase << std::hex
678 << std::showbase << std::hex
    [all...]
  /external/icu/icu4c/source/test/intltest/
regcoll.cpp     [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtils.java 1100 final String hex = "0123456789ABCDEF"; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pickle.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pickle.py     [all...]
  /art/compiler/optimizing/
code_generator.cc 295 CHECK(references != NULL) << "Missing ref for dex pc 0x" << std::hex << dex_pc;

Completed in 1535 milliseconds

<<11121314151617181920>>