Lines Matching refs:table
33 #include "table.h" /* for MAPI_TABLE_NUM_SLOTS */
72 * Return size of dispatch table struct as number of functions (or
100 * The offset in the dispatch table of the named function. A pointer to the
194 * Return offset of entrypoint for named function within dispatch table.
226 /** Return pointer to new dispatch table filled with no-op functions */
230 struct _glapi_table *table;
235 table = malloc(num_entries * sizeof(mapi_func));
236 if (table) {
237 memcpy(table, table_noop_array, num_entries * sizeof(mapi_func));
239 return table;