Home
last modified time | relevance | path

Searched refs:StackJob (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/rayon-core/src/
Djob.rs67 pub(super) struct StackJob<L, F, R> struct
78 impl<L, F, R> StackJob<L, F, R> argument
84 pub(super) fn new(func: F, latch: L) -> StackJob<L, F, R> { in new()
85 StackJob { in new()
105 impl<L, F, R> Job for StackJob<L, F, R> implementation
Dregistry.rs1 use crate::job::{JobFifo, JobRef, StackJob};
465 let job = StackJob::new( in in_worker_cold()
493 let job = StackJob::new( in in_worker_cross()
/external/rust/crates/rayon-core/src/join/
Dmod.rs1 use crate::job::StackJob;
136 let job_b = StackJob::new(call_b(oper_b), SpinLatch::new(worker_thread)); in join_context()