Searched refs:pView (Results 1 - 13 of 13) sorted by relevance

/external/deqp/external/vulkancts/framework/vulkan/
H A DvkDeviceDriverImpl.inl180 VkResult DeviceDriver::createBufferView (VkDevice device, const VkBufferViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkBufferView* pView) const
182 return m_vk.createBufferView(device, pCreateInfo, pAllocator, pView);
205 VkResult DeviceDriver::createImageView (VkDevice device, const VkImageViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkImageView* pView) const
207 return m_vk.createImageView(device, pCreateInfo, pAllocator, pView);
H A DvkConcreteDeviceInterface.inl39 virtual VkResult createBufferView (VkDevice device, const VkBufferViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkBufferView* pView) const;
44 virtual VkResult createImageView (VkDevice device, const VkImageViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkImageView* pView) const;
H A DvkVirtualDeviceInterface.inl39 virtual VkResult createBufferView (VkDevice device, const VkBufferViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkBufferView* pView) const = 0;
44 virtual VkResult createImageView (VkDevice device, const VkImageViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkImageView* pView) const = 0;
H A DvkNullDriverImpl.inl52 VKAPI_ATTR VkResult VKAPI_CALL createBufferView (VkDevice device, const VkBufferViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkBufferView* pView)
55 VK_NULL_RETURN((*pView = allocateNonDispHandle<BufferView, VkBufferView>(device, pCreateInfo, pAllocator)));
64 VKAPI_ATTR VkResult VKAPI_CALL createImageView (VkDevice device, const VkImageViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkImageView* pView)
67 VK_NULL_RETURN((*pView = allocateNonDispHandle<ImageView, VkImageView>(device, pCreateInfo, pAllocator)));
H A DvkFunctionPointerTypes.inl56 typedef VKAPI_ATTR VkResult (VKAPI_CALL* CreateBufferViewFunc) (VkDevice device, const VkBufferViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkBufferView* pView);
61 typedef VKAPI_ATTR VkResult (VKAPI_CALL* CreateImageViewFunc) (VkDevice device, const VkImageViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkImageView* pView);
/external/vulkan-validation-layers/loader/
H A Dtrampoline.c1226 VkBufferView *pView) {
1231 return disp->CreateBufferView(device, pCreateInfo, pAllocator, pView);
1277 const VkAllocationCallbacks *pAllocator, VkImageView *pView) {
1282 return disp->CreateImageView(device, pCreateInfo, pAllocator, pView);
1224 vkCreateBufferView(VkDevice device, const VkBufferViewCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkBufferView *pView) argument
1276 vkCreateImageView(VkDevice device, const VkImageViewCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkImageView *pView) argument
/external/vulkan-validation-layers/layers/
H A Dparameter_validation.cpp2638 bool PostCreateBufferView(VkDevice device, VkBufferView *pView, VkResult result) { argument
2650 const VkAllocationCallbacks *pAllocator, VkBufferView *pView) {
2656 skipCall |= parameter_validation_vkCreateBufferView(my_data->report_data, pCreateInfo, pAllocator, pView);
2661 result = get_dispatch_table(pc_device_table_map, device)->CreateBufferView(device, pCreateInfo, pAllocator, pView);
2663 PostCreateBufferView(device, pView, result);
2824 bool PostCreateImageView(VkDevice device, VkImageView *pView, VkResult result) { argument
2836 const VkAllocationCallbacks *pAllocator, VkImageView *pView) {
2842 skipCall |= parameter_validation_vkCreateImageView(my_data->report_data, pCreateInfo, pAllocator, pView);
2847 result = get_dispatch_table(pc_device_table_map, device)->CreateImageView(device, pCreateInfo, pAllocator, pView);
2849 PostCreateImageView(device, pView, resul
2649 vkCreateBufferView(VkDevice device, const VkBufferViewCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkBufferView *pView) argument
2835 vkCreateImageView(VkDevice device, const VkImageViewCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkImageView *pView) argument
[all...]
H A Dimage.cpp453 const VkAllocationCallbacks *pAllocator, VkImageView *pView) {
595 VkResult result = device_data->device_dispatch_table->CreateImageView(device, pCreateInfo, pAllocator, pView);
452 vkCreateImageView(VkDevice device, const VkImageViewCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkImageView *pView) argument
H A Dcore_validation.cpp6316 const VkAllocationCallbacks *pAllocator, VkBufferView *pView) {
6318 VkResult result = dev_data->device_dispatch_table->CreateBufferView(device, pCreateInfo, pAllocator, pView);
6321 dev_data->bufferViewMap[*pView] = VkBufferViewCreateInfo(*pCreateInfo);
6396 const VkAllocationCallbacks *pAllocator, VkImageView *pView) {
6398 VkResult result = dev_data->device_dispatch_table->CreateImageView(device, pCreateInfo, pAllocator, pView);
6403 dev_data->imageViewMap[*pView] = localCI;
/external/skia/third_party/vulkan/
H A Dvulkan.h2249 typedef VkResult (VKAPI_PTR *PFN_vkCreateBufferView)(VkDevice device, const VkBufferViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkBufferView* pView);
2254 typedef VkResult (VKAPI_PTR *PFN_vkCreateImageView)(VkDevice device, const VkImageViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkImageView* pView);
2616 VkBufferView* pView);
2644 VkImageView* pView);
/external/vulkan-validation-layers/include/vulkan/
H A Dvulkan.h2258 typedef VkResult (VKAPI_PTR *PFN_vkCreateBufferView)(VkDevice device, const VkBufferViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkBufferView* pView);
2263 typedef VkResult (VKAPI_PTR *PFN_vkCreateImageView)(VkDevice device, const VkImageViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkImageView* pView);
2625 VkBufferView* pView);
2653 VkImageView* pView);
/external/sqlite/dist/orig/
H A Dsqlite3.c23272 SQLITE_PRIVATE void sqlite3TreeViewSelect(TreeView *pView, const Select *p, u8 moreToFollow){ argument
23275 pView = sqlite3TreeViewPush(pView, moreToFollow);
23277 sqlite3TreeViewLine(pView, "SELECT%s%s (0x%p) selFlags=0x%x",
23281 if( cnt++ ) sqlite3TreeViewPop(pView);
23294 sqlite3TreeViewExprList(pView, p->pEList, (n--)>0, "result-set");
23297 pView = sqlite3TreeViewPush(pView, (n--)>0);
23298 sqlite3TreeViewLine(pView, "FROM");
23320 sqlite3TreeViewItem(pView, zLin
23374 sqlite3TreeViewExpr(TreeView *pView, const Expr *pExpr, u8 moreToFollow) argument
23602 sqlite3TreeViewExprList( TreeView *pView, const ExprList *pList, u8 moreToFollow, const char *zLabel ) argument
97766 sqlite3MaterializeView( Parse *pParse, Table *pView, Expr *pWhere, int iCur ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c23272 SQLITE_PRIVATE void sqlite3TreeViewSelect(TreeView *pView, const Select *p, u8 moreToFollow){ argument
23275 pView = sqlite3TreeViewPush(pView, moreToFollow);
23277 sqlite3TreeViewLine(pView, "SELECT%s%s (0x%p) selFlags=0x%x",
23281 if( cnt++ ) sqlite3TreeViewPop(pView);
23294 sqlite3TreeViewExprList(pView, p->pEList, (n--)>0, "result-set");
23297 pView = sqlite3TreeViewPush(pView, (n--)>0);
23298 sqlite3TreeViewLine(pView, "FROM");
23320 sqlite3TreeViewItem(pView, zLin
23374 sqlite3TreeViewExpr(TreeView *pView, const Expr *pExpr, u8 moreToFollow) argument
23602 sqlite3TreeViewExprList( TreeView *pView, const ExprList *pList, u8 moreToFollow, const char *zLabel ) argument
97784 sqlite3MaterializeView( Parse *pParse, Table *pView, Expr *pWhere, int iCur ) argument
[all...]

Completed in 1033 milliseconds