Home
last modified time | relevance | path

Searched refs:with_max_len (Results 1 – 9 of 9) sorted by relevance

/external/rust/crates/rayon/tests/
Doctillion.rs19 .with_max_len(1_000) in octillion_flat()
24 .with_max_len(1_000) in octillion_flat()
31 .with_max_len(1_000) in octillion_flat()
Dclones.rs123 check(v.par_iter().with_max_len(1).fold(|| 0, |x, _| x)); in clone_adaptors()
124 check(v.par_iter().with_max_len(1).fold_with(0, |x, _| x)); in clone_adaptors()
125 check(v.par_iter().with_max_len(1).try_fold(|| 0, |_, &x| x)); in clone_adaptors()
126 check(v.par_iter().with_max_len(1).try_fold_with(0, |_, &x| x)); in clone_adaptors()
142 check(v.par_iter().with_max_len(1)); in clone_adaptors()
Diter_panic.rs42 let iter = ITER.into_par_iter().with_max_len(1); in iter_panic_fuse()
Dproducer_split_at.rs327 fn with_max_len() { in with_max_len() function
329 check(&v, || (0..10).into_par_iter().with_max_len(1)); in with_max_len()
Ddebug.rs165 check(v.par_iter().with_max_len(1)); in debug_adaptors()
/external/rust/crates/rayon/src/compile_fail/
Dmust_use.rs63 with_max_len /** v.par_iter().with_max_len(1); */
/external/rust/crates/rayon/src/iter/
Dtest.rs119 .with_max_len(1) in fold_map_reduce()
490 .with_max_len(len) in check_cmp_short_circuit()
519 .with_max_len(len) in check_partial_cmp_short_circuit()
548 .with_max_len(len) in check_partial_cmp_nan_short_circuit()
1664 .with_max_len(max) in check_lengths()
Dmod.rs2787 fn with_max_len(self, max: usize) -> MaxLen<Self> { in with_max_len() method
/external/rust/crates/rayon/src/slice/
Dmergesort.rs674 .with_max_len(1) in par_mergesort()