Home | History | Annotate | Download | only in glsl

Lines Matching refs:table

43  * type safe and some symbol table invariants.
48 _glsl_symbol_table_destructor (glsl_symbol_table *table)
50 table->~glsl_symbol_table();
58 void *table;
60 table = ralloc_size(ctx, size);
61 assert(table != NULL);
63 ralloc_set_destructor(table, (void (*)(void*)) _glsl_symbol_table_destructor);
65 return table;
71 static void operator delete(void *table)
73 ralloc_set_destructor(table, NULL);
74 ralloc_free(table);
91 * \name Methods to add symbols to the table
110 * \name Methods to get symbols from the table
121 struct _mesa_symbol_table *table;