Home
last modified time | relevance | path

Searched refs:getEntrySize (Results 1 – 14 of 14) sorted by relevance

/frameworks/compile/mclinker/lib/Target/ARM/
DARMPLT.cpp51 m_Section.setSize(m_Section.size() + plt0_entry->getEntrySize()); in ARMPLT()
70 m_Section.setSize(m_Section.size() + plt1_entry->getEntrySize()); in reserveEntry()
167 data = static_cast<uint32_t*>(malloc(plt0->getEntrySize())); in applyPLT0()
172 memcpy(data, arm_plt0, plt0->getEntrySize()); in applyPLT0()
190 uint32_t GOTEntrySize = m_GOT.getEntrySize(); in applyPLT1()
195 plt_base + llvm::cast<ARMPLT0>((*it)).getEntrySize(); //Offset of PLT0 in applyPLT1()
198 uint64_t PLT1EntrySize = llvm::cast<ARMPLT1>((*it)).getEntrySize(); in applyPLT1()
204 Out = static_cast<uint32_t*>(malloc(plt1->getEntrySize())); in applyPLT1()
231 unsigned int plt0_size = llvm::cast<ARMPLT0>((*it)).getEntrySize(); in emit()
243 entry_size = plt1->getEntrySize(); in emit()
DARMGOT.cpp82 got_entry= new GOTEntry(0, getEntrySize(),&(getSectionData())); in reserveGOTPLTEntry()
87 m_Section.setSize(m_Section.size() + getEntrySize()); in reserveGOTPLTEntry()
175 unsigned int entry_size = getEntrySize(); in emit()
/frameworks/compile/mclinker/lib/Target/X86/
DX86PLT.cpp77 m_Section.setSize(m_Section.size() + plt0_entry->getEntrySize()); in X86PLT()
97 m_Section.setSize(m_Section.size() + plt1_entry->getEntrySize()); in reserveEntry()
99 got_entry= new (std::nothrow) GOTEntry(0, m_GOT.getEntrySize(), in reserveEntry()
185 data = static_cast<unsigned char*>(malloc(plt0->getEntrySize())); in applyPLT0()
190 memcpy(data, m_PLT0, plt0->getEntrySize()); in applyPLT0()
217 uint64_t GOTEntrySize = m_GOT.getEntrySize(); in applyPLT1()
233 data = static_cast<unsigned char*>(malloc(plt1->getEntrySize())); in applyPLT1()
238 memcpy(data, m_PLT1, plt1->getEntrySize()); in applyPLT1()
DX86GOTPLT.cpp86 got_entry= new GOTEntry(0, getEntrySize(),&(getSectionData())); in reserveGOTPLTEntry()
91 m_Section.setSize(m_Section.size() + getEntrySize()); in reserveGOTPLTEntry()
DX86LDBackend.cpp462 unsigned int plt0_size = llvm::cast<X86PLT0>((*it)).getEntrySize(); in emitSectionData()
472 EntrySize = plt1->getEntrySize(); in emitSectionData()
487 EntrySize = m_pGOT->getEntrySize(); in emitSectionData()
/frameworks/compile/linkloader/include/impl/
DELFSectionRelTable.hxx66 size_t size = sh->getSize() / sh->getEntrySize(); in read()
70 rsl_assert(sh->getEntrySize() == TypeTraits<ELFRelocRelTy>::size); in read()
76 rsl_assert(sh->getEntrySize() == TypeTraits<ELFRelocRelaTy>::size); in read()
DELFSectionSymTab.hxx95 rsl_assert(sh->getEntrySize() == TypeTraits<ELFSymbolTy>::size); in read()
101 size_t size = sh->getSize() / sh->getEntrySize(); in read()
DELFSectionHeader.hxx95 PRINT_LINT("Entry Size", concrete()->getEntrySize()); in print()
/frameworks/base/services/tests/servicestests/src/com/android/server/
DDropBoxTest.java375 assertEquals(blockSize - overhead, getEntrySize(e0)); in testSizeLimits()
376 assertEquals(blockSize - overhead, getEntrySize(e1)); in testSizeLimits()
383 assertEquals(-1, getEntrySize(e2)); // Tombstone in testSizeLimits()
384 assertEquals(blockSize - overhead, getEntrySize(e3)); in testSizeLimits()
385 assertEquals(blockSize * 2 - overhead, getEntrySize(e4)); in testSizeLimits()
386 assertEquals(blockSize - overhead, getEntrySize(e5)); in testSizeLimits()
387 assertEquals(-1, getEntrySize(e6)); in testSizeLimits()
392 assertEquals(-1, getEntrySize(e7)); // Tombstone in testSizeLimits()
393 assertEquals(blockSize - overhead, getEntrySize(e8)); in testSizeLimits()
394 assertEquals(blockSize - overhead, getEntrySize(e9)); in testSizeLimits()
[all …]
/frameworks/compile/linkloader/include/
DELFSectionHeader.h152 word_t getEntrySize() const { in getEntrySize() function
203 xword_t getEntrySize() const { in getEntrySize() function
/frameworks/compile/mclinker/lib/Target/
DGOT.cpp41 size_t GOT::getEntrySize() const in getEntrySize() function in GOT
/frameworks/compile/mclinker/include/mcld/Target/
DPLT.h32 size_t getEntrySize() const in getEntrySize() function
DGOT.h73 size_t getEntrySize() const;
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsGOT.cpp79 size_t entry_size = getEntrySize(); in emit()