HomeSort by relevance Sort by last modified time
    Searched refs:rand_seeds (Results 1 - 5 of 5) sorted by null

  /external/fio/
init.c 754 os_random_seed(td->rand_seeds[FIO_RAND_BS_OFF], &td->bsrange_state);
755 os_random_seed(td->rand_seeds[FIO_RAND_VER_OFF], &td->verify_state);
756 os_random_seed(td->rand_seeds[FIO_RAND_MIX_OFF], &td->rwmix_state);
759 os_random_seed(td->rand_seeds[FIO_RAND_FILE_OFF], &td->next_file_state);
761 os_random_seed(td->rand_seeds[FIO_RAND_FILE_SIZE_OFF], &td->file_size_state);
762 os_random_seed(td->rand_seeds[FIO_RAND_TRIM_OFF], &td->trim_state);
763 os_random_seed(td->rand_seeds[FIO_RAND_START_DELAY], &td->delay_state);
769 td->rand_seeds[FIO_RAND_BLOCK_OFF] = FIO_RANDSEED * td->thread_number;
771 os_random_seed(td->rand_seeds[FIO_RAND_BLOCK_OFF], &td->random_state);
773 os_random_seed(td->rand_seeds[FIO_RAND_SEQ_RAND_READ_OFF], &td->seq_rand_state[DDIR_READ])
    [all...]
filesetup.c 1002 seed = td->rand_seeds[4];
1050 seed = td->rand_seeds[FIO_RAND_BLOCK_OFF];
1536 lfsr_reset(&f->lfsr, td->rand_seeds[FIO_RAND_BLOCK_OFF]);
fio.h 156 unsigned long rand_seeds[FIO_RAND_NR_OFFS]; member in struct:thread_data
  /external/fio/os/
os-windows.h 234 static inline int init_random_state(struct thread_data *td, unsigned long *rand_seeds, int size)
245 if (!CryptGenRandom(hCryptProv, size, (BYTE*)rand_seeds)) {
os.h 293 static inline int init_random_state(struct thread_data *td, unsigned long *rand_seeds, int size)
302 if (read(fd, rand_seeds, size) < size) {

Completed in 192 milliseconds