Searched defs:wordlength (Results 1 - 4 of 4) sorted by relevance
/bind-9.6-ESV-R11/lib/isccc/ |
H A D | base64.c | 48 isccc_base64_encode(isccc_region_t *source, int wordlength, argument 59 result = isc_base64_totext(&sr, wordlength, wordbreak, &tb);
|
/bind-9.6-ESV-R11/lib/isc/ |
H A D | base64.c | 53 isc_base64_totext(isc_region_t *source, int wordlength, argument 59 if (wordlength < 4) 60 wordlength = 4; 75 (int)((loops + 1) * 4) >= wordlength)
|
H A D | hex.c | 51 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 D | base32.c | 56 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...] |
Completed in 59 milliseconds