Lines Matching refs:DEC_BLOCKSIZE
209 # define DEC_BLOCKSIZE (1024 * 5) macro
213 static_assert (DEC_BLOCKSIZE % 40 == 0); /* Complete encoded blocks are used. */
225 # define DEC_BLOCKSIZE (1024 * 3) macro
229 static_assert (DEC_BLOCKSIZE % 12 == 0); /* Complete encoded blocks are used. */
244 # define DEC_BLOCKSIZE (4200) macro
245 static_assert (DEC_BLOCKSIZE % 40 == 0); /* complete encoded blocks for base32*/
246 static_assert (DEC_BLOCKSIZE % 12 == 0); /* complete encoded blocks for base64*/
320 ctx->bufsize = DEC_BLOCKSIZE; in init_inbuf()
1138 inbuf = xmalloc (BASE_LENGTH (DEC_BLOCKSIZE)); in do_decode()
1139 outbuf = xmalloc (DEC_BLOCKSIZE); in do_decode()
1154 1, BASE_LENGTH (DEC_BLOCKSIZE) - sum, in); in do_decode()
1172 while (sum < BASE_LENGTH (DEC_BLOCKSIZE) && !feof (in)); in do_decode()
1197 idx_t n = DEC_BLOCKSIZE; in do_decode()