Searched defs:ralloc (Results 1 - 1 of 1) sorted by relevance

/external/mesa3d/src/glsl/
H A Dralloc.h25 * \file ralloc.h
27 * ralloc: a recursive memory allocator
29 * The ralloc memory allocator creates a hierarchy of allocated
37 * The conceptual working of ralloc was directly inspired by Andrew
38 * Tridgell's talloc, but ralloc is an independent implementation
43 * more sophisticated than ralloc in that it includes reference
60 * \def ralloc(ctx, type)
68 #define ralloc(ctx, type) ((type *) ralloc_size(ctx, sizeof(type))) macro
82 * Allocate a new ralloc context.
84 * While any ralloc'
[all...]

Completed in 71 milliseconds