HomeSort by relevance Sort by last modified time
    Searched defs:bitmap_info_t (Results 1 - 2 of 2) sorted by null

  /external/jemalloc/include/jemalloc/internal/
bitmap.h 9 typedef struct bitmap_info_s bitmap_info_t; typedef in typeref:struct:bitmap_info_s
117 void bitmap_info_init(bitmap_info_t *binfo, size_t nbits);
118 void bitmap_init(bitmap_t *bitmap, const bitmap_info_t *binfo);
119 size_t bitmap_size(const bitmap_info_t *binfo);
126 bool bitmap_full(bitmap_t *bitmap, const bitmap_info_t *binfo);
127 bool bitmap_get(bitmap_t *bitmap, const bitmap_info_t *binfo, size_t bit);
128 void bitmap_set(bitmap_t *bitmap, const bitmap_info_t *binfo, size_t bit);
129 size_t bitmap_sfu(bitmap_t *bitmap, const bitmap_info_t *binfo);
130 void bitmap_unset(bitmap_t *bitmap, const bitmap_info_t *binfo, size_t bit);
135 bitmap_full(bitmap_t *bitmap, const bitmap_info_t *binfo
    [all...]
  /external/jemalloc_new/include/jemalloc/internal/
bitmap.h 105 * unused trailing entries in bitmap_info_t structures; the bitmaps themselves
169 } bitmap_info_t; typedef in typeref:struct:bitmap_info_s
171 void bitmap_info_init(bitmap_info_t *binfo, size_t nbits);
172 void bitmap_init(bitmap_t *bitmap, const bitmap_info_t *binfo, bool fill);
173 size_t bitmap_size(const bitmap_info_t *binfo);
176 bitmap_full(bitmap_t *bitmap, const bitmap_info_t *binfo) {
195 bitmap_get(bitmap_t *bitmap, const bitmap_info_t *binfo, size_t bit) {
206 bitmap_set(bitmap_t *bitmap, const bitmap_info_t *binfo, size_t bit) {
242 bitmap_ffu(const bitmap_t *bitmap, const bitmap_info_t *binfo, size_t min_bit) {
301 bitmap_sfu(bitmap_t *bitmap, const bitmap_info_t *binfo)
    [all...]

Completed in 129 milliseconds