Lines Matching refs:result
254 VkResult result = VK_ERROR_OUT_OF_HOST_MEMORY;
259 result = vk.createBuffer(vkDevice, &bufferParams, (vk::VkAllocationCallbacks*)DE_NULL, &rawBuffer);
261 if (result != VK_SUCCESS)
267 return tcu::TestStatus::fail("Buffer creation failed! (" + de::toString(getResultName(result)) + ")");
292 VkResult result = VK_ERROR_OUT_OF_HOST_MEMORY;
304 result = vk.allocateMemory(vkDevice, &memAlloc, (VkAllocationCallbacks*)DE_NULL, &rawMemory);
306 if (result != VK_SUCCESS)
487 VkResult result = VK_ERROR_OUT_OF_HOST_MEMORY;
492 result = vk.createBuffer(vkDevice, &bufferParams, (VkAllocationCallbacks*)DE_NULL, &rawBuffer);
494 if (result != VK_SUCCESS)
499 return tcu::TestStatus::fail("Buffer creation failed! (" + de::toString(getResultName(result)) + ")");
519 VkResult result = VK_ERROR_OUT_OF_HOST_MEMORY;
539 result = vk.allocateMemory(vkDevice, &memoryAllocateInfo, (VkAllocationCallbacks*)DE_NULL, &rawMemory);
541 if (result != VK_SUCCESS)
726 VkResult result = vk.createBuffer(vkDevice, &bufferParams, (vk::VkAllocationCallbacks*)DE_NULL, &rawBuffer);
729 if (result == VK_SUCCESS)
741 if ((result == VK_ERROR_OUT_OF_DEVICE_MEMORY) ||
742 (result == VK_ERROR_OUT_OF_HOST_MEMORY))