Home
last modified time | relevance | path

Searched refs:nospan_shift (Results 1 – 2 of 2) sorted by relevance

/hardware/google/gfxstream/guest/mesa/src/util/
Dvma.c59 heap->nospan_shift = 0; in util_vma_heap_init()
169 if (heap->nospan_shift) { in util_vma_heap_alloc()
170 assert(ALIGN(BITFIELD64_BIT(heap->nospan_shift), alignment) == in util_vma_heap_alloc()
171 BITFIELD64_BIT(heap->nospan_shift)); in util_vma_heap_alloc()
187 if (heap->nospan_shift) { in util_vma_heap_alloc()
189 if ((end >> heap->nospan_shift) != (offset >> heap->nospan_shift)) { in util_vma_heap_alloc()
191 end &= ~BITFIELD64_MASK(heap->nospan_shift); in util_vma_heap_alloc()
228 if (heap->nospan_shift) { in util_vma_heap_alloc()
230 if ((end >> heap->nospan_shift) != (offset >> heap->nospan_shift)) { in util_vma_heap_alloc()
232 offset = end & ~BITFIELD64_MASK(heap->nospan_shift); in util_vma_heap_alloc()
Dvma.h53 unsigned nospan_shift; member