| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/codegen/templates/ |
| H A D | gen_backend.cpp | 39 %for func in funcList: 40 ${func}
|
| H A D | gen_rasterizer.cpp | 40 %for func in funcList: 41 ${func}
|
| H A D | gen_builder.hpp | 39 %for func in functions: 40 <%argList = ', '.join(func['args'])%>\ 41 ${func['decl']} 44 %if len(func['args']) != 0: 45 SmallVector<Type*, ${len(func['args'])}> argTypes; 46 %for arg in func['args']: 49 FunctionType* pFuncTy = FunctionType::get(${ func['returnType'] }, argTypes, false); 51 FunctionType* pFuncTy = FunctionType::get(${ func['returnType'] }, {}, false); 54 Function* pFunc = cast<Function>(JM()->mpCurrentModule->getOrInsertFunction("meta.intrinsic.${func['name']}", pFuncTy).getCallee()); 56 Function* pFunc = cast<Function>(JM()->mpCurrentModule->getOrInsertFunction("meta.intrinsic.${func['nam [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/codegen/templates/ |
| H A D | gen_backend.cpp | 39 %for func in funcList: 40 ${func}
|
| H A D | gen_rasterizer.cpp | 40 %for func in funcList: 41 ${func}
|
| H A D | gen_builder.hpp | 39 %for func in functions: 40 <%argList = ', '.join(func['args'])%>\ 41 ${func['decl']} 44 %if len(func['args']) != 0: 45 SmallVector<Type*, ${len(func['args'])}> argTypes; 46 %for arg in func['args']: 56 FunctionType* pFuncTy = FunctionType::get(${ func['returnType'] }, argTypes, false); 58 FunctionType* pFuncTy = FunctionType::get(${ func['returnType'] }, {}, false); 61 Function* pFunc = cast<Function>(JM()->mpCurrentModule->getOrInsertFunction("meta.intrinsic.${func['name']}", pFuncTy).getCallee()); 63 Function* pFunc = cast<Function>(JM()->mpCurrentModule->getOrInsertFunction("meta.intrinsic.${func['nam [all...] |
| /xsrc/external/mit/xorg-server/dist/test/ |
| H A D | tests-common.h | 8 #define run_test(func) run_test_in_child(func, #func) 10 void run_test_in_child(int (*func)(void), const char *funcname);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/ |
| H A D | lima_parser.h | 90 *lima_get_compare_func_string(int func) { argument 91 if ((func >= 0) && (func <= 7)) 92 return PIPE_COMPARE_FUNC_STRING[func]; 98 *lima_get_stencil_op_string(int func) { argument 99 if ((func >= 0) && (func <= 7)) 100 return PIPE_STENCIL_OP_STRING[func]; 106 *lima_get_blend_func_string(int func) { argument 107 if ((func > 114 lima_get_blendfactor_string(int func) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mapi/glapi/gen/ |
| H A D | gl_procs.py | 87 for func in api.functionIterateByOffset(): 88 name = func.dispatch_name() 89 self.printFunctionString(func.name) 90 table.append((base_offset, "gl" + name, "gl" + name, "NULL", func.offset)) 95 base_offset += len(func.name) + 3 98 for func in api.functionIterateByOffset(): 99 for n in func.entry_points: 100 if n != func.name: 101 name = func.dispatch_name() 104 if func [all...] |
| H A D | gl_marshal.py | 82 def print_sync_call(self, func): 84 func.name, func.get_called_parameter_string()) 85 if func.return_type == 'void': 90 def print_sync_dispatch(self, func): 91 out('debug_print_sync_fallback("{0}");'.format(func.name)) 92 self.print_sync_call(func) 94 def print_sync_body(self, func): 95 out('/* {0}: marshalled synchronously */'.format(func.name)) 96 out('static {0} GLAPIENTRY'.format(func [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mapi/glapi/ |
| H A D | glapi_nop.c | 58 _glapi_set_warning_func(_glapi_proc func) argument 74 _glapi_set_nop_handler(_glapi_nop_handler_proc func) argument 76 nop_handler = func; 84 nop(const char *func) argument 87 nop_handler(func); 107 #define NAME(func) NoOp##func 108 #define DISPATCH(func, args, msg) nop(#func); 109 #define RETURN_DISPATCH(func, arg [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mapi/glapi/ |
| H A D | glapi_nop.c | 58 _glapi_set_warning_func(_glapi_proc func) argument 74 _glapi_set_nop_handler(_glapi_nop_handler_proc func) argument 76 nop_handler = func; 84 nop(const char *func) argument 87 nop_handler(func); 107 #define NAME(func) NoOp##func 108 #define DISPATCH(func, args, msg) nop(#func); 109 #define RETURN_DISPATCH(func, arg [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mapi/glapi/gen/ |
| H A D | gl_procs.py | 85 for func in api.functionIterateByOffset(): 86 name = func.dispatch_name() 87 self.printFunctionString(func.name) 88 table.append((base_offset, "gl" + name, "gl" + name, "NULL", func.offset)) 93 base_offset += len(func.name) + 3 96 for func in api.functionIterateByOffset(): 97 for n in func.entry_points: 98 if n != func.name: 99 name = func.dispatch_name() 102 if func [all...] |
| H A D | gl_marshal_h.py | 59 for func in api.functionIterateAll(): 60 flavor = func.marshal_flavor() 63 print(' DISPATCH_CMD_{0},'.format(func.name)) 68 for func in api.functionIterateAll(): 69 flavor = func.marshal_flavor() 71 print('struct marshal_cmd_{0};'.format(func.name)) 73 'const struct marshal_cmd_{0} *cmd, const uint64_t *last);').format(func.name)) 74 print('{0} GLAPIENTRY _mesa_marshal_{1}({2});'.format(func.return_type, func.name, func [all...] |
| H A D | gl_marshal.py | 82 def print_sync_call(self, func, unmarshal = 0): 84 func.name, func.get_called_parameter_string()) 85 if func.return_type == 'void' or unmarshal: 87 if func.marshal_call_after and not unmarshal: 88 out(func.marshal_call_after); 91 assert not func.marshal_call_after 93 def print_sync_body(self, func): 94 out('/* {0}: marshalled synchronously */'.format(func.name)) 95 out('{0} GLAPIENTRY'.format(func [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/hgl/ |
| H A D | GLDispatcher.cpp | 28 #define NAME(func) gl##func 30 #define DISPATCH(func, args, msg) \ 33 (dispatch->func) args 35 #define RETURN_DISPATCH(func, args, msg) \ 38 return (dispatch->func) args
|
| /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/ |
| H A D | glut_fcb.c | 22 __glutSetFCB(int which, GLUTproc func) argument 27 __glutCurrentWindow->fdisplay = (GLUTdisplayFCB) func; 30 __glutCurrentWindow->freshape = (GLUTreshapeFCB) func; 33 __glutCurrentWindow->fmouse = (GLUTmouseFCB) func; 36 __glutCurrentWindow->fmotion = (GLUTmotionFCB) func; 39 __glutCurrentWindow->fpassive = (GLUTpassiveFCB) func; 42 __glutCurrentWindow->fentry = (GLUTentryFCB) func; 45 __glutCurrentWindow->fkeyboard = (GLUTkeyboardFCB) func; 48 __glutCurrentWindow->fkeyboardUp = (GLUTkeyboardFCB) func; 51 __glutCurrentWindow->fwindowStatus = (GLUTwindowStatusFCB) func; [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/ |
| H A D | nine_debug.c | 62 const char *func, 84 const char *f = func ? strrchr(func, '_') : NULL; 86 /* inside a class this will print nine:tid:classinlowercase:func: while 87 * outside a class (rarely used) it will just print nine:tid:func 90 if (f && strncmp(func, "Nine", 4) == 0) { 93 for (func += 4; func != f; ++func) { *ptr++ = tolower(*func); } 61 _nine_debug_printf(unsigned long flag,const char * func,const char * fmt,...) argument 113 _nine_stub(const char * file,const char * func,unsigned line) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/ |
| H A D | nine_debug.c | 62 const char *func, 81 const char *f = func ? strrchr(func, '_') : NULL; 83 /* inside a class this will print nine:tid:classinlowercase:func: while 84 * outside a class (rarely used) it will just print nine:tid:func 87 if (f && strncmp(func, "Nine", 4) == 0) { 90 for (func += 4; func != f; ++func) { *ptr++ = tolower(*func); } 61 _nine_debug_printf(unsigned long flag,const char * func,const char * fmt,...) argument 110 _nine_stub(const char * file,const char * func,unsigned line) argument [all...] |
| /xsrc/external/mit/ctwm/dist/ |
| H A D | win_decorations_init.h | 10 void SetCurrentTBAction(int button, int mods, int func, char *action, 12 bool CreateTitleButton(char *name, int func, char *action,
|
| H A D | functions.c | 76 static bool DeferExecution(int context, int func, Cursor cursor); 77 static bool should_defer(int func); 78 static Cursor defer_cursor(int func); 88 * func - the function to execute 140 switch(func) { 157 if(should_defer(func)) { 159 Cursor dc = defer_cursor(func); 165 if(DeferExecution(context, func, dc)) { 193 switch(func) { 234 switch(func) { 367 DeferExecution(int context,int func,Cursor cursor) argument 413 should_defer(int func) argument 427 defer_cursor(int func) argument [all...] |
| /xsrc/external/mit/libepoxy/dist/test/ |
| H A D | glx_glxgetprocaddress_nocontext.c | 46 void *func; local in function:main 52 func = glXGetProcAddress((const GLubyte *)"glGetString"); 53 if (!func)
|
| /xsrc/external/mit/libX11/dist/src/ |
| H A D | Synchro.c | 42 int (*func)(Display *) = NULL; local in function:XSynchronize 45 func = _XSyncFunction; 50 dpy->savedsynchandler = func; 53 dpy->synchandler = func; 61 int (*func)( 71 dpy->savedsynchandler = func; 74 dpy->synchandler = func;
|
| /xsrc/external/mit/MesaLib.old/dist/src/egl/generate/ |
| H A D | gen_egl_dispatch.py | 58 func = xmlByName[name] 59 eglFunc = fixupEglFunc(func, eglFunc) 60 functions.append((func, eglFunc)) 71 def fixupEglFunc(func, eglFunc): 84 raise ValueError("Invalid dispatch method %r for function %r" % (result["method"], func.name)) 86 if func.hasReturn(): 88 result["retval"] = getDefaultReturnValue(func.rt) 108 for (func, eglFunc) in functions: 109 text += generateGuardBegin(func, eglFunc) 110 text += " __EGL_DISPATCH_" + func [all...] |
| /xsrc/external/mit/MesaLib/dist/src/egl/generate/ |
| H A D | gen_egl_dispatch.py | 58 func = xmlByName[name] 59 eglFunc = fixupEglFunc(func, eglFunc) 60 functions.append((func, eglFunc)) 71 def fixupEglFunc(func, eglFunc): 84 raise ValueError("Invalid dispatch method %r for function %r" % (result["method"], func.name)) 86 if func.hasReturn(): 88 result["retval"] = getDefaultReturnValue(func.rt) 110 for (func, eglFunc) in functions: 111 text += generateGuardBegin(func, eglFunc) 112 text += " __EGL_DISPATCH_" + func [all...] |