Lines Matching defs:bytes
37 int nrounds, int bytes);
43 int bytes, int nrounds)
45 while (bytes > 0) {
46 int l = min(bytes, CHACHA_BLOCK_SIZE * 5);
58 bytes -= l;
83 void chacha_crypt_arch(u32 *state, u8 *dst, const u8 *src, unsigned int bytes,
86 if (!static_branch_likely(&have_neon) || bytes <= CHACHA_BLOCK_SIZE ||
88 return chacha_crypt_generic(state, dst, src, bytes, nrounds);
91 unsigned int todo = min_t(unsigned int, bytes, SZ_4K);
97 bytes -= todo;
100 } while (bytes);