Home
last modified time | relevance | path

Searched refs:start_k (Results 1 – 5 of 5) sorted by relevance

/external/pthreadpool/src/
Dfastpath.c434 size_t start_k = tile_index_ij_k.remainder * tile_k; in pthreadpool_thread_parallelize_3d_tile_1d_fastpath() local
438 task(argument, i, j, start_k, min(range_k - start_k, tile_k)); in pthreadpool_thread_parallelize_3d_tile_1d_fastpath()
439 start_k += tile_k; in pthreadpool_thread_parallelize_3d_tile_1d_fastpath()
440 if (start_k >= range_k) { in pthreadpool_thread_parallelize_3d_tile_1d_fastpath()
441 start_k = 0; in pthreadpool_thread_parallelize_3d_tile_1d_fastpath()
460 const size_t start_k = tile_index_ij_k.remainder * tile_k; in pthreadpool_thread_parallelize_3d_tile_1d_fastpath() local
461 task(argument, index_i_j.quotient, index_i_j.remainder, start_k, min(range_k - start_k, tile_k)); in pthreadpool_thread_parallelize_3d_tile_1d_fastpath()
492 size_t start_k = tile_index_ij_k.remainder * tile_k; in pthreadpool_thread_parallelize_3d_tile_2d_fastpath() local
497 …task(argument, i, start_j, start_k, min(range_j - start_j, tile_j), min(range_k - start_k, tile_k)… in pthreadpool_thread_parallelize_3d_tile_2d_fastpath()
498 start_k += tile_k; in pthreadpool_thread_parallelize_3d_tile_2d_fastpath()
[all …]
Dportable-api.c395 size_t start_k = tile_index_ij_k.remainder * tile_k; in thread_parallelize_3d_tile_1d() local
399 task(argument, i, j, start_k, min(range_k - start_k, tile_k)); in thread_parallelize_3d_tile_1d()
400 start_k += tile_k; in thread_parallelize_3d_tile_1d()
401 if (start_k >= range_k) { in thread_parallelize_3d_tile_1d()
402 start_k = 0; in thread_parallelize_3d_tile_1d()
422 const size_t start_k = tile_index_ij_k.remainder * tile_k; in thread_parallelize_3d_tile_1d() local
423 task(argument, index_i_j.quotient, index_i_j.remainder, start_k, min(range_k - start_k, tile_k)); in thread_parallelize_3d_tile_1d()
448 size_t start_k = tile_index_ij_k.remainder * tile_k; in thread_parallelize_3d_tile_2d() local
453 …task(argument, i, start_j, start_k, min(range_j - start_j, tile_j), min(range_k - start_k, tile_k)… in thread_parallelize_3d_tile_2d()
454 start_k += tile_k; in thread_parallelize_3d_tile_2d()
[all …]
/external/pdfium/core/fxge/
Dcfx_pathdata.cpp83 float start_k = 0; in UpdateLineJoinPoints() local
105 start_k = (mid_pos.y - start_pos.y) / (mid_pos.x - start_pos.x); in UpdateLineJoinPoints()
106 start_c = mid_pos.y - (start_k * mid_pos.x); in UpdateLineJoinPoints()
141 if (end_pos.y < (start_k * end_pos.x) + start_c) in UpdateLineJoinPoints()
142 outside.y = (start_k * outside.x) + start_c + start_dc; in UpdateLineJoinPoints()
144 outside.y = (start_k * outside.x) + start_c - start_dc; in UpdateLineJoinPoints()
150 if (fabs(start_k - end_k) < one_twentieth) { in UpdateLineJoinPoints()
161 if (end_pos.y < (start_k * end_pos.x) + start_c) in UpdateLineJoinPoints()
172 float join_x = (end_outside_c - start_outside_c) / (start_k - end_k); in UpdateLineJoinPoints()
173 float join_y = start_k * join_x + start_outside_c; in UpdateLineJoinPoints()
/external/pthreadpool/test/
Dpthreadpool.cc2653 static void CheckBounds3DTile1D(void*, size_t i, size_t j, size_t start_k, size_t tile_k) { in CheckBounds3DTile1D() argument
2656 EXPECT_LT(start_k, kParallelize3DTile1DRangeK); in CheckBounds3DTile1D()
2657 EXPECT_LE(start_k + tile_k, kParallelize3DTile1DRangeK); in CheckBounds3DTile1D()
2690 static void CheckTiling3DTile1D(void*, size_t i, size_t j, size_t start_k, size_t tile_k) { in CheckTiling3DTile1D() argument
2693 EXPECT_EQ(start_k % kParallelize3DTile1DTileK, 0); in CheckTiling3DTile1D()
2694 …EXPECT_EQ(tile_k, std::min<size_t>(kParallelize3DTile1DTileK, kParallelize3DTile1DRangeK - start_k in CheckTiling3DTile1D()
2727 …Tile1D(std::atomic_bool* processed_indicators, size_t i, size_t j, size_t start_k, size_t tile_k) { in SetTrue3DTile1D() argument
2728 for (size_t k = start_k; k < start_k + tile_k; k++) { in SetTrue3DTile1D()
2788 …t3DTile1D(std::atomic_int* processed_counters, size_t i, size_t j, size_t start_k, size_t tile_k) { in Increment3DTile1D() argument
2789 for (size_t k = start_k; k < start_k + tile_k; k++) { in Increment3DTile1D()
[all …]
/external/llvm-project/openmp/runtime/src/
Dkmp_tasking.cpp3868 kmp_int32 start_k = 0; in __kmpc_proxy_task_completed_ooo() local
3870 kmp_int32 k = start_k; in __kmpc_proxy_task_completed_ooo()
3878 if (k == start_k) in __kmpc_proxy_task_completed_ooo()