Searched refs:getEntrySize (Results 1 – 14 of 14) sorted by relevance
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMPLT.cpp | 51 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()
|
D | ARMGOT.cpp | 82 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/ |
D | X86PLT.cpp | 77 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()
|
D | X86GOTPLT.cpp | 86 got_entry= new GOTEntry(0, getEntrySize(),&(getSectionData())); in reserveGOTPLTEntry() 91 m_Section.setSize(m_Section.size() + getEntrySize()); in reserveGOTPLTEntry()
|
D | X86LDBackend.cpp | 462 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/ |
D | ELFSectionRelTable.hxx | 66 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()
|
D | ELFSectionSymTab.hxx | 95 rsl_assert(sh->getEntrySize() == TypeTraits<ELFSymbolTy>::size); in read() 101 size_t size = sh->getSize() / sh->getEntrySize(); in read()
|
D | ELFSectionHeader.hxx | 95 PRINT_LINT("Entry Size", concrete()->getEntrySize()); in print()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
D | DropBoxTest.java | 375 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/ |
D | ELFSectionHeader.h | 152 word_t getEntrySize() const { in getEntrySize() function 203 xword_t getEntrySize() const { in getEntrySize() function
|
/frameworks/compile/mclinker/lib/Target/ |
D | GOT.cpp | 41 size_t GOT::getEntrySize() const in getEntrySize() function in GOT
|
/frameworks/compile/mclinker/include/mcld/Target/ |
D | PLT.h | 32 size_t getEntrySize() const in getEntrySize() function
|
D | GOT.h | 73 size_t getEntrySize() const;
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsGOT.cpp | 79 size_t entry_size = getEntrySize(); in emit()
|