HomeSort by relevance Sort by last modified time
    Searched refs:align_frag (Results 1 - 4 of 4) sorted by null

  /frameworks/compile/mclinker/lib/LD/
BranchIsland.cpp 124 AlignFragment* align_frag = new AlignFragment(pStub.alignment(), local
128 align_frag->setParent(sd);
129 sd->getFragmentList().insert(end(), align_frag); local
130 align_frag->setOffset(align_frag->getPrevNode()->getOffset() +
131 align_frag->getPrevNode()->size());
ELFObjectWriter.cpp 683 const AlignFragment& align_frag = llvm::cast<AlignFragment>(*fragIter); local
684 uint64_t count = size / align_frag.getValueSize();
685 switch (align_frag.getValueSize()) {
688 align_frag.getValue(),
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMLDBackend.cpp 381 const AlignFragment& align_frag = llvm::cast<AlignFragment>(*frag_iter); local
382 uint64_t count = size / align_frag.getValueSize();
383 switch (align_frag.getValueSize()) {
385 std::memset(out_offset, align_frag.getValue(), count);
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.cpp 212 const AlignFragment& align_frag = llvm::cast<AlignFragment>(*frag_iter); local
213 uint64_t count = size / align_frag.getValueSize();
214 switch (align_frag.getValueSize()) {
216 std::memset(out_offset, align_frag.getValue(), count);
    [all...]

Completed in 145 milliseconds