Home
last modified time | relevance | path

Searched refs:pFunction (Results 1 – 13 of 13) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
Dswr_assert.cpp121 const char* pFunction, in SwrAssert() argument
137 fprintf(stderr, "\t%s\n", pFunction); in SwrAssert()
161 sprintf_s(msgBuf, "\t%s\n", pFunction); in SwrAssert()
243 const char* pFunction, in SwrTrace() argument
252 fprintf(stderr, "%s(%d): TRACE in %s:\n", pFileName, lineNum, pFunction); in SwrTrace()
271 sprintf_s(msgBuf, "%s(%d): TRACE in %s\n", pFileName, lineNum, pFunction); in SwrTrace()
/external/mesa3d/src/gallium/state_trackers/nine/
Dpixelshader9.c36 const DWORD *pFunction, void *cso ) in NinePixelShader9_ctor() argument
43 DBG("This=%p pParams=%p pFunction=%p cso=%p\n", This, pParams, pFunction, cso); in NinePixelShader9_ctor()
56 info.byte_code = pFunction; in NinePixelShader9_ctor()
72 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NinePixelShader9_ctor()
204 const DWORD *pFunction, void *cso ) in NinePixelShader9_new() argument
206 NINE_DEVICE_CHILD_NEW(PixelShader9, ppOut, pDevice, pFunction, cso); in NinePixelShader9_new()
Dvertexshader9.c38 const DWORD *pFunction, void *cso ) in NineVertexShader9_ctor() argument
47 This, pParams, pFunction, cso); in NineVertexShader9_ctor()
61 info.byte_code = pFunction; in NineVertexShader9_ctor()
88 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NineVertexShader9_ctor()
263 const DWORD *pFunction, void *cso ) in NineVertexShader9_new() argument
265 NINE_DEVICE_CHILD_NEW(VertexShader9, ppOut, pDevice, pFunction, cso); in NineVertexShader9_new()
Dvertexshader9.h123 const DWORD *pFunction, void *cso );
128 const DWORD *pFunction, void *cso );
Dpixelshader9.h119 const DWORD *pFunction, void *cso );
124 const DWORD *pFunction, void *cso );
Ddevice9.h687 const DWORD *pFunction,
769 const DWORD *pFunction,
Dnine_lock.c1611 const DWORD *pFunction, in LockDevice9_CreateVertexShader() argument
1616 r = NineDevice9_CreateVertexShader(This, pFunction, ppShader); in LockDevice9_CreateVertexShader()
1797 const DWORD *pFunction, in LockDevice9_CreatePixelShader() argument
1802 r = NineDevice9_CreatePixelShader(This, pFunction, ppShader); in LockDevice9_CreatePixelShader()
Ddevice9.c3154 const DWORD *pFunction, in NineDevice9_CreateVertexShader() argument
3160 DBG("This=%p pFunction=%p ppShader=%p\n", This, pFunction, ppShader); in NineDevice9_CreateVertexShader()
3162 hr = NineVertexShader9_new(This, &vs, pFunction, NULL); in NineDevice9_CreateVertexShader()
3566 const DWORD *pFunction, in NineDevice9_CreatePixelShader() argument
3572 DBG("This=%p pFunction=%p ppShader=%p\n", This, pFunction, ppShader); in NineDevice9_CreatePixelShader()
3574 hr = NinePixelShader9_new(This, &ps, pFunction, NULL); in NineDevice9_CreatePixelShader()
/external/mesa3d/src/gallium/drivers/swr/
Dswr_shader.cpp592 auto pFunction = Function::Create(vsFuncType, in CompileGS() local
599 pFunction->addAttributes(AttributeSet::FunctionIndex, attrSet); in CompileGS()
601 pFunction->addAttributes(AttributeList::FunctionIndex, attrBuilder); in CompileGS()
604 BasicBlock *block = BasicBlock::Create(JM()->mContext, "entry", pFunction); in CompileGS()
608 auto argitr = pFunction->arg_begin(); in CompileGS()
698 gallivm_verify_function(gallivm, wrap(pFunction)); in CompileGS()
702 (PFN_GS_FUNC)gallivm_jit_function(gallivm, wrap(pFunction)); in CompileGS()
760 auto pFunction = Function::Create(vsFuncType, in CompileVS() local
767 pFunction->addAttributes(AttributeSet::FunctionIndex, attrSet); in CompileVS()
769 pFunction->addAttributes(AttributeList::FunctionIndex, attrBuilder); in CompileVS()
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
DJitManager.cpp333 void JitManager::DumpAsm(Function* pFunction, const char* fileName) in DumpAsm() argument
349 Module* pModule = pFunction->getParent(); in DumpAsm()
350 const char *funcName = pFunction->getName().data(); in DumpAsm()
DJitManager.h177 void DumpAsm(llvm::Function* pFunction, const char* fileName);
/external/mesa3d/include/D3D9/
Dd3d9.h249 …virtual HRESULT WINAPI CreateVertexShader(const DWORD *pFunction, IDirect3DVertexShader9 **ppShade…
264 …virtual HRESULT WINAPI CreatePixelShader(const DWORD *pFunction, IDirect3DPixelShader9 **ppShader)…
837 …HRESULT (WINAPI *CreateVertexShader)(IDirect3DDevice9 *This, const DWORD *pFunction, IDirect3DVert…
852 …HRESULT (WINAPI *CreatePixelShader)(IDirect3DDevice9 *This, const DWORD *pFunction, IDirect3DPixel…
1088 …HRESULT (WINAPI *CreateVertexShader)(IDirect3DDevice9Ex *This, const DWORD *pFunction, IDirect3DVe…
1103 …HRESULT (WINAPI *CreatePixelShader)(IDirect3DDevice9Ex *This, const DWORD *pFunction, IDirect3DPix…
/external/swiftshader/include/Direct3D/
Dd3d8.h327 …STDMETHOD(CreateVertexShader)(THIS_ CONST DWORD* pDeclaration,CONST DWORD* pFunction,DWORD* pHandl… in DECLARE_INTERFACE_()
339 STDMETHOD(CreatePixelShader)(THIS_ CONST DWORD* pFunction,DWORD* pHandle) PURE; in DECLARE_INTERFACE_()