Searched refs:tohexdigit (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10/Heimdal-398.1.2/lib/libedit/src/
H A Dchartype.c322 #define tohexdigit(v) "0123456789ABCDEF"[v] macro
324 *dst++ = tohexdigit(((unsigned int) c >> 16) & 0xf);
325 *dst++ = tohexdigit(((unsigned int) c >> 12) & 0xf);
326 *dst++ = tohexdigit(((unsigned int) c >> 8) & 0xf);
327 *dst++ = tohexdigit(((unsigned int) c >> 4) & 0xf);
328 *dst = tohexdigit(((unsigned int) c ) & 0xf);
/macosx-10.10/libedit-40/src/
H A Dchartype.c319 #define tohexdigit(v) "0123456789ABCDEF"[v] macro
321 *dst++ = tohexdigit(((unsigned int) c >> 16) & 0xf);
322 *dst++ = tohexdigit(((unsigned int) c >> 12) & 0xf);
323 *dst++ = tohexdigit(((unsigned int) c >> 8) & 0xf);
324 *dst++ = tohexdigit(((unsigned int) c >> 4) & 0xf);
325 *dst = tohexdigit(((unsigned int) c ) & 0xf);

Completed in 118 milliseconds