HomeSort by: relevance | last modified time | path
    Searched defs:tohexdigit (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libedit/
chartype.c 310 #define tohexdigit(v) "0123456789ABCDEF"[v] macro
312 *dst++ = tohexdigit(((unsigned int) c >> 16) & 0xf);
313 *dst++ = tohexdigit(((unsigned int) c >> 12) & 0xf);
314 *dst++ = tohexdigit(((unsigned int) c >> 8) & 0xf);
315 *dst++ = tohexdigit(((unsigned int) c >> 4) & 0xf);
316 *dst = tohexdigit(((unsigned int) c ) & 0xf);
chartype.c 310 #define tohexdigit(v) "0123456789ABCDEF"[v] macro
312 *dst++ = tohexdigit(((unsigned int) c >> 16) & 0xf);
313 *dst++ = tohexdigit(((unsigned int) c >> 12) & 0xf);
314 *dst++ = tohexdigit(((unsigned int) c >> 8) & 0xf);
315 *dst++ = tohexdigit(((unsigned int) c >> 4) & 0xf);
316 *dst = tohexdigit(((unsigned int) c ) & 0xf);

Completed in 21 milliseconds