HomeSort by: relevance | last modified time | path
    Searched refs:num_loops (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_rv770_dma.c 57 int i, num_loops; local
63 num_loops = DIV_ROUND_UP(size_in_dw, 0xFFFF);
64 r = radeon_ring_lock(rdev, ring, num_loops * 5 + 8);
74 for (i = 0; i < num_loops; i++) {
radeon_evergreen_dma.c 123 int i, num_loops; local
129 num_loops = DIV_ROUND_UP(size_in_dw, 0xfffff);
130 r = radeon_ring_lock(rdev, ring, num_loops * 5 + 11);
140 for (i = 0; i < num_loops; i++) {
radeon_si_dma.c 246 int i, num_loops; local
252 num_loops = DIV_ROUND_UP(size_in_bytes, 0xfffff);
253 r = radeon_ring_lock(rdev, ring, num_loops * 5 + 11);
263 for (i = 0; i < num_loops; i++) {
radeon_r200.c 98 int i, num_loops; local
103 num_loops = DIV_ROUND_UP(size, 0x1FFFFF);
104 r = radeon_ring_lock(rdev, ring, num_loops * 4 + 64);
112 for (i = 0; i < num_loops; i++) {
radeon_r600_dma.c 458 int i, num_loops; local
464 num_loops = DIV_ROUND_UP(size_in_dw, 0xFFFE);
465 r = radeon_ring_lock(rdev, ring, num_loops * 4 + 8);
475 for (i = 0; i < num_loops; i++) {
radeon_cik_sdma.c 594 int i, num_loops; local
600 num_loops = DIV_ROUND_UP(size_in_bytes, 0x1fffff);
601 r = radeon_ring_lock(rdev, ring, num_loops * 7 + 14);
611 for (i = 0; i < num_loops; i++) {
radeon_r600.c 3006 int i, num_loops; local
3012 num_loops = DIV_ROUND_UP(size_in_bytes, 0x1fffff);
3013 r = radeon_ring_lock(rdev, ring, num_loops * 6 + 24);
3026 for (i = 0; i < num_loops; i++) {
radeon_r100.c 922 int num_loops; local
930 num_loops = DIV_ROUND_UP(num_gpu_pages, 8191);
933 ndw = 64 + (10 * num_loops);
radeon_cik.c 3682 int i, num_loops; local
3688 num_loops = DIV_ROUND_UP(size_in_bytes, 0x1fffff);
3689 r = radeon_ring_lock(rdev, ring, num_loops * 7 + 18);
3699 for (i = 0; i < num_loops; i++) {
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-loop-interchange.cc 1376 unsigned i, j, num_loops = (unsigned) -1; local
1385 if (stride->length () < num_loops)
1387 num_loops = stride->length ();
1388 if (num_loops < 2)
1396 if (stride->length () > num_loops)
1397 stride->truncate (num_loops);
1399 for (j = 0; j < (num_loops >> 1); ++j)
1400 std::swap ((*stride)[j], (*stride)[num_loops - j - 1]);
1403 loop = superloop_at_depth (loop, loop_depth (loop) + 1 - num_loops);
1417 unsigned num_loops = loop_depth (innermost) - loop_depth (loop_nest) + 1 local
1443 unsigned num_loops = stride->length (); local
    [all...]
cfgloop.cc 362 /* Initializes loops structure LOOPS, reserving place for NUM_LOOPS loops
367 struct loops *loops, unsigned num_loops)
372 vec_alloc (loops->larray, num_loops);
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_ttm.c 2252 unsigned num_loops, num_dw; local
2262 num_loops = DIV_ROUND_UP(byte_count, max_bytes);
2263 num_dw = ALIGN(num_loops * adev->mman.buffer_funcs->copy_num_dw, 8);
2283 for (i = 0; i < num_loops; i++) {
2323 unsigned int num_loops, num_dw; local
2341 num_loops = 0;
2345 num_loops += DIV_ROUND_UP_ULL(byte_count, max_bytes);
2349 num_dw = num_loops * adev->mman.buffer_funcs->fill_num_dw;

Completed in 72 milliseconds