Lines Matching refs:pMemRanges

10773                                         const VkMappedMemoryRange *pMemRanges) {  in ValidateMemoryIsMapped()  argument
10776 auto mem_info = GetMemObjInfo(pMemRanges[i].memory); in ValidateMemoryIsMapped()
10778 if (pMemRanges[i].size == VK_WHOLE_SIZE) { in ValidateMemoryIsMapped()
10779 if (mem_info->mem_range.offset > pMemRanges[i].offset) { in ValidateMemoryIsMapped()
10782 HandleToUint64(pMemRanges[i].memory), "VUID-VkMappedMemoryRange-size-00686", in ValidateMemoryIsMapped()
10785 …funcName, static_cast<size_t>(pMemRanges[i].offset), static_cast<size_t>(mem_info->mem_range.offse… in ValidateMemoryIsMapped()
10791 if ((mem_info->mem_range.offset > pMemRanges[i].offset) || in ValidateMemoryIsMapped()
10792 (data_end < (pMemRanges[i].offset + pMemRanges[i].size))) { in ValidateMemoryIsMapped()
10795 … HandleToUint64(pMemRanges[i].memory), "VUID-VkMappedMemoryRange-size-00685", in ValidateMemoryIsMapped()
10798 … funcName, static_cast<size_t>(pMemRanges[i].offset + pMemRanges[i].size), in ValidateMemoryIsMapped()
10799 … static_cast<size_t>(pMemRanges[i].offset), static_cast<size_t>(data_end)); in ValidateMemoryIsMapped()
10882 const VkMappedMemoryRange *pMemRanges) { in PreCallValidateFlushMappedMemoryRanges() argument
10885 …MappedMemoryRangeDeviceLimits(device_data, "vkFlushMappedMemoryRanges", memRangeCount, pMemRanges); in PreCallValidateFlushMappedMemoryRanges()
10886 skip |= ValidateAndCopyNoncoherentMemoryToDriver(device_data, memRangeCount, pMemRanges); in PreCallValidateFlushMappedMemoryRanges()
10887 …kip |= ValidateMemoryIsMapped(device_data, "vkFlushMappedMemoryRanges", memRangeCount, pMemRanges); in PreCallValidateFlushMappedMemoryRanges()
10892 … const VkMappedMemoryRange *pMemRanges) { in PreCallValidateInvalidateMappedMemoryRanges() argument
10895 …dMemoryRangeDeviceLimits(device_data, "vkInvalidateMappedMemoryRanges", memRangeCount, pMemRanges); in PreCallValidateInvalidateMappedMemoryRanges()
10896 …= ValidateMemoryIsMapped(device_data, "vkInvalidateMappedMemoryRanges", memRangeCount, pMemRanges); in PreCallValidateInvalidateMappedMemoryRanges()
10901 … const VkMappedMemoryRange *pMemRanges, VkResult result) { in PostCallRecordInvalidateMappedMemoryRanges() argument
10905 CopyNoncoherentMemoryFromDriver(device_data, memRangeCount, pMemRanges); in PostCallRecordInvalidateMappedMemoryRanges()