Home | History | Annotate | Download | only in base

Lines Matching refs:hex

194     char* hex = out;
198 *hex++ = gHexDigit[line_offset >> 28];
201 hex++;
202 hex++;
210 hex += gap * 3;
216 *hex++ = gHexDigit[*addr >> 4];
217 *hex++ = gHexDigit[*addr & 0x0f];
218 hex++;
228 *hex++ = ' ';
229 *hex++ = ' ';
230 hex++;