Home
last modified time | relevance | path

Searched refs:ContentStart (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSection.cpp88 ContentStart = S.size(); in setContents()
92 llvm::copy(Contents, S.begin() + ContentStart); in setContents()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSection.h302 uint64_t ContentStart = 0; variable
368 if (LLVM_UNLIKELY(ContentStart + ContentSize != S.size())) { in getContentsForAppending()
371 auto I = std::exchange(ContentStart, S.size()); in getContentsForAppending()
378 ContentSize = getParent()->ContentStorage.size() - ContentStart; in doneAppending()
391 .slice(ContentStart, ContentSize); in getContents()
395 .slice(ContentStart, ContentSize); in getContents()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp419 const uint8_t * ContentStart = base() + OffsetToRaw; in getSectionContents() local
422 Data, reinterpret_cast<uintptr_t>(ContentStart), SectionSize)) in getSectionContents()
428 return ArrayRef(ContentStart, SectionSize); in getSectionContents()