Lines Matching defs:n_bytes
380 int n_bytes;
405 uint32_t n_bytes =
417 addr = mmap (NULL, n_bytes, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS,
422 printf ("mmap failed on %lld %u\n", (long long int)len, n_bytes);
434 ((info_t *)initial_page)->n_bytes = n_bytes;
441 munmap (addr, n_bytes);
457 munmap (info->addr, info->n_bytes);
586 make_random_bytes (int n_bytes)
588 uint8_t *bytes = fence_malloc (n_bytes);
593 prng_randmemset (bytes, n_bytes, 0);
599 make_random_floats (int n_bytes)
601 uint8_t *bytes = fence_malloc (n_bytes);
607 for (n_bytes /= 4; n_bytes; vals++, n_bytes--)