/external/deqp/external/vulkancts/framework/vulkan/ |
H A D | vkDeviceDriverImpl.inl | 180 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 D | vkConcreteDeviceInterface.inl | 39 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 D | vkVirtualDeviceInterface.inl | 39 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 D | vkNullDriverImpl.inl | 52 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 D | vkFunctionPointerTypes.inl | 56 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 D | trampoline.c | 1226 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 D | parameter_validation.cpp | 2638 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 D | image.cpp | 453 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 D | core_validation.cpp | 6316 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 D | vulkan.h | 2249 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 D | vulkan.h | 2258 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 D | sqlite3.c | 23272 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 D | sqlite3.c | 23272 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...] |