Searched refs:linear_strdup (Results 1 – 8 of 8) sorted by relevance
/external/mesa3d/src/util/tests/ |
D | linear_test.cpp | 34 char *s = linear_strdup(lin_ctx, "hello,"); in TEST() 47 char *s = linear_strdup(lin_ctx, "hello, world"); in TEST()
|
/external/virglrenderer/src/mesa/util/ |
D | ralloc.h | 588 char *linear_strdup(void *parent, const char *str);
|
D | ralloc.c | 812 linear_strdup(void *parent, const char *str) in linear_strdup() function
|
/external/mesa3d/src/compiler/glsl/glcpp/ |
D | glcpp-parse.y | 594 $$.undefined_macro = linear_strdup(parser->linalloc, $1); 896 node->str = linear_strdup(parser->linalloc, str); in _string_list_append_item() 1423 str = linear_strdup(parser->linalloc, token->value.str); in _token_paste() 2016 str = linear_strdup(parser->linalloc, token->value.str); in _glcpp_parser_expand_node() 2069 node->identifier = linear_strdup(parser->linalloc, identifier); in _parser_active_list_push() 2282 macro->identifier = linear_strdup(parser->linalloc, identifier); in _define_object_macro() 2317 macro->identifier = linear_strdup(parser->linalloc, identifier); in _define_function_macro()
|
/external/mesa3d/src/util/ |
D | ralloc.h | 663 char *linear_strdup(linear_ctx *ctx, const char *str) MALLOCLIKE;
|
D | ralloc.c | 1199 linear_strdup(linear_ctx *ctx, const char *str) in linear_strdup() function
|
/external/mesa3d/src/compiler/ |
D | glsl_types.c | 83 t->name_id = (uintptr_t)linear_strdup(lin_ctx, name); in make_vector_matrix_type() 111 const char *copied_name = linear_strdup(lin_ctx, name); in make_struct_type() 118 copied_fields[i].name = linear_strdup(lin_ctx, fields[i].name); in make_struct_type() 149 const char *copied_name = linear_strdup(lin_ctx, name); in make_interface_type() 156 copied_fields[i].name = linear_strdup(lin_ctx, fields[i].name); in make_interface_type() 175 t->name_id = (uintptr_t)linear_strdup(lin_ctx, subroutine_name); in make_subroutine_type()
|
/external/mesa3d/src/compiler/glsl/ |
D | glsl_lexer.ll | 375 /* We're not doing linear_strdup here, to avoid an implicit call 792 /* We're not doing linear_strdup here, to avoid an implicit call on
|