Home
last modified time | relevance | path

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

/coreutils/src/
Dbasenc.c202 #define ENC_BLOCKSIZE (1024 * 3 * 10) macro
212 static_assert (ENC_BLOCKSIZE % 40 == 0); /* Padding chars only on last block. */
228 static_assert (ENC_BLOCKSIZE % 12 == 0); /* Padding chars only on last block. */
1093 inbuf = xmalloc (ENC_BLOCKSIZE); in do_encode()
1094 outbuf = xmalloc (BASE_LENGTH (ENC_BLOCKSIZE)); in do_encode()
1103 n = fread (inbuf + sum, 1, ENC_BLOCKSIZE - sum, in); in do_encode()
1106 while (!feof (in) && !ferror (in) && sum < ENC_BLOCKSIZE); in do_encode()
1118 while (!feof (in) && !ferror (in) && sum == ENC_BLOCKSIZE); in do_encode()