/external/iproute2/tc/ |
em_canid.c | 162 fprintf(fd, "eff 0x%"PRIX32, 165 fprintf(fd, "eff 0x%"PRIX32":0x%"PRIX32, 170 fprintf(fd, "sff 0x%"PRIX32, 173 fprintf(fd, "sff 0x%"PRIX32":0x%"PRIX32,
|
/external/capstone/include/ |
platform.h | 82 #define PRIx32 "lx" 83 #define PRIX32 "lX" 89 #define PRIx32 "x" 90 #define PRIX32 "X"
|
/external/clang/lib/Headers/ |
inttypes.h | 33 /* MSVC headers define int32_t as int, but PRIx32 as "lx" instead of "x". 47 #undef PRIx32 50 #undef PRIX32 82 #define PRIx32 "x" 85 #define PRIX32 "X"
|
/external/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/Support/ |
DataTypes.h | 114 #define PRIx32 "x" 115 #define PRIX32 "X"
|
/external/swiftshader/third_party/llvm-subzero/build/Fuchsia/include/llvm/Support/ |
DataTypes.h | 114 #define PRIx32 "x" 115 #define PRIX32 "X"
|
/external/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/Support/ |
DataTypes.h | 114 #define PRIx32 "x" 115 #define PRIX32 "X"
|
/external/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/Support/ |
DataTypes.h | 114 #define PRIx32 "x" 115 #define PRIX32 "X"
|
/device/google/contexthub/util/nanoapp_postprocess/ |
postprocess_elf.c | 145 fprintf(stderr, "SortedReloc[%3" PRIu32 "] = {0x%08" PRIX32 ",0x%02" PRIX8 "}\n", i, nanoRelocs[i].ofstInRam, nanoRelocs[i].type); 182 fprintf(stderr, "Out: Reloc0 x%" PRIX32 "\n", j); 194 fprintf(stderr, "Out: Reloc8 0x%02" PRIX32 "\n", displacement); 199 fprintf(stderr, "Out: Reloc16 0x%06" PRIX32 "\n", displacement); 207 fprintf(stderr, "Out: Reloc24 0x%08" PRIX32 "\n", displacement); 216 fprintf(stderr, "Out: Reloc32 0x%08" PRIX32 "\n", displacement); 317 fprintf(stderr, "Magic value is wrong: found %08" PRIX32 318 "; expected %08" PRIX32 "\n", 363 " Where: 0x%08" PRIX32 "\n" 373 fprintf(stderr, "Reloc[%3" PRIu32 "]:\n {@0x%08" PRIX32 ", type %3" PRIu32 ", -> sym[%3" PRIu32 "]: {@0x%08" PRIX32 "}, " [all...] |
postprocess.c | 147 DBG("SortedReloc[%3zu] = {0x%08" PRIX32 ",0x%02" PRIX8 "}", i, app->nanoReloc[i].ofstInRam, app->nanoReloc[i].type); 204 DBG("Out: Reloc8 [size 1] 0x%02" PRIX32, displacement); 208 DBG("Out: Reloc16 [size 3] 0x%06" PRIX32, displacement); 215 DBG("Out: Reloc24 [size 4] 0x%08" PRIX32, displacement); 223 DBG("Out: Reloc32 [size 5] 0x%08" PRIX32, displacement); 319 DBG("Fixup addr 0x%08" PRIX32 " (RAM) --> 0x%08" PRIX32, old, *addr); 324 DBG("Fixup addr 0x%08" PRIX32 " (FLASH) --> 0x%08" PRIX32, old, *addr); 326 ERR("Error: invalid address 0x%08" PRIX32, *addr) [all...] |
/external/google-breakpad/src/third_party/libdisasm/ |
x86_format.c | 42 STRNCATF( buf, "-0x%" PRIX32, -ea->disp, len ); \ 44 STRNCATF( buf, "0x%" PRIX32, ea->disp, len ); \ 106 snprintf( str, len, "0x%08" PRIX32, op->data.dword ); 187 STRNCATF( buf, "0x%" PRIX32, ea->disp, len ); 230 STRNCATF (buf, "value=\"0x%" PRIX32 "\"/>\n", ea->disp, 688 STRNCATF( buf, "$0x%08" PRIX32, 698 STRNCATF( buf, "0x%08" PRIX32, op->data.sdword, len ); 735 STRNCATF( buf, "0x%08" PRIX32, 742 STRNCATF( buf, "0x%08" PRIX32, 747 STRNCATF( buf, "0x%08" PRIX32, op->data.sdword [all...] |
/external/llvm/include/llvm/Support/ |
DataTypes.h.cmake | 114 #define PRIx32 "x" 115 #define PRIX32 "X"
|
/device/google/contexthub/firmware/app/chre/chre_test0.app/ |
main.c | 78 chreLog(CHRE_LOG_INFO, CHRE_APP_TAG "started with tid %04" PRIX32
|
/device/google/contexthub/firmware/app/chre/chre_test1.app/ |
main.cpp | 91 chreLog(CHRE_LOG_INFO, APP_LABEL "started with tid %04" PRIX32
|
/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/ |
int_fmtio.h | 112 #define PRIx32 "x" /* uint32_t */
127 #define PRIX32 "X" /* uint32_t */
|
/device/linaro/bootloader/edk2/StdLib/Include/X64/machine/ |
int_fmtio.h | 112 #define PRIx32 "x" /* uint32_t */
127 #define PRIX32 "X" /* uint32_t */
|
/external/libusb/msvc/ |
inttypes.h | 124 #define PRIx32 "x" 141 #define PRIX32 "X"
|
/bionic/libc/include/ |
inttypes.h | 126 #define PRIx32 "x" /* uint32_t */ 144 #define PRIX32 "X" /* uint32_t */
|
/device/google/contexthub/firmware/app/chre/chre_test2.app/ |
main.cpp | 73 chreLog(CHRE_LOG_INFO, APP_LABEL "started with tid %04" PRIX32
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/InstPrinter/ |
X86ATTInstPrinter.cpp | 99 *CommentStream << format("imm = 0x%" PRIX32 "\n", (uint32_t)Imm);
|
/external/u-boot/include/ |
inttypes.h | 120 # define PRIx32 "x" 136 # define PRIX32 "X"
|
/external/boringssl/src/crypto/x509/ |
a_strex.c | 117 BIO_snprintf(tmphex, sizeof tmphex, "\\W%08" PRIX32, c); 123 BIO_snprintf(tmphex, sizeof tmphex, "\\U%04" PRIX32, c);
|
/device/google/contexthub/firmware/os/cpu/cortexm4/ |
appSupport.c | 205 osLog(LOG_INFO, "App ID %016" PRIX64 "; TID=%04" PRIX32 " terminated\n", app->hdr.appId, osGetCurrentTid());
|
cpu.c | 157 osLog(level, "Reboot reason: 0x%08" PRIX32 "%s\n", reason, reasonDesc);
|
/external/e2fsprogs/intl/ |
loadmsgcat.c | 163 #if !defined PRIx32 || PRI_MACROS_BROKEN 164 # undef PRIx32 165 # define PRIx32 "x" 167 #if !defined PRIX32 || PRI_MACROS_BROKEN 168 # undef PRIX32 169 # define PRIX32 "X" 558 return PRIx32; 560 return PRIX32; [all...] |
/external/llvm/lib/Target/X86/InstPrinter/ |
X86ATTInstPrinter.cpp | 183 *CommentStream << format("imm = 0x%" PRIX32 "\n", (uint32_t)Imm);
|