Searched refs:PUT_NUM (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Disassembler/
H A DDisasmFormatBytes.cpp53 #define PUT_NUM(cch, fmt, num) \ macro
71 PUT_NUM(3, " %02x", pDis->abInstr[i]);
73 PUT_NUM(2, "%02x", pDis->abInstr[i]);
84 #undef PUT_NUM macro
H A DDisasmFormatYasm.cpp343 #define PUT_NUM(cch, fmt, num) \ macro
355 #define PUT_NUM_8(num) PUT_NUM(4, "0%02xh", (uint8_t)(num))
356 #define PUT_NUM_16(num) PUT_NUM(6, "0%04xh", (uint16_t)(num))
357 #define PUT_NUM_32(num) PUT_NUM(10, "0%08xh", (uint32_t)(num))
358 #define PUT_NUM_64(num) PUT_NUM(18, "0%016RX64h", (uint64_t)(num))
365 PUT_NUM(cch, fmt, (utype)(num)); \
370 PUT_NUM(cch, fmt, (utype)-(stype)(num)); \
416 PUT_NUM(9, "%08x`", (uint32_t)(pDis->uInstrAddr >> 32));
418 PUT_NUM(8, "%08x", (uint32_t)pDis->uInstrAddr);
1244 PUT_NUM(
[all...]

Completed in 75 milliseconds