Searched refs:mempool (Results 1 – 17 of 17) sorted by relevance
/external/mesa3d/src/util/ |
D | slab.c | 283 slab_alloc_st(struct slab_mempool *mempool) in slab_alloc_st() argument 285 return slab_alloc(&mempool->child); in slab_alloc_st() 292 slab_free_st(struct slab_mempool *mempool, void *ptr) in slab_free_st() argument 294 slab_free(&mempool->child, ptr); in slab_free_st() 298 slab_destroy(struct slab_mempool *mempool) in slab_destroy() argument 300 slab_destroy_child(&mempool->child); in slab_destroy() 301 slab_destroy_parent(&mempool->parent); in slab_destroy() 311 slab_create(struct slab_mempool *mempool, in slab_create() argument 315 slab_create_parent(&mempool->parent, item_size, num_items); in slab_create() 316 slab_create_child(&mempool->child, &mempool->parent); in slab_create()
|
D | slab.h | 87 void slab_create(struct slab_mempool *mempool, 90 void slab_destroy(struct slab_mempool *mempool); 91 void *slab_alloc_st(struct slab_mempool *mempool); 92 void slab_free_st(struct slab_mempool *mempool, void *ptr);
|
/external/libunwind/include/ |
D | mempool.h | 61 struct mempool struct 84 extern void mempool_init (struct mempool *pool, 86 extern void *mempool_alloc (struct mempool *pool); 87 extern void mempool_free (struct mempool *pool, void *object);
|
D | map_info.h | 52 extern struct mempool map_pool;
|
D | dwarf.h | 220 extern struct mempool dwarf_reg_state_pool; 221 extern struct mempool dwarf_cie_info_pool;
|
/external/libunwind/src/mi/ |
D | mempool.c | 86 free_object (struct mempool *pool, void *object) in free_object() 96 add_memory (struct mempool *pool, char *mem, size_t size, size_t obj_size) in add_memory() 105 expand (struct mempool *pool) in expand() 127 mempool_init (struct mempool *pool, size_t obj_size, size_t reserve) in mempool_init() 154 mempool_alloc (struct mempool *pool) in mempool_alloc() 175 mempool_free (struct mempool *pool, void *object) in mempool_free()
|
D | map.c | 30 HIDDEN struct mempool map_pool;
|
/external/libunwind/src/dwarf/ |
D | global.c | 28 HIDDEN struct mempool dwarf_reg_state_pool; 29 HIDDEN struct mempool dwarf_cie_info_pool;
|
/external/mesa3d/src/freedreno/decode/ |
D | crashdec.c | 596 dump_cp_mem_pool(uint32_t *mempool) in dump_cp_mem_pool() argument 637 const uint32_t *next_pointers = small_mem_pool ? &mempool[0x800] : &mempool[0x1000]; in dump_cp_mem_pool() 740 const uint32_t *data1_ptr = small_mem_pool ? &mempool[0xc00] : &mempool[0x1800]; in dump_cp_mem_pool() 746 const uint32_t *data2_ptr = small_mem_pool ? &mempool[0x1000] : &mempool[0x2000]; in dump_cp_mem_pool() 799 uint32_t *chunk_ptr = &mempool[cur_block * 0x20 + cur_chunk * 4]; in dump_cp_mem_pool()
|
/external/libunwind/scripts/ |
D | kernel-files.txt | 19 $udir/src/mi/mempool.c $kdir/unwind/mempool.c
|
/external/libunwind/include/tdep-ia64/ |
D | libunwind_i.h | 218 struct mempool reg_state_pool; 219 struct mempool labeled_state_pool;
|
/external/oss-fuzz/projects/clamav/ |
D | build.sh | 24 ac_cv_c_mmap_anonymous=no ${SRC}/clamav-devel/configure --disable-mempool --enable-fuzz=yes --with-…
|
/external/libunwind/ |
D | Makefile.am | 45 include/compiler.h include/libunwind_i.h include/mempool.h \
|
D | Android.bp | 132 "src/mi/mempool.c",
|
/external/libunwind/src/x86_64/ |
D | Gtrace.c | 52 static struct mempool trace_cache_pool;
|
/external/libunwind/src/ |
D | Makefile.am | 101 mi/init.c mi/flush_cache.c mi/mempool.c mi/strerror.c
|
/external/mesa3d/docs/relnotes/ |
D | 19.0.0.rst | 1140 - util/slab: Rename slab_mempool typed parameters to mempool
|