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

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

Completed in 983 milliseconds