Lines Matching refs:table
52 * Search the table of static entrypoint functions for the named function
76 * Return dispatch table offset of the named static (built-in) function.
119 * table. For debugging only.
163 * Offset in the dispatch table where the pointer to the real function is
165 * added to the dispatch table, this will have the value ~0.
344 * The offset in the dispatch table of the named function. A pointer to the
484 * Return offset of entrypoint for named function within dispatch table.
566 * GL API table functions.
571 * Return size of dispatch table struct as number of functions (or
578 * The dispatch table size (number of entries) is the size of the
588 * Make sure there are no NULL pointers in the given dispatch table.
592 _glapi_check_table_not_null(const struct _glapi_table *table)
596 const void **tab = (const void **) table;
602 (void) table;
608 * Do some spot checks to be sure that the dispatch table
612 _glapi_check_table(const struct _glapi_table *table)
617 char *BeginFunc = (char*) &table->Begin;
618 GLuint offset = (BeginFunc - (char *) table) / sizeof(void *);
623 char *viewportFunc = (char*) &table->Viewport;
624 GLuint offset = (viewportFunc - (char *) table) / sizeof(void *);
629 char *VertexPointerFunc = (char*) &table->VertexPointer;
630 GLuint offset = (VertexPointerFunc - (char *) table) / sizeof(void *);
635 char *ResetMinMaxFunc = (char*) &table->ResetMinmax;
636 GLuint offset = (ResetMinMaxFunc - (char *) table) / sizeof(void *);
641 char *blendColorFunc = (char*) &table->BlendColor;
642 GLuint offset = (blendColorFunc - (char *) table) / sizeof(void *);
647 char *secondaryColor3fFunc = (char*) &table->SecondaryColor3fEXT;
648 GLuint offset = (secondaryColor3fFunc - (char *) table) / sizeof(void *);
653 char *pointParameterivFunc = (char*) &table->PointParameterivNV;
654 GLuint offset = (pointParameterivFunc - (char *) table) / sizeof(void *);
659 char *setFenceFunc = (char*) &table->SetFenceNV;
660 GLuint offset = (setFenceFunc - (char *) table) / sizeof(void *);
664 (void) table;