Searched refs:first_free (Results 1 – 7 of 7) sorted by relevance
/external/google-fruit/include/fruit/impl/data_structures/ |
D | memory_pool.defn.h | 29 inline MemoryPool::MemoryPool() : first_free(nullptr), capacity(0) {} in MemoryPool() 32 …: allocated_chunks(std::move(other.allocated_chunks)), first_free(other.first_free), capacity(othe… in MemoryPool() 41 first_free = other.first_free; 65 std::size_t misalignment = std::uintptr_t(first_free) % alignof(T); in allocate() 79 first_free = static_cast<char*>(p) + required_space; in allocate() 85 FruitAssert(first_free != nullptr); in allocate() 86 void* p = first_free + misalignment; in allocate() 87 first_free += required_space_in_chunk; in allocate()
|
D | memory_pool.h | 38 char* first_free; variable
|
/external/e2fsprogs/lib/ext2fs/ |
D | alloc_tables.c | 43 blk64_t last_blk, first_free = 0; in flexbg_offset() local 59 bmap, &first_free) == 0) in flexbg_offset() 60 return first_free; in flexbg_offset() 70 bmap, &first_free) == 0) in flexbg_offset() 71 return first_free; in flexbg_offset() 74 bmap, &first_free) == 0) in flexbg_offset() 75 return first_free; in flexbg_offset() 78 &first_free) == 0) in flexbg_offset() 79 return first_free; in flexbg_offset() 81 return first_free; in flexbg_offset()
|
/external/e2fsprogs/e2fsck/ |
D | pass5.c | 317 blk64_t first_free = ext2fs_blocks_count(fs->super); in check_block_bitmaps() local 470 if (first_free > i) in check_block_bitmaps() 471 first_free = i; in check_block_bitmaps() 472 } else if (i > first_free) { in check_block_bitmaps() 473 e2fsck_discard_blocks(ctx, first_free, in check_block_bitmaps() 474 (i - first_free)); in check_block_bitmaps() 475 first_free = ext2fs_blocks_count(fs->super); in check_block_bitmaps() 485 if (!bitmap && i >= first_free) in check_block_bitmaps() 486 e2fsck_discard_blocks(ctx, first_free, in check_block_bitmaps() 487 (i - first_free) + 1); in check_block_bitmaps() [all …]
|
/external/v8/src/ |
D | global-handles.cc | 65 void Initialize(int index, Node** first_free) { in Initialize() argument 71 data_.next_free = *first_free; in Initialize() 72 *first_free = this; in Initialize() 389 void PutNodesOnFreeList(Node** first_free) { in PutNodesOnFreeList() argument 391 nodes_[i].Initialize(i, first_free); in PutNodesOnFreeList()
|
/external/e2fsprogs/debugfs/ |
D | debugfs.c | 1654 blk64_t free_blk, goal, first_free = 0; in do_find_free_block() local 1690 if (first_free) { in do_find_free_block() 1691 if (first_free == free_blk) in do_find_free_block() 1694 first_free = free_blk; in do_find_free_block()
|
/external/u-boot/drivers/video/ |
D | stb_truetype.h | 1607 void *first_free; member 1613 if (hh->first_free) { in stbtt__hheap_alloc() 1614 void *p = hh->first_free; in stbtt__hheap_alloc() 1615 hh->first_free = * (void **) p; in stbtt__hheap_alloc() 1634 *(void **) p = hh->first_free; in stbtt__hheap_free() 1635 hh->first_free = p; in stbtt__hheap_free()
|