Lines Matching refs:pad
40 isc_buffer_t *target, const char base[], char pad) in base32_totext() argument
53 buf[2] = buf[3] = buf[4] = pad; in base32_totext()
54 buf[5] = buf[6] = buf[7] = pad; in base32_totext()
63 buf[4] = buf[5] = buf[6] = buf[7] = pad; in base32_totext()
71 buf[5] = buf[6] = buf[7] = pad; in base32_totext()
80 buf[7] = pad; in base32_totext()
122 int pad; /*%< Expect padding */ member
127 int pad, isc_buffer_t *target) in base32_decode_init() argument
135 ctx->pad = pad; in base32_decode_init()
164 if (last == 32 && !ctx->pad) in base32_decode_char()
241 if (!ctx->pad && ctx->digits != 0) { in base32_decode_finish()
242 ctx->pad = 1; in base32_decode_finish()
254 int pad, isc_buffer_t *target) in base32_decoderegion() argument
258 base32_decode_init(&ctx, -1, base, pad, target); in base32_decoderegion()