Searched defs:wordlength (Results 1 - 4 of 4) sorted by relevance

/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 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)
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 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...]

Completed in 13 milliseconds