Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/elftosb/dist/common/
H A DDataSource.cpp113 unsigned copyBytes = std::min<unsigned>(m_length - offset, maxBytes); in getData() local
114 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() local
188 memcpy(buffer, &region.m_data[offset], copyBytes); in getData()
190 return copyBytes; in getData()
H A DELFSourceFile.cpp492 unsigned copyBytes = std::min<unsigned>(section.sh_size - offset, maxBytes); in getData() local
493 if (copyBytes) in getData()
495 memcpy(buffer, &data[offset], copyBytes); in getData()
498 return copyBytes; in getData()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/net/
H A Dcurl.d4914 auto copyBytes = outdata.length < data.length ? variable
4917 outdata[0 .. copyBytes] = data[0 .. copyBytes];
4918 outdata = outdata[copyBytes..$];
4919 data = data[copyBytes..$];
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/net/
H A Dcurl.d5002 auto copyBytes = outdata.length < data.length ? in _async() local
5005 outdata[0 .. copyBytes] = data[0 .. copyBytes]; in _async()
5006 outdata = outdata[copyBytes..$]; in _async()
5007 data = data[copyBytes..$]; in _async()