Searched refs:copyBytes (Results 1 – 4 of 4) sorted by relevance
113 unsigned copyBytes = std::min<unsigned>(m_length - offset, maxBytes); in getData() local114 memcpy(buffer, m_data.get(), copyBytes); in getData()115 return copyBytes; in getData()187 unsigned copyBytes = std::min<unsigned>(region.m_length - offset, maxBytes); in getData() local188 memcpy(buffer, ®ion.m_data[offset], copyBytes); in getData()190 return copyBytes; in getData()
492 unsigned copyBytes = std::min<unsigned>(section.sh_size - offset, maxBytes); in getData() local493 if (copyBytes) in getData()495 memcpy(buffer, &data[offset], copyBytes); in getData()498 return copyBytes; in getData()
4914 auto copyBytes = outdata.length < data.length ? variable4917 outdata[0 .. copyBytes] = data[0 .. copyBytes];4918 outdata = outdata[copyBytes..$];4919 data = data[copyBytes..$];
5002 auto copyBytes = outdata.length < data.length ? in _async() local5005 outdata[0 .. copyBytes] = data[0 .. copyBytes]; in _async()5006 outdata = outdata[copyBytes..$]; in _async()5007 data = data[copyBytes..$]; in _async()