Searched refs:totalSysMem (Results 1 – 1 of 1) sorted by relevance
1135 const VkDeviceSize totalSysMem = (VkDeviceSize)m_limits.totalSystemMemory; in full() local1137 DE_ASSERT(totalUsage <= totalSysMem); in full()1139 return (minAllocationSize + minReferenceSize) > (totalSysMem - totalUsage) in full()1145 const VkDeviceSize totalSysMem = (VkDeviceSize)m_limits.totalSystemMemory; in full() local1156 || minReferenceSize > (totalSysMem - totalUsage); in full()1188 const VkDeviceSize totalSysMem = (VkDeviceSize)m_limits.totalSystemMemory; in allocateRandom() local1189 const VkDeviceSize availableBits = (totalSysMem - totalUsage) * 8; in allocateRandom()1205 DE_ASSERT(totalUsage <= totalSysMem); in allocateRandom()1206 DE_ASSERT(maxAllocationSize <= totalSysMem); in allocateRandom()1208 …if (minAllocationSize + minReferenceSize <= (totalSysMem - totalUsage) && minAllocationSize <= ava… in allocateRandom()[all …]