Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DOutputBuffer.h111 unsigned len_to_copy = static_cast<unsigned>(S.length()) < Length in outstring() local
116 for (unsigned i = 0; i < len_to_copy; ++i) in outstring()
/external/bluetooth/bluedroid/stack/sdp/
Dsdp_utils.c1004 size_t len_to_copy; in sdpu_build_partial_attrib_entry() local
1017 len_to_copy = ((attr_len - *offset) < len) ? (attr_len - *offset): len; in sdpu_build_partial_attrib_entry()
1019 memcpy(p_out, &p_attr_buff[*offset], len_to_copy); in sdpu_build_partial_attrib_entry()
1021 p_out = &p_out[len_to_copy]; in sdpu_build_partial_attrib_entry()
1022 *offset += len_to_copy; in sdpu_build_partial_attrib_entry()