Searched refs:ExtEntryTable (Results 1 - 3 of 3) sorted by relevance

/xsrc/external/mit/xorg-server.old/dist/glx/
H A Dglapi.c369 static struct _glapi_function ExtEntryTable[MAX_EXTENSION_FUNCS]; variable in typeref:struct:_glapi_function[]
391 entry = &ExtEntryTable[NumExtEntryPoints];
393 ExtEntryTable[NumExtEntryPoints].name = strdup(funcName);
394 ExtEntryTable[NumExtEntryPoints].parameter_signature = NULL;
395 ExtEntryTable[NumExtEntryPoints].dispatch_offset = ~0;
494 if (strcmp(ExtEntryTable[j].name, function_names[i]) == 0) {
499 if (ExtEntryTable[j].dispatch_offset != ~0) {
500 if (strcmp(real_sig, ExtEntryTable[j].parameter_signature) != 0)
503 if ((offset != ~0) && (ExtEntryTable[j].dispatch_offset != offset)) {
507 offset = ExtEntryTable[
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mapi/glapi/
H A Dglapi_getproc.c184 static struct _glapi_function ExtEntryTable[MAX_EXTENSION_FUNCS]; variable in typeref:struct:_glapi_function[]
193 if (strcmp(ExtEntryTable[i].name, funcName) == 0) {
194 return & ExtEntryTable[i];
230 if (ExtEntryTable[i].dispatch_offset == offset) {
231 return ExtEntryTable[i].name;
291 entry = & ExtEntryTable[NumExtEntryPoints];
/xsrc/external/mit/MesaLib/dist/src/mapi/glapi/
H A Dglapi_getproc.c184 static struct _glapi_function ExtEntryTable[MAX_EXTENSION_FUNCS]; variable in typeref:struct:_glapi_function[]
193 if (strcmp(ExtEntryTable[i].name, funcName) == 0) {
194 return & ExtEntryTable[i];
230 if (ExtEntryTable[i].dispatch_offset == offset) {
231 return ExtEntryTable[i].name;
291 entry = & ExtEntryTable[NumExtEntryPoints];

Completed in 4 milliseconds