Lines Matching refs:q
208 unsigned char *q; in hexstr2buf_sep() local
214 for (p = (const unsigned char *)str, q = buf, cnt = 0; *p; ) { in hexstr2buf_sep()
231 if (q != NULL) { in hexstr2buf_sep()
236 *q++ = (unsigned char)((chi << 4) | cli); in hexstr2buf_sep()
290 char *q; in buf2hexstr_sep() local
306 q = str; in buf2hexstr_sep()
308 q += ossl_to_hex(q, buf[i]); in buf2hexstr_sep()
310 *q++ = sep; in buf2hexstr_sep()
313 --q; in buf2hexstr_sep()
314 *q = CH_ZERO; in buf2hexstr_sep()
317 ebcdic2ascii(str, str, q - str); in buf2hexstr_sep()