Home
last modified time | relevance | path

Searched refs:wordlength (Results 1 – 6 of 6) sorted by relevance

/freebsd-10-stable/contrib/ntp/lib/isc/
Dbase32.c56 base32_totext(isc_region_t *source, int wordlength, const char *wordbreak, in base32_totext() argument
62 if (wordlength >= 0 && wordlength < 8) in base32_totext()
63 wordlength = 8; in base32_totext()
108 if (source->length != 0 && wordlength >= 0 && in base32_totext()
109 (int)((loops + 1) * 8) >= wordlength) in base32_totext()
121 isc_base32_totext(isc_region_t *source, int wordlength, in isc_base32_totext() argument
124 return (base32_totext(source, wordlength, wordbreak, target, base32)); in isc_base32_totext()
128 isc_base32hex_totext(isc_region_t *source, int wordlength, in isc_base32hex_totext() argument
131 return (base32_totext(source, wordlength, wordbreak, target, in isc_base32hex_totext()
Dhex.c51 isc_hex_totext(isc_region_t *source, int wordlength, in isc_hex_totext() argument
57 if (wordlength < 2) in isc_hex_totext()
58 wordlength = 2; in isc_hex_totext()
69 (int)((loops + 1) * 2) >= wordlength) in isc_hex_totext()
Dbase64.c53 isc_base64_totext(isc_region_t *source, int wordlength, in isc_base64_totext() argument
59 if (wordlength < 4) in isc_base64_totext()
60 wordlength = 4; in isc_base64_totext()
75 (int)((loops + 1) * 4) >= wordlength) in isc_base64_totext()
/freebsd-10-stable/contrib/ntp/lib/isc/include/isc/
Dbase32.h42 isc_base32_totext(isc_region_t *source, int wordlength,
45 isc_base32hex_totext(isc_region_t *source, int wordlength,
Dhex.h35 isc_hex_totext(isc_region_t *source, int wordlength,
Dbase64.h35 isc_base64_totext(isc_region_t *source, int wordlength,