/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/common/ |
D | swr_assert.cpp | 124 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/ |
D | pixelshader9.c | 36 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()
|
D | vertexshader9.c | 38 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()
|
D | vertexshader9.h | 140 const DWORD *pFunction, void *cso ); 145 const DWORD *pFunction, void *cso );
|
D | pixelshader9.h | 147 const DWORD *pFunction, void *cso ); 152 const DWORD *pFunction, void *cso );
|
D | device9.h | 710 const DWORD *pFunction, 792 const DWORD *pFunction,
|
D | device9.c | 3434 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()
|
D | nine_lock.c | 1611 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/ |
D | swr_shader.cpp | 1552 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/ |
D | graph_data_service_impl.cc | 30 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/ |
D | JitManager.cpp | 416 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()
|
D | JitManager.h | 171 void DumpAsm(llvm::Function* pFunction, const char* fileName);
|
/third_party/mesa3d/include/D3D9/ |
D | d3d9.h | 249 …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/ |
D | vkDeviceDriverImpl.inl | 1060 …ateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction) const 1062 return m_vk.createCuFunctionNVX(device, pCreateInfo, pAllocator, pFunction);
|
D | vkVirtualDeviceInterface.inl | 215 …foNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction) const = 0;
|
D | vkConcreteDeviceInterface.inl | 215 …teInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction) const;
|
D | vkNullDriverImpl.inl | 166 …ionCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction) argument 169 …VK_NULL_RETURN((*pFunction = allocateNonDispHandle<CuFunctionNVX, VkCuFunctionNVX>(device, pCreate…
|
D | vkFunctionPointerTypes.inl | 306 …onCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction);
|
D | vkVulkan_c.inl | 10053 …onCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction); 10069 VkCuFunctionNVX* pFunction);
|
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
D | vulkan.hpp | 3338 … VkCuFunctionNVX * pFunction ) const VULKAN_HPP_NOEXCEPT in vkCreateCuFunctionNVX() 3340 return ::vkCreateCuFunctionNVX( device, pCreateInfo, pAllocator, pFunction ); in vkCreateCuFunctionNVX()
|
D | vulkan_core.h | 8931 …onCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction); 8947 VkCuFunctionNVX* pFunction);
|
/third_party/vulkan-headers/include/vulkan/ |
D | vulkan.hpp | 3211 … VkCuFunctionNVX * pFunction ) const VULKAN_HPP_NOEXCEPT in vkCreateCuFunctionNVX() 3213 return ::vkCreateCuFunctionNVX( device, pCreateInfo, pAllocator, pFunction ); in vkCreateCuFunctionNVX()
|
D | vulkan_core.h | 9102 …onCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction); 9118 VkCuFunctionNVX* pFunction);
|
/third_party/skia/third_party/externals/dawn/third_party/khronos/vulkan/ |
D | vulkan_core.h | 9091 …onCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction); 9107 VkCuFunctionNVX* pFunction);
|
/third_party/mesa3d/include/vulkan/ |
D | vulkan_core.h | 8899 …onCreateInfoNVX* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkCuFunctionNVX* pFunction); 8915 VkCuFunctionNVX* pFunction);
|