Lines Matching refs:bytes
71 void prandom_bytes_state(struct rnd_state *state, void *buf, size_t bytes) in prandom_bytes_state() argument
75 while (bytes >= sizeof(u32)) { in prandom_bytes_state()
78 bytes -= sizeof(u32); in prandom_bytes_state()
81 if (bytes > 0) { in prandom_bytes_state()
85 bytes--; in prandom_bytes_state()
87 } while (bytes > 0); in prandom_bytes_state()
390 void prandom_bytes(void *buf, size_t bytes) in prandom_bytes() argument
395 while (bytes >= sizeof(u32)) { in prandom_bytes()
398 bytes -= sizeof(u32); in prandom_bytes()
401 if (bytes > 0) { in prandom_bytes()
407 } while (--bytes > 0); in prandom_bytes()