Searched refs:wordlength (Results 1 – 6 of 6) sorted by relevance
| /freebsd-10-stable/contrib/ntp/lib/isc/ |
| D | base32.c | 56 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()
|
| D | hex.c | 51 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()
|
| D | base64.c | 53 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/ |
| D | base32.h | 42 isc_base32_totext(isc_region_t *source, int wordlength, 45 isc_base32hex_totext(isc_region_t *source, int wordlength,
|
| D | hex.h | 35 isc_hex_totext(isc_region_t *source, int wordlength,
|
| D | base64.h | 35 isc_base64_totext(isc_region_t *source, int wordlength,
|