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.rs263 let mut start_r = ptr::null_mut(); in partition_in_blocks() localVariable
281 if start_l < end_l || start_r < end_r { in partition_in_blocks()
289 } else if start_r < end_r { in partition_in_blocks()
315 if start_r == end_r { in partition_in_blocks()
317 start_r = offsets_r.as_mut_ptr(); in partition_in_blocks()
332 let count = cmp::min(width(start_l, end_l), width(start_r, end_r)); in partition_in_blocks()
342 r.offset(-(*start_r as isize) - 1) in partition_in_blocks()
356 start_r = start_r.offset(1); in partition_in_blocks()
363 start_r = start_r.offset(1); in partition_in_blocks()
372 if start_r == end_r { in partition_in_blocks()
[all …]
/external/pdfium/xfa/fxgraphics/
Dcxfa_graphics.cpp324 float start_r = m_info.fillColor.GetShading()->m_beginRadius; in FillPathWithShading() local
328 ((start_r - end_r) * (start_r - end_r)); in FillPathWithShading()
336 (start_r * (end_r - start_r))); in FillPathWithShading()
338 ((y - start_y) * (y - start_y)) - (start_r * start_r); in FillPathWithShading()
361 if ((start_r) + s * (end_r - start_r) < 0) { in FillPathWithShading()
/external/pdfium/core/fpdfapi/render/
Dcpdf_rendershading.cpp172 float start_r = pCoords->GetNumberAt(2); in DrawRadialShading() local
192 const float dr = end_r - start_r; in DrawRadialShading()
212 float b = -2 * (pos_dx * dx + pos_dy * dy + start_r * dr); in DrawRadialShading()
213 float c = pos_dx * pos_dx + pos_dy * pos_dy - start_r * start_r; in DrawRadialShading()
234 if (start_r + s * dr < 0) in DrawRadialShading()
/external/rust/crates/crossbeam-channel/tests/
Dselect_macro.rs732 let (start_s, start_r) = bounded::<()>(0); in linearizable_default()
759 start_r.recv().unwrap(); in linearizable_default()
776 let (start_s, start_r) = bounded::<()>(0); in linearizable_timeout()
803 start_r.recv().unwrap(); in linearizable_timeout()
Dselect.rs1006 let (start_s, start_r) = bounded::<()>(0); in linearizable_try()
1041 start_r.recv().unwrap(); in linearizable_try()
1058 let (start_s, start_r) = bounded::<()>(0); in linearizable_timeout()
1093 start_r.recv().unwrap(); in linearizable_timeout()
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp2220 float start_r = pCoords->GetNumberAt(2); in DrawShading() local
2227 pts[0], start_r, pts[1], end_r, skColors.begin(), skPos.begin(), in DrawShading()
2230 if (clipStart && start_r) in DrawShading()
2231 skClip.addCircle(pts[0].fX, pts[0].fY, start_r); in DrawShading()