Home
last modified time | relevance | path

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

/system/keymint/common/src/
Dcrypto.rs562 let copy_len = core::cmp::min(data.len(), output.len() - output_pos); in ckdf() localVariable
563 output[output_pos..output_pos + copy_len].clone_from_slice(&data[..copy_len]); in ckdf()
564 output_pos += copy_len; in ckdf()