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

/frameworks/compile/mclinker/lib/Fragment/
H A DFragmentRef.cpp126 void FragmentRef::memcpy(void* pDest, size_t pNBytes, Offset pOffset) const argument
136 if (total_length < (total_offset+pNBytes))
137 pNBytes = total_length - total_offset;
139 std::memcpy(pDest, region_frag->getRegion().begin() + total_offset, pNBytes);
145 if (total_length < (total_offset+pNBytes))
146 pNBytes = total_length - total_offset;
147 std::memcpy(pDest, stub_frag->getContent() + total_offset, pNBytes);
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DFragmentRef.h59 /// @pNBytes - copies pNBytes from the fragment[offset()+pOffset]
62 void memcpy(void* pDest, size_t pNBytes, Offset pOffset = 0) const;

Completed in 140 milliseconds