/prebuilts/go/darwin-x86/misc/cgo/testso/ |
cgoso.go | 20 void sofunc(void); 26 C.sofunc()
|
cgoso_c.c | 16 __declspec(dllexport) void sofunc(void); 27 void sofunc(void) function
|
/prebuilts/go/linux-x86/misc/cgo/testso/ |
cgoso.go | 20 void sofunc(void); 26 C.sofunc()
|
cgoso_c.c | 16 __declspec(dllexport) void sofunc(void); 27 void sofunc(void) function
|
/external/compiler-rt/test/tsan/ |
dlclose.cc | 12 void sofunc() { function 42 void *f = dlsym(lib, "sofunc");
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
streamout_jit.cpp | 183 void buildStream(const STREAMOUT_COMPILE_STATE& state, const STREAMOUT_STREAM& streamState, Value* pSoCtx, BasicBlock* returnBB, Function* soFunc) 206 BasicBlock* validBB = BasicBlock::Create(JM()->mContext, "valid", soFunc); 275 Function* soFunc = Function::Create(fTy, GlobalValue::ExternalLinkage, fnName.str(), JM()->mpCurrentModule); 278 BasicBlock* entry = BasicBlock::Create(JM()->mContext, "entry", soFunc); 279 BasicBlock* returnBB = BasicBlock::Create(JM()->mContext, "return", soFunc); 284 auto argitr = soFunc->arg_begin(); 289 buildStream(state, streamState, pSoCtx, returnBB, soFunc); 296 JitManager::DumpToFile(soFunc, "SoFunc"); 312 passes.run(*soFunc); [all...] |
/external/mesa3d/src/gallium/drivers/swr/ |
swr_draw.cpp | 98 if (!ctx->vs->soFunc[info->mode]) { 135 ctx->vs->soFunc[info->mode] = JitCompileStreamout(hJitMgr, state); 136 debug_printf("so shader %p\n", ctx->vs->soFunc[info->mode]); 137 assert(ctx->vs->soFunc[info->mode] && "Error: SoShader = NULL"); 140 SwrSetSoFunc(ctx->swrContext, ctx->vs->soFunc[info->mode], 0);
|
swr_state.h | 58 PFN_SO_FUNC soFunc[PIPE_PRIM_MAX] {0};
|