Lines Matching defs:table
33 #include "table.h" /* for MAPI_TABLE_NUM_SLOTS */
68 * Return size of dispatch table struct as number of functions (or
96 * The offset in the dispatch table of the named function. A pointer to the
202 * Return offset of entrypoint for named function within dispatch table.
234 /** Return pointer to new dispatch table filled with no-op functions */
238 struct _glapi_table *table;
243 table = malloc(num_entries * sizeof(mapi_func));
244 if (table) {
245 memcpy(table, table_noop_array, num_entries * sizeof(mapi_func));
247 return table;