Home
last modified time | relevance | path

Searched refs:len_all (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/futures-util/src/stream/futures_unordered/
Dmod.rs125 len_all: UnsafeCell::new(0), in new()
171 len_all: UnsafeCell::new(0), in push()
224 *(*task).len_all.get() in iter_pin_mut()
245 *(*task).len_all.get() in atomic_load_head_and_len_all()
311 *(*next).len_all.get() + 1 in link()
313 *(*ptr).len_all.get() = new_len; in link()
338 let new_len = *(*head).len_all.get() - 1; in unlink()
359 *(*head).len_all.get() = new_len; in unlink()
Dtask.rs24 pub(super) len_all: UnsafeCell<usize>, field