Home
last modified time | relevance | path

Searched refs:DEC_BLOCKSIZE (Results 1 – 1 of 1) sorted by relevance

/coreutils/src/
Dbasenc.c209 # 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()
[all …]