Home
last modified time | relevance | path

Searched refs:ralloc_ctx (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/compiler/glsl/glcpp/
Dpp.c225 glcpp_preprocess(void *ralloc_ctx, const char **shader, char **info_log, in glcpp_preprocess() argument
250 ralloc_steal(ralloc_ctx, parser->output->buf); in glcpp_preprocess()
Dglcpp.h246 glcpp_preprocess(void *ralloc_ctx, const char **shader, char **info_log,
/external/mesa3d/src/util/
Dralloc.h549 void *linear_alloc_parent(void *ralloc_ctx, unsigned size);
559 void *linear_zalloc_parent(void *ralloc_ctx, unsigned size);
Dralloc.c645 create_linear_node(void *ralloc_ctx, unsigned min_size) in create_linear_node() argument
654 node = ralloc_size(ralloc_ctx, sizeof(linear_header) + min_size); in create_linear_node()
663 node->ralloc_parent = ralloc_ctx; in create_linear_node()
705 linear_alloc_parent(void *ralloc_ctx, unsigned size) in linear_alloc_parent() argument
709 if (unlikely(!ralloc_ctx)) in linear_alloc_parent()
714 node = create_linear_node(ralloc_ctx, size); in linear_alloc_parent()