HomeSort by relevance Sort by last modified time
    Searched refs:hieralloc_allocate (Results 1 - 3 of 3) sorted by null

  /external/mesa3d/src/talloc/
hieralloc.h 19 #define hieralloc(ctx, type) (type *)hieralloc_allocate(ctx, sizeof(type), #type)
20 #define hieralloc_size(ctx, size) hieralloc_allocate(ctx, size, "sz:"__location__)
21 #define hieralloc_new(ctx) hieralloc_allocate(ctx, 0, "nw:" __location__)
24 #define hieralloc_array(ctx, type, count) (type *)hieralloc_allocate(ctx, sizeof(type) * count, "ar:"#type)
31 void * hieralloc_allocate(const void * context, unsigned size, const char * name);
hieralloc.c 145 void * hieralloc_allocate(const void * context, unsigned size, const char * name) function
176 return hieralloc_allocate(context, size, name);
305 return hieralloc_allocate(NULL, 0, name);
330 void *p = hieralloc_allocate(ctx, size, name);
344 char * ret = (char *)hieralloc_allocate(ctx, len + 1, str);
364 //char * ret = hieralloc_allocate(str, sizeof(char) * (len + appendLen + 1), str);
411 char * ret = (char *)hieralloc_allocate(ctx, len + 1, fmt);
  /external/mesa3d/src/glsl/
glsl_symbol_table.cpp 60 this->mem_ctx = hieralloc_allocate(ctx, 0, "symbol table entries");

Completed in 29 milliseconds