Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/lib/Fragment/
DFragmentRef.cpp127 unsigned int total_offset = m_Offset + pOffset; in memcpy() local
132 if (total_length < (total_offset+pNBytes)) in memcpy()
133 pNBytes = total_length - total_offset; in memcpy()
135 std::memcpy(pDest, region_frag->getRegion().getBuffer(total_offset), pNBytes); in memcpy()
141 if (total_length < (total_offset+pNBytes)) in memcpy()
142 pNBytes = total_length - total_offset; in memcpy()
143 std::memcpy(pDest, stub_frag->getContent() + total_offset, pNBytes); in memcpy()
/frameworks/compile/mclinker/lib/Support/
DSpace.cpp78 size_t start = 0, size = 0, total_offset; in Create() local
82 total_offset = pStart + pSize; in Create()
84 if (total_offset > pHandler.size()) { in Create()
87 pHandler.truncate(total_offset); in Create()
110 total_offset = page_boundary(pStart + pSize); in Create()
112 if (total_offset > pHandler.size()) { in Create()
115 pHandler.truncate(total_offset); in Create()