Searched refs:with_max_len (Results 1 – 9 of 9) sorted by relevance
/external/rust/crates/rayon/tests/ |
D | octillion.rs | 19 .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()
|
D | clones.rs | 123 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()
|
D | iter_panic.rs | 42 let iter = ITER.into_par_iter().with_max_len(1); in iter_panic_fuse()
|
D | producer_split_at.rs | 327 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()
|
D | debug.rs | 165 check(v.par_iter().with_max_len(1)); in debug_adaptors()
|
/external/rust/crates/rayon/src/compile_fail/ |
D | must_use.rs | 63 with_max_len /** v.par_iter().with_max_len(1); */
|
/external/rust/crates/rayon/src/iter/ |
D | test.rs | 119 .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()
|
D | mod.rs | 2787 fn with_max_len(self, max: usize) -> MaxLen<Self> { in with_max_len() method
|
/external/rust/crates/rayon/src/slice/ |
D | mergesort.rs | 674 .with_max_len(1) in par_mergesort()
|