Home
last modified time | relevance | path

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

12

/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/common/
Dswr_assert.cpp124 const char* pFunction, in SwrAssert() argument
140 fprintf(stderr, "\t%s\n", pFunction); in SwrAssert()
164 sprintf_s(msgBuf, "\t%s\n", pFunction); in SwrAssert()
247 const char* pFileName, uint32_t lineNum, const char* pFunction, const char* pFmtString, ...) in SwrTrace() argument
254 fprintf(stderr, "%s(%d): TRACE in %s:\n", pFileName, lineNum, pFunction); in SwrTrace()
273 sprintf_s(msgBuf, "%s(%d): TRACE in %s\n", pFileName, lineNum, pFunction); in SwrTrace()
/third_party/mesa3d/src/gallium/frontends/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()
77 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NinePixelShader9_ctor()
251 const DWORD *pFunction, void *cso ) in NinePixelShader9_new() argument
254 NINE_DEVICE_CHILD_BIND_NEW(PixelShader9, ppOut, pDevice, pFunction, cso); in NinePixelShader9_new()
256 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()
92 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NineVertexShader9_ctor()
300 const DWORD *pFunction, void *cso ) in NineVertexShader9_new() argument
303 NINE_DEVICE_CHILD_BIND_NEW(VertexShader9, ppOut, pDevice, pFunction, cso); in NineVertexShader9_new()
305 NINE_DEVICE_CHILD_NEW(VertexShader9, ppOut, pDevice, pFunction, cso); in NineVertexShader9_new()
Dvertexshader9.h140 const DWORD *pFunction, void *cso );
145 const DWORD *pFunction, void *cso );
Dpixelshader9.h147 const DWORD *pFunction, void *cso );
152 const DWORD *pFunction, void *cso );
Ddevice9.h710 const DWORD *pFunction,
792 const DWORD *pFunction,
Ddevice9.c3434 const DWORD *pFunction, in NineDevice9_CreateVertexShader() argument
3440 DBG("This=%p pFunction=%p ppShader=%p\n", This, pFunction, ppShader); in NineDevice9_CreateVertexShader()
3442 user_assert(pFunction && ppShader, D3DERR_INVALIDCALL); in NineDevice9_CreateVertexShader()
3444 hr = NineVertexShader9_new(This, &vs, pFunction, NULL); in NineDevice9_CreateVertexShader()
3868 const DWORD *pFunction, in NineDevice9_CreatePixelShader() argument
3874 DBG("This=%p pFunction=%p ppShader=%p\n", This, pFunction, ppShader); in NineDevice9_CreatePixelShader()
3876 user_assert(pFunction && ppShader, D3DERR_INVALIDCALL); in NineDevice9_CreatePixelShader()
3878 hr = NinePixelShader9_new(This, &ps, pFunction, NULL); in NineDevice9_CreatePixelShader()
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()
/third_party/mesa3d/src/gallium/drivers/swr/
Dswr_shader.cpp1552 auto pFunction = Function::Create(vsFuncType, in CompileGS() local
1559 pFunction->addAttributes(AttributeSet::FunctionIndex, attrSet); in CompileGS()
1561 pFunction->addAttributes(AttributeList::FunctionIndex, attrBuilder); in CompileGS()
1564 BasicBlock *block = BasicBlock::Create(JM()->mContext, "entry", pFunction); in CompileGS()
1568 auto argitr = pFunction->arg_begin(); in CompileGS()
1669 gallivm_verify_function(gallivm, wrap(pFunction)); in CompileGS()
1673 (PFN_GS_FUNC)gallivm_jit_function(gallivm, wrap(pFunction)); in CompileGS()
1779 auto pFunction = Function::Create(tesFuncType, in CompileTES() local
1787 pFunction->addAttributes(AttributeSet::FunctionIndex, attrSet); in CompileTES()
1789 pFunction->addAttributes(AttributeList::FunctionIndex, attrBuilder); in CompileTES()
[all …]
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/gnn/
Dgraph_data_service_impl.cc30 using pFunction = Status (GraphDataServiceImpl::*)(const GnnGraphDataRequestPb *, GnnGraphDataRespo… typedef
31 static std::unordered_map<uint32_t, pFunction> g_get_graph_data_func_ = {
109 pFunction func = iter->second; in GetGraphData()
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
DJitManager.cpp416 void JitManager::DumpAsm(Function* pFunction, const char* fileName) in DumpAsm() argument
431 Module* pModule = pFunction->getParent(); in DumpAsm()
432 const char* funcName = pFunction->getName().data(); in DumpAsm()
DJitManager.h171 void DumpAsm(llvm::Function* pFunction, const char* fileName);
/third_party/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…
/third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/
DvkDeviceDriverImpl.inl1060 …ateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction) const
1062 return m_vk.createCuFunctionNVX(device, pCreateInfo, pAllocator, pFunction);
DvkVirtualDeviceInterface.inl215 …foNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction) const = 0;
DvkConcreteDeviceInterface.inl215 …teInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction) const;
DvkNullDriverImpl.inl166 …ionCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction) argument
169 …VK_NULL_RETURN((*pFunction = allocateNonDispHandle<CuFunctionNVX, VkCuFunctionNVX>(device, pCreate…
DvkFunctionPointerTypes.inl306 …onCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction);
DvkVulkan_c.inl10053 …onCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction);
10069 VkCuFunctionNVX* pFunction);
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
Dvulkan.hpp3338 … VkCuFunctionNVX * pFunction ) const VULKAN_HPP_NOEXCEPT in vkCreateCuFunctionNVX()
3340 return ::vkCreateCuFunctionNVX( device, pCreateInfo, pAllocator, pFunction ); in vkCreateCuFunctionNVX()
Dvulkan_core.h8931 …onCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction);
8947 VkCuFunctionNVX* pFunction);
/third_party/vulkan-headers/include/vulkan/
Dvulkan.hpp3211 … VkCuFunctionNVX * pFunction ) const VULKAN_HPP_NOEXCEPT in vkCreateCuFunctionNVX()
3213 return ::vkCreateCuFunctionNVX( device, pCreateInfo, pAllocator, pFunction ); in vkCreateCuFunctionNVX()
Dvulkan_core.h9102 …onCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction);
9118 VkCuFunctionNVX* pFunction);
/third_party/skia/third_party/externals/dawn/third_party/khronos/vulkan/
Dvulkan_core.h9091 …onCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction);
9107 VkCuFunctionNVX* pFunction);
/third_party/mesa3d/include/vulkan/
Dvulkan_core.h8899 …onCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction);
8915 VkCuFunctionNVX* pFunction);

12