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

  /external/fio/lib/
axmap.h 7 struct axmap;
8 struct axmap *axmap_new(unsigned long nr_bits);
9 void axmap_free(struct axmap *bm);
11 void axmap_clear(struct axmap *axmap, uint64_t bit_nr);
12 void axmap_set(struct axmap *axmap, uint64_t bit_nr);
13 unsigned int axmap_set_nr(struct axmap *axmap, uint64_t bit_nr, unsigned int nr_bits);
14 bool axmap_isset(struct axmap *axmap, uint64_t bit_nr)
    [all...]
axmap.c 3 * the previous. Hence an 'axmap', since we axe each previous layer into a
24 #include "axmap.h"
46 struct axmap { struct
61 void axmap_reset(struct axmap *axmap)
65 for (i = 0; i < axmap->nr_levels; i++) {
66 struct axmap_level *al = &axmap->levels[i];
71 axmap->first_free = 0;
74 void axmap_free(struct axmap *axmap)
90 struct axmap *axmap; local
    [all...]
  /external/fio/t/
axmap.c 9 #include "../lib/axmap.h"
24 struct axmap *map;
75 struct axmap *map;
  /external/fio/
file.h 9 #include "lib/axmap.h"
31 FIO_FILE_axmap = 1 << 7, /* uses axmap */
135 struct axmap *io_axmap;
177 FILE_FLAG_FNS(axmap); variable
Makefile 215 T_AXMAP_OBJS = t/axmap.o
216 T_AXMAP_OBJS += lib/lfsr.o lib/axmap.o
217 T_AXMAP_PROGS = t/axmap
413 t/axmap: $(T_AXMAP_OBJS)

Completed in 114 milliseconds