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

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_slab.c 71 block->next_free = pool->first_free;
73 pool->first_free = util_slab_get_block(pool, page, 0);
85 if (!pool->first_free)
88 block = pool->first_free;
90 pool->first_free = block->next_free;
102 block->next_free = pool->first_free;
103 pool->first_free = block;
150 pool->first_free = NULL;
u_slab.h 61 struct util_slab_block *first_free; member in struct:util_slab_mempool
  /external/mesa3d/src/gallium/auxiliary/util/
u_slab.c 71 block->next_free = pool->first_free;
73 pool->first_free = util_slab_get_block(pool, page, 0);
85 if (!pool->first_free)
88 block = pool->first_free;
90 pool->first_free = block->next_free;
102 block->next_free = pool->first_free;
103 pool->first_free = block;
150 pool->first_free = NULL;
u_slab.h 61 struct util_slab_block *first_free; member in struct:util_slab_mempool
  /external/e2fsprogs/lib/ext2fs/
alloc_tables.c 42 blk64_t last_blk, first_free = 0; local
68 bmap, &first_free) == 0)
69 return first_free;
72 bmap, &first_free) == 0)
73 return first_free;
76 &first_free) == 0)
77 return first_free;
79 return first_free;
  /external/fio/lib/
axmap.c 39 #define firstfree_valid(b) ((b)->first_free != (uint64_t) -1)
50 uint64_t first_free; member in struct:axmap
72 axmap->first_free = 0;
259 if (axmap->first_free >= bit_nr &&
260 axmap->first_free < bit_nr + data->nr_bits)
261 axmap->first_free = -1ULL;
375 return axmap->first_free;
377 axmap->first_free = axmap_find_first_free(axmap, axmap->nr_levels - 1, 0);
378 return axmap->first_free;
414 if (firstfree_valid(axmap) && bit_nr < axmap->first_free)
    [all...]
  /external/e2fsprogs/e2fsck/
pass5.c 201 blk64_t first_free = ext2fs_blocks_count(fs->super); local
434 if (first_free > i)
435 first_free = i;
436 } else if (i > first_free) {
437 e2fsck_discard_blocks(ctx, first_free,
438 (i - first_free));
439 first_free = ext2fs_blocks_count(fs->super);
449 if (!bitmap && i >= first_free)
450 e2fsck_discard_blocks(ctx, first_free,
451 (i - first_free) + 1)
550 ext2_ino_t first_free = fs->super->s_inodes_per_group + 1; local
    [all...]
  /external/chromium_org/v8/src/
global-handles.cc 74 void Initialize(int index, Node** first_free) {
79 parameter_or_next_free_.next_free = *first_free;
80 *first_free = this;
312 void PutNodesOnFreeList(Node** first_free) {
314 nodes_[i].Initialize(i, first_free);
  /external/e2fsprogs/debugfs/
debugfs.c 1488 blk64_t free_blk, goal, first_free = 0; local
    [all...]

Completed in 366 milliseconds