Home
last modified time | relevance | path

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

/linux/rust/kernel/
H A Dstr.rs624 let len_to_copy = core::cmp::min(pos_new, self.end).saturating_sub(self.pos); in write_str()
626 if len_to_copy > 0 { in write_str()
627 // SAFETY: If `len_to_copy` is non-zero, then we know `pos` has not gone past `end`
633 len_to_copy,
610 let len_to_copy = core::cmp::min(pos_new, self.end).saturating_sub(self.pos); write_str() localVariable
/linux/drivers/ufs/core/
H A Dufshcd.c2452 int len_to_copy; in ufshcd_copy_sense_data() local
2455 len_to_copy = min_t(int, UFS_SENSE_SIZE, len); in ufshcd_copy_sense_data()
2458 len_to_copy); in ufshcd_copy_sense_data()