Home
last modified time | relevance | path

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

/hardware/google/gfxstream/guest/mesa/src/util/
Dralloc.h481 typedef struct gc_ctx gc_ctx; typedef
491 gc_ctx *gc_context(const void *parent);
501 void *gc_alloc_size(gc_ctx *ctx, size_t size, size_t align) MALLOCLIKE;
502 void *gc_zalloc_size(gc_ctx *ctx, size_t size, size_t align) MALLOCLIKE;
504 gc_ctx *gc_get_context(void *ptr);
506 void gc_sweep_start(gc_ctx *ctx);
507 void gc_mark_live(gc_ctx *ctx, const void *mem);
508 void gc_sweep_end(gc_ctx *ctx);
Dralloc.c583 gc_ctx *ctx;
605 struct gc_ctx { struct
664 gc_ctx *
667 gc_ctx *ctx = rzalloc(parent, gc_ctx); in gc_context()
777 create_slab(gc_ctx *ctx, unsigned bucket) in create_slab()
796 gc_alloc_size(gc_ctx *ctx, size_t size, size_t align) in gc_alloc_size()
844 gc_zalloc_size(gc_ctx *ctx, size_t size, size_t align) in gc_zalloc_size()
869 gc_ctx *gc_get_context(void *ptr) in gc_get_context()
880 gc_sweep_start(gc_ctx *ctx) in gc_sweep_start()
889 gc_mark_live(gc_ctx *ctx, const void *mem) in gc_mark_live()
[all …]
/hardware/google/gfxstream/guest/mesa/src/util/tests/
Dgc_alloc_tests.cpp38 gc_ctx *ctx = gc_context(NULL); in TEST()