Searched refs:zEncode (Results 1 – 3 of 3) sorted by relevance
18 char *zEncode = "0123456789ABCDEF"; in infra_hex2str() local22 output[j++] = zEncode[(input[i] >> 4) & 0xf]; in infra_hex2str()23 output[j++] = zEncode[(input[i]) & 0xf]; in infra_hex2str()120 static char *zEncode[] = { "0123456789abcdef", "0123456789ABCDEF" }; in LITE_hexbuf_convert() local128 out[j++] = zEncode[idx][(a >> 4) & 0xf]; in LITE_hexbuf_convert()129 out[j++] = zEncode[idx][a & 0xf]; in LITE_hexbuf_convert()
49 char *zEncode = "0123456789abcdef"; in _hex2str() local53 output[j++] = zEncode[(input[i] >> 4) & 0xf]; in _hex2str()54 output[j++] = zEncode[(input[i]) & 0xf]; in _hex2str()
25 char *zEncode = "0123456789ABCDEF"; in _hex2str() local29 output[j++] = zEncode[(input[i] >> 4) & 0xf]; in _hex2str()30 output[j++] = zEncode[(input[i]) & 0xf]; in _hex2str()
Completed in 4 milliseconds