Home
last modified time | relevance | path

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

/external/rust/crates/rayon-core/src/
Dlatch.rs278 pub(super) struct CountLatch { struct
283 impl CountLatch { implementation
285 pub(super) fn new() -> CountLatch { in new()
286 CountLatch { in new()
324 impl AsCoreLatch for CountLatch { implementation
Dregistry.rs2 use crate::latch::{AsCoreLatch, CoreLatch, CountLatch, Latch, LockLatch, SpinLatch};
574 terminate: CountLatch,
585 terminate: CountLatch::new(), in new()
/external/rust/crates/rayon-core/src/scope/
Dmod.rs8 use crate::latch::CountLatch;
54 job_completed_latch: CountLatch,
519 job_completed_latch: CountLatch::new(), in new()