Home | History | Annotate | Download | only in strace

Lines Matching refs:tohex

2276 #define tohex(n) "0123456789abcdef"[n]
2279 *out++ = tohex(in[i] / 16);
2280 *out++ = tohex(in[i] % 16);