Lines Matching refs:pMemRanges
11772 …moryIsMapped(const char *funcName, uint32_t memRangeCount, const VkMappedMemoryRange *pMemRanges) { in ValidateMemoryIsMapped() argument
11775 auto mem_info = GetDevMemState(pMemRanges[i].memory); in ValidateMemoryIsMapped()
11777 if (pMemRanges[i].size == VK_WHOLE_SIZE) { in ValidateMemoryIsMapped()
11778 if (mem_info->mem_range.offset > pMemRanges[i].offset) { in ValidateMemoryIsMapped()
11780 … HandleToUint64(pMemRanges[i].memory), "VUID-VkMappedMemoryRange-size-00686", in ValidateMemoryIsMapped()
11783 funcName, static_cast<size_t>(pMemRanges[i].offset), in ValidateMemoryIsMapped()
11790 if ((mem_info->mem_range.offset > pMemRanges[i].offset) || in ValidateMemoryIsMapped()
11791 (data_end < (pMemRanges[i].offset + pMemRanges[i].size))) { in ValidateMemoryIsMapped()
11793 … HandleToUint64(pMemRanges[i].memory), "VUID-VkMappedMemoryRange-size-00685", in ValidateMemoryIsMapped()
11796 … funcName, static_cast<size_t>(pMemRanges[i].offset + pMemRanges[i].size), in ValidateMemoryIsMapped()
11797 … static_cast<size_t>(pMemRanges[i].offset), static_cast<size_t>(data_end)); in ValidateMemoryIsMapped()
11878 const VkMappedMemoryRange *pMemRanges) { in PreCallValidateFlushMappedMemoryRanges() argument
11880 …p |= ValidateMappedMemoryRangeDeviceLimits("vkFlushMappedMemoryRanges", memRangeCount, pMemRanges); in PreCallValidateFlushMappedMemoryRanges()
11881 skip |= ValidateAndCopyNoncoherentMemoryToDriver(memRangeCount, pMemRanges); in PreCallValidateFlushMappedMemoryRanges()
11882 skip |= ValidateMemoryIsMapped("vkFlushMappedMemoryRanges", memRangeCount, pMemRanges); in PreCallValidateFlushMappedMemoryRanges()
11887 … const VkMappedMemoryRange *pMemRanges) { in PreCallValidateInvalidateMappedMemoryRanges() argument
11889 …ValidateMappedMemoryRangeDeviceLimits("vkInvalidateMappedMemoryRanges", memRangeCount, pMemRanges); in PreCallValidateInvalidateMappedMemoryRanges()
11890 skip |= ValidateMemoryIsMapped("vkInvalidateMappedMemoryRanges", memRangeCount, pMemRanges); in PreCallValidateInvalidateMappedMemoryRanges()
11895 … const VkMappedMemoryRange *pMemRanges, VkResult result) { in PostCallRecordInvalidateMappedMemoryRanges() argument
11898 CopyNoncoherentMemoryFromDriver(memRangeCount, pMemRanges); in PostCallRecordInvalidateMappedMemoryRanges()