Searched defs:wantsuppercase (Results 1 - 1 of 1) sorted by relevance

/external/lldb/source/Core/
H A DDataExtractor.cpp1717 bool wantsuppercase = (item_format == eFormatHexUppercase); local
1720 s->Printf(wantsuppercase ? "0x%*.*" PRIX64 : "0x%*.*" PRIx64, (int)(2 * item_byte_size), (int)(2 * item_byte_size), GetMaxU64Bitfield(&offset, item_byte_size, item_bit_size, item_bit_offset));
1733 s->Printf(wantsuppercase ? "%2.2X" : "%2.2x", bytes[idx]);
1738 s->Printf(wantsuppercase ? "%2.2X" : "%2.2x", bytes[item_byte_size - 1 - idx]);

Completed in 166 milliseconds