Lines Matching refs:sep
136 const char *str, const char sep) in hexstr2buf_sep() argument
147 if (ch == sep && sep != CH_ZERO) in hexstr2buf_sep()
179 const char *str, const char sep) in OPENSSL_hexstr2buf_ex() argument
181 return hexstr2buf_sep(buf, buf_n, buflen, str, sep); in OPENSSL_hexstr2buf_ex()
185 const char sep) in ossl_hexstr2buf_sep() argument
204 if (hexstr2buf_sep(buf, buf_n, &tmp_buflen, str, sep)) { in ossl_hexstr2buf_sep()
220 const char sep) in buf2hexstr_sep() argument
226 int has_sep = (sep != CH_ZERO); in buf2hexstr_sep()
244 *q++ = sep; in buf2hexstr_sep()
258 const char sep) in OPENSSL_buf2hexstr_ex() argument
260 return buf2hexstr_sep(str, str_n, strlen, buf, buflen, sep); in OPENSSL_buf2hexstr_ex()
263 char *ossl_buf2hexstr_sep(const unsigned char *buf, long buflen, char sep) in ossl_buf2hexstr_sep() argument
271 tmp_n = (sep != CH_ZERO) ? buflen * 3 : 1 + buflen * 2; in ossl_buf2hexstr_sep()
277 if (buf2hexstr_sep(tmp, tmp_n, NULL, buf, buflen, sep)) in ossl_buf2hexstr_sep()