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

/bind-9.11.3/lib/isc/include/isc/
H A Dbase64.h26 isc_base64_totext(isc_region_t *source, int wordlength,
33 * words of at most 'wordlength' characters, separated by
H A Dhex.h26 isc_hex_totext(isc_region_t *source, int wordlength,
33 * words of at most 'wordlength' characters, separated by
H A Dbase32.h34 isc_base32_totext(isc_region_t *source, int wordlength,
37 isc_base32hex_totext(isc_region_t *source, int wordlength,
40 isc_base32hexnp_totext(isc_region_t *source, int wordlength,
47 * words of at most 'wordlength' characters, separated by
/bind-9.11.3/lib/isccc/include/isccc/
H A Dbase64.h40 isccc_base64_encode(isccc_region_t *source, int wordlength,
47 * words of at most 'wordlength' characters, separated by
/bind-9.11.3/lib/isccc/
H A Dbase64.c39 isccc_base64_encode(isccc_region_t *source, int wordlength, argument
51 result = isc_base64_totext(&sr, wordlength, wordbreak, &tb);
/bind-9.11.3/lib/isc/
H A Dbase32.c48 base32_totext(isc_region_t *source, int wordlength, const char *wordbreak, argument
54 if (wordlength >= 0 && wordlength < 8)
55 wordlength = 8;
100 if (source->length != 0 && wordlength >= 0 &&
101 (int)((loops + 1) * 8) >= wordlength)
113 isc_base32_totext(isc_region_t *source, int wordlength, argument
116 return (base32_totext(source, wordlength, wordbreak, target,
121 isc_base32hex_totext(isc_region_t *source, int wordlength, argument
124 return (base32_totext(source, wordlength, wordbrea
129 isc_base32hexnp_totext(isc_region_t *source, int wordlength, const char *wordbreak, isc_buffer_t *target) argument
[all...]
H A Dhex.c42 isc_hex_totext(isc_region_t *source, int wordlength, argument
48 if (wordlength < 2)
49 wordlength = 2;
60 (int)((loops + 1) * 2) >= wordlength)
H A Dbase64.c44 isc_base64_totext(isc_region_t *source, int wordlength, argument
50 if (wordlength < 4)
51 wordlength = 4;
66 (int)((loops + 1) * 4) >= wordlength)

Completed in 42 milliseconds