Lines Matching refs:idx
5831 size_t idx = 0;5832 for (char *h = hex; bits > 0; bits -= 8, idx += incr)5834 *h++ = "0123456789abcdef"[bytes[idx] >> 4];5835 *h++ = "0123456789abcdef"[bytes[idx] & 0xf];