HomeSort by: relevance | last modified time | path
    Searched defs:next_rptr (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_evergreen_dma.c 78 u32 next_rptr = ring->wptr + 4; local in function:evergreen_dma_ring_ib_execute
79 while ((next_rptr & 7) != 5)
80 next_rptr++;
81 next_rptr += 3;
85 radeon_ring_write(ring, next_rptr);
radeon_ni_dma.c 134 u32 next_rptr = ring->wptr + 4; local in function:cayman_dma_ring_ib_execute
135 while ((next_rptr & 7) != 5)
136 next_rptr++;
137 next_rptr += 3;
141 radeon_ring_write(ring, next_rptr);
radeon_r600_dma.c 414 u32 next_rptr = ring->wptr + 4; local in function:r600_dma_ring_ib_execute
415 while ((next_rptr & 7) != 5)
416 next_rptr++;
417 next_rptr += 3;
421 radeon_ring_write(ring, next_rptr);
radeon_cik_sdma.c 145 u32 next_rptr = ring->wptr + 5; local in function:cik_sdma_ring_ib_execute
146 while ((next_rptr & 7) != 4)
147 next_rptr++;
148 next_rptr += 4;
153 radeon_ring_write(ring, next_rptr);
radeon_ni.c 1444 uint32_t next_rptr = ring->wptr + 3 + 4 + 8; local in function:cayman_ring_ib_execute
1448 radeon_ring_write(ring, next_rptr);
radeon_r600.c 3405 u32 next_rptr; local in function:r600_ring_ib_execute
3408 next_rptr = ring->wptr + 3 + 4;
3412 radeon_ring_write(ring, next_rptr);
3414 next_rptr = ring->wptr + 5 + 4;
3418 radeon_ring_write(ring, next_rptr);
radeon_r100.c 3718 u32 next_rptr = ring->wptr + 2 + 3; local in function:r100_ring_ib_execute
3720 radeon_ring_write(ring, next_rptr);
radeon_evergreen.c 2938 u32 next_rptr; local in function:evergreen_ring_ib_execute
2945 next_rptr = ring->wptr + 3 + 4;
2949 radeon_ring_write(ring, next_rptr);
2951 next_rptr = ring->wptr + 5 + 4;
2955 radeon_ring_write(ring, next_rptr);
radeon_si.c 3424 u32 next_rptr; local in function:si_ring_ib_execute
3426 next_rptr = ring->wptr + 3 + 4 + 8;
3430 radeon_ring_write(ring, next_rptr);
3432 next_rptr = ring->wptr + 5 + 4 + 8;
3437 radeon_ring_write(ring, next_rptr);
radeon_cik.c 3759 u32 next_rptr; local in function:cik_ring_ib_execute
3761 next_rptr = ring->wptr + 3 + 4;
3765 radeon_ring_write(ring, next_rptr);
3767 next_rptr = ring->wptr + 5 + 4;
3772 radeon_ring_write(ring, next_rptr);

Completed in 36 milliseconds