Lines Matching defs:bytes
38 unsigned int bytes, int nrounds)
40 unsigned int l = bytes & ~0x0FF;
44 bytes -= l;
50 if (bytes > 0)
51 chacha_crypt_generic(state, dst, src, bytes, nrounds);
66 void chacha_crypt_arch(u32 *state, u8 *dst, const u8 *src, unsigned int bytes,
69 if (!static_branch_likely(&have_p10) || bytes <= CHACHA_BLOCK_SIZE ||
71 return chacha_crypt_generic(state, dst, src, bytes, nrounds);
74 unsigned int todo = min_t(unsigned int, bytes, SZ_4K);
80 bytes -= todo;
83 } while (bytes);