Home
last modified time | relevance | path

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

/linux-6.1.9/block/
Dbounce.c85 struct bvec_iter from_iter = BVEC_ITER_ALL_INIT; in copy_to_high_bio_irq() local
88 fromvec = bio_iter_iovec(from, from_iter); in copy_to_high_bio_irq()
98 bio_advance_iter(from, &from_iter, tovec.bv_len); in copy_to_high_bio_irq()
/linux-6.1.9/rust/alloc/vec/
Dmod.rs2636 fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Vec<T> { in from_iter() method
2637 <Self as SpecFromIter<T, I::IntoIter>>::from_iter(iter.into_iter()) in from_iter()
/linux-6.1.9/rust/alloc/
Dboxed.rs1903 fn from_iter<T: IntoIterator<Item = I>>(iter: T) -> Self { in from_iter() method