Lines Matching refs:sep
139 const char *str, const char sep)
150 if (ch == sep && sep != CH_ZERO)
182 const char *str, const char sep)
184 return hexstr2buf_sep(buf, buf_n, buflen, str, sep);
188 const char sep)
207 if (hexstr2buf_sep(buf, buf_n, &tmp_buflen, str, sep)) {
223 const char sep)
229 int has_sep = (sep != CH_ZERO);
249 *q++ = sep;
263 const char sep)
265 return buf2hexstr_sep(str, str_n, strlength, buf, buflen, sep);
268 char *ossl_buf2hexstr_sep(const unsigned char *buf, long buflen, char sep)
276 tmp_n = (sep != CH_ZERO) ? buflen * 3 : 1 + buflen * 2;
282 if (buf2hexstr_sep(tmp, tmp_n, NULL, buf, buflen, sep))