Home | History | Annotate | Download | only in base

Lines Matching defs:hex

40            (16 * 3) + /* 16 hex digits and space */
60 char* hex = out;
62 (16 * 3) + /* 16 hex digits and space */ 2 /* white space */;
65 *hex++ = gHexDigit[line_offset >> (kBitsPerIntPtrT - 4)];
68 hex++;
69 hex++;
77 hex += gap * 3;
83 *hex++ = gHexDigit[*addr >> 4];
84 *hex++ = gHexDigit[*addr & 0x0f];
85 hex++;
95 *hex++ = ' ';
96 *hex++ = ' ';
97 hex++;