Lines Matching refs:bytes
82 * devices and EGD sockets are handled in rand_unix.c If |bytes| is
85 int RAND_load_file(const char *file, long bytes)
89 * of 'RAND_DRBG_STRENGTH' bytes (not bits!). This is done on purpose
103 if (bytes == 0)
120 if (bytes < 0) {
122 bytes = sb.st_size;
124 bytes = RAND_DRBG_STRENGTH;
149 if (bytes > 0)
150 n = (bytes <= RAND_LOAD_BUF_SIZE) ? (int)bytes : RAND_BUF_SIZE;
168 if (bytes > 0 && (bytes -= i) <= 0)