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

  /external/fio/lib/
zipf.h 8 uint64_t nranges; member in struct:zipf_state
17 void zipf_init(struct zipf_state *zs, unsigned long nranges, double theta, unsigned int seed);
20 void pareto_init(struct zipf_state *zs, unsigned long nranges, double h, unsigned int seed);
zipf.c 26 to_gen = min(zs->nranges, ZIPF_MAX_GEN);
32 static void shared_rand_init(struct zipf_state *zs, unsigned long nranges,
36 zs->nranges = nranges;
42 void zipf_init(struct zipf_state *zs, unsigned long nranges, double theta,
45 shared_rand_init(zs, nranges, seed);
56 unsigned long long n = zs->nranges;
72 return (__hash_u64(val - 1) + zs->rand_off) % zs->nranges;
75 void pareto_init(struct zipf_state *zs, unsigned long nranges, double h,
78 shared_rand_init(zs, nranges, seed)
    [all...]
  /external/fio/t/
genzipf.c 160 unsigned int nranges; member in struct:output_sum
175 unsigned long long nranges; local
187 nranges = gb_size * 1024 * 1024 * 1024ULL;
188 nranges /= block_size;
191 zipf_init(&zs, nranges, dist_val, 1);
193 pareto_init(&zs, nranges, dist_val, 1);
196 hash_size = nranges;
206 nodes = malloc(nranges * sizeof(struct node));
208 for (nr_vals = i = j = 0; i < nranges; i++) {
241 output_sums[i].nranges = 1
    [all...]
  /external/fio/
filesetup.c 992 unsigned long nranges; local
998 nranges = (file_size + range_size - 1) / range_size;
1005 zipf_init(&f->zipf, nranges, td->o.zipf_theta.u.f, seed);
1007 pareto_init(&f->zipf, nranges, td->o.pareto_h.u.f, seed);
  /ndk/sources/host-tools/sed-4.2.1/lib/
regcomp.c 375 && (cset->ncoll_syms || cset->nranges))
    [all...]
regex_internal.h 324 Idx nranges; member in struct:__anon43044
regexec.c     [all...]

Completed in 219 milliseconds