Home
last modified time | relevance | path

Searched refs:start_r (Results 1 – 6 of 6) sorted by relevance

/external/rust/crates/rayon/src/slice/
Dquicksort.rs268 let mut start_r = ptr::null_mut(); in partition_in_blocks() localVariable
292 if start_l < end_l || start_r < end_r { in partition_in_blocks()
300 } else if start_r < end_r { in partition_in_blocks()
340 if start_r == end_r { in partition_in_blocks()
343 start_r = offsets_r.as_mut_ptr() as *mut u8; in partition_in_blocks()
344 end_r = start_r; in partition_in_blocks()
369 let count = cmp::min(width(start_l, end_l), width(start_r, end_r)); in partition_in_blocks()
379 r.offset(-(*start_r as isize) - 1) in partition_in_blocks()
409 start_r = start_r.offset(1); in partition_in_blocks()
416 start_r = start_r.offset(1); in partition_in_blocks()
[all …]
/external/pdfium/xfa/fgas/graphics/
Dcfgas_gegraphics.cpp333 float start_r = m_info.fillColor.GetShading()->GetBeginRadius(); in FillPathWithShading() local
337 ((start_r - end_r) * (start_r - end_r)); in FillPathWithShading()
346 (start_r * (end_r - start_r))); in FillPathWithShading()
348 ((y - start_y) * (y - start_y)) - (start_r * start_r); in FillPathWithShading()
372 if ((start_r) + s * (end_r - start_r) < 0) { in FillPathWithShading()
/external/pdfium/core/fpdfapi/render/
Dcpdf_rendershading.cpp179 float start_r = pCoords->GetFloatAt(2); in DrawRadialShading() local
199 const float dr = end_r - start_r; in DrawRadialShading()
216 float b = -2 * (pos_dx * dx + pos_dy * dy + start_r * dr); in DrawRadialShading()
217 float c = pos_dx * pos_dx + pos_dy * pos_dy - start_r * start_r; in DrawRadialShading()
238 if (start_r + s * dr < 0) in DrawRadialShading()
/external/rust/crates/crossbeam-channel/tests/
Dselect_macro.rs748 let (start_s, start_r) = bounded::<()>(0); in linearizable_default()
775 start_r.recv().unwrap(); in linearizable_default()
795 let (start_s, start_r) = bounded::<()>(0); in linearizable_timeout()
822 start_r.recv().unwrap(); in linearizable_timeout()
Dselect.rs1021 let (start_s, start_r) = bounded::<()>(0); in linearizable_try()
1056 start_r.recv().unwrap(); in linearizable_try()
1076 let (start_s, start_r) = bounded::<()>(0); in linearizable_timeout()
1111 start_r.recv().unwrap(); in linearizable_timeout()
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp1426 float start_r = pCoords->GetFloatAt(2); in DrawShading() local
1433 pts[0], start_r, pts[1], end_r, sk_colors.data(), sk_pos.data(), in DrawShading()
1436 if (clipStart && start_r) in DrawShading()
1437 skClip.addCircle(pts[0].fX, pts[0].fY, start_r); in DrawShading()