Lines Matching defs:bytes
65 * prandom_bytes_state - get the requested number of pseudo-random bytes
68 * @buf: where to copy the pseudo-random bytes to
69 * @bytes: the requested number of bytes
74 void prandom_bytes_state(struct rnd_state *state, void *buf, size_t bytes)
78 while (bytes >= sizeof(u32)) {
81 bytes -= sizeof(u32);
84 if (bytes > 0) {
88 bytes--;
90 } while (bytes > 0);