Lines Matching refs:bytes
81 * devices and EGD sockets are handled in rand_unix.c If |bytes| is
84 int RAND_load_file(const char *file, long bytes)
88 * of 'RAND_DRBG_STRENGTH' bytes (not bits!). This is done on purpose
102 if (bytes == 0)
119 if (bytes < 0) {
121 bytes = sb.st_size;
123 bytes = RAND_DRBG_STRENGTH;
148 if (bytes > 0)
149 n = (bytes <= RAND_LOAD_BUF_SIZE) ? (int)bytes : RAND_BUF_SIZE;
167 if (bytes > 0 && (bytes -= i) <= 0)