Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/lib/Fragment/
DFragmentRef.cpp118 void FragmentRef::memcpy(void* pDest, size_t pNBytes, Offset pOffset) const { in memcpy() argument
128 if (total_length < (total_offset + pNBytes)) in memcpy()
129 pNBytes = total_length - total_offset; in memcpy()
132 pDest, region_frag->getRegion().begin() + total_offset, pNBytes); in memcpy()
138 if (total_length < (total_offset + pNBytes)) in memcpy()
139 pNBytes = total_length - total_offset; in memcpy()
140 std::memcpy(pDest, stub_frag->getContent() + total_offset, pNBytes); in memcpy()
/frameworks/compile/mclinker/include/mcld/Fragment/
DFragmentRef.h61 void memcpy(void* pDest, size_t pNBytes, Offset pOffset = 0) const;