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.cpp83 size_t start = 0, size = 0, total_offset = 0; in Create() local
87 total_offset = pStart + pSize; in Create()
89 if (total_offset > pHandler.size()) { in Create()
92 pHandler.truncate(total_offset); in Create()
119 total_offset = page_boundary(pStart + pSize); in Create()
121 if (total_offset > pHandler.size()) { in Create()
124 pHandler.truncate(total_offset); in Create()