Lines Matching refs:tohex
2386 #define tohex(n) "0123456789abcdef"[n]2389 *out++ = tohex(in[i] / 16);2390 *out++ = tohex(in[i] % 16);