Lines Matching defs:blocks
29 * Adjacent blocks of 32 input bytes can be iterated with the expressions to
39 * hoisted from the n-blocks do loop of the SIMD code.
68 * Process the data in blocks.
72 z_size_t blocks = len / BLOCK_SIZE;
73 len -= blocks * BLOCK_SIZE;
75 while (blocks)
78 if (n > blocks)
79 n = (unsigned) blocks;
80 blocks -= n;
92 * Process n blocks of data. At most NMAX data bytes can be
229 * Process the data in blocks.
233 z_size_t blocks = len / BLOCK_SIZE;
234 len -= blocks * BLOCK_SIZE;
236 while (blocks)
239 if (n > blocks)
240 n = (unsigned) blocks;
241 blocks -= n;
244 * Process n blocks of data. At most NMAX data bytes can be