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

/freebsd-10.3-release/contrib/ntp/lib/isc/include/isc/
H A Dbase64.h35 isc_base64_totext(isc_region_t *source, int wordlength,
42 * words of at most 'wordlength' characters, separated by
H A Dhex.h35 isc_hex_totext(isc_region_t *source, int wordlength,
42 * words of at most 'wordlength' characters, separated by
H A Dbase32.h42 isc_base32_totext(isc_region_t *source, int wordlength,
45 isc_base32hex_totext(isc_region_t *source, int wordlength,
52 * words of at most 'wordlength' characters, separated by
/freebsd-10.3-release/contrib/ntp/lib/isc/
H A Dbase32.c56 base32_totext(isc_region_t *source, int wordlength, const char *wordbreak, argument
62 if (wordlength >= 0 && wordlength < 8)
63 wordlength = 8;
108 if (source->length != 0 && wordlength >= 0 &&
109 (int)((loops + 1) * 8) >= wordlength)
121 isc_base32_totext(isc_region_t *source, int wordlength, argument
124 return (base32_totext(source, wordlength, wordbreak, target, base32));
128 isc_base32hex_totext(isc_region_t *source, int wordlength, argument
131 return (base32_totext(source, wordlength, wordbrea
[all...]
H A Dhex.c51 isc_hex_totext(isc_region_t *source, int wordlength, argument
57 if (wordlength < 2)
58 wordlength = 2;
69 (int)((loops + 1) * 2) >= wordlength)
H A Dbase64.c53 isc_base64_totext(isc_region_t *source, int wordlength, argument
59 if (wordlength < 4)
60 wordlength = 4;
75 (int)((loops + 1) * 4) >= wordlength)

Completed in 166 milliseconds