Lines Matching refs:hex
17 * Print a hex dump. Just hands control off to the fancy version.
29 * Print a hex dump in this format:
39 char* hex;
56 char* hex = out;
60 *hex++ = gHexDigit[lineOffset >> 28];
63 hex++;
64 hex++;
72 hex += gap * 3;
78 *hex++ = gHexDigit[*addr >> 4];
79 *hex++ = gHexDigit[*addr & 0x0f];
80 hex++;
89 *hex++ = ' ';
90 *hex++ = ' ';
91 hex++;