Home
last modified time | relevance | path

Searched refs:first_block (Results 1 – 3 of 3) sorted by relevance

/bionic/linker/
Dlinker_block_allocator.cpp129 FreeBlockInfo* first_block = reinterpret_cast<FreeBlockInfo*>(page->bytes); in create_new_page() local
130 first_block->next_block = free_block_list_; in create_new_page()
131 first_block->num_free_blocks = sizeof(page->bytes) / block_size_; in create_new_page()
133 free_block_list_ = first_block; in create_new_page()
/bionic/libc/bionic/
Dbionic_allocator.cpp215 small_object_block_record* const first_block = in alloc_page() local
218 first_block->next = nullptr; in alloc_page()
219 first_block->free_blocks_cnt = blocks_per_page_; in alloc_page()
221 page->free_block_list = first_block; in alloc_page()
/bionic/libc/kernel/uapi/linux/
Defs_fs_sb.h53 __u32 first_block; member