Lines Matching defs:memory

411                          "Unable to allocate memory to store device name");
415 /* Setup available memory heaps and types */
416 pdevice->memory.memoryHeapCount = 1;
417 pdevice->memory.memoryHeaps[0].size = pvr_compute_heap_size();
418 pdevice->memory.memoryHeaps[0].flags = VK_MEMORY_HEAP_DEVICE_LOCAL_BIT;
420 pdevice->memory.memoryTypeCount = 1;
421 pdevice->memory.memoryTypes[0].propertyFlags =
425 pdevice->memory.memoryTypes[0].heapIndex = 0;
1076 pMemoryProperties->memoryProperties = pdevice->memory;
1806 * "Importing memory from a file descriptor transfers ownership of
1816 * used when binding device memory (see pvr_bind_memory()) to ensure the
1822 * device->pdevice->memory.memoryTypes[pAllocateInfo->memoryTypeIndex].propertyFlags.
1824 * The alternative would be to store the flags alongside the memory
1853 PVR_FROM_HANDLE(pvr_device_memory, mem, pGetFdInfo->memory);
1874 /* FIXME: This should only allow memory types having
1876 * dma-buf should be imported using cacheable memory types,
1882 (1 << device->pdevice->memory.memoryTypeCount) - 1;
1928 * equal to the size of the memory minus offset
1986 VkDeviceMemory memory,
2050 PVR_FROM_HANDLE(pvr_device_memory, mem, pBindInfos[i].memory);
2225 * \brief Upload PDS program data and code segments from host memory to device
2226 * memory.
2721 * supported memory type for the resource. Bit 'i' is set if and only
2722 * if the memory type 'i' in the VkPhysicalDeviceMemoryProperties
2728 (1ul << device->pdevice->memory.memoryTypeCount) - 1;
2745 * supported memory type for the resource. Bit 'i' is set if and only
2746 * if the memory type 'i' in the VkPhysicalDeviceMemoryProperties
2752 (1ul << device->pdevice->memory.memoryTypeCount) - 1;