Lines Matching full:blocks
176 size_t blocks = len / 16;
180 if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28)) {
181 blocks = (1U << 28);
186 * amount of blocks to the exact overflow point... */
187 ctr32 += (uint32_t)blocks;
188 if (ctr32 < blocks) {
189 blocks -= ctr32;
192 (*func)(in, out, blocks, key, ivec);
199 blocks *= 16;
200 len -= blocks;
201 out += blocks;
202 in += blocks;