Home | History | Annotate | Download | only in glapi

Lines Matching refs:dispatch

28  * Arch-specific code for manipulating GL API entrypoints (dispatch stubs).
90 * Generate a dispatch function (entrypoint) which jumps through
91 * the given slot number (offset) in the current dispatch table.
97 /* 32 is chosen as something of a magic offset. For x86, the dispatch
116 * This function inserts a new dispatch offset into the assembly language
197 unsigned long dispatch = __glapi_sparc_get_dispatch();
201 unsigned long dispatch = (unsigned long) &_glapi_Dispatch;
207 code[0] = template[0] | (dispatch >> 10);
210 code[2] = template[2] | (dispatch & 0x3ff);
220 code[0] = template[0] | (dispatch >> (32 + 10));
221 code[1] = template[1] | ((dispatch & 0xffffffff) >> 10);
223 code[2] = template[2] | ((dispatch >> 32) & 0x3ff);
229 code[6] = template[6] | (dispatch & 0x3ff);
232 code[0] = template[0] | (dispatch >> 10);
235 code[2] = template[2] | (dispatch & 0x3ff);