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

/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMPLT.cpp54 m_Section.setSize(m_Section.size() + plt0_entry->getEntrySize());
73 m_Section.setSize(m_Section.size() + plt1_entry->getEntrySize());
169 data = static_cast<uint32_t*>(malloc(plt0->getEntrySize()));
174 memcpy(data, arm_plt0, plt0->getEntrySize());
192 uint32_t GOTEntrySize = m_GOT.getEntrySize();
197 plt_base + llvm::cast<ARMPLT0>((*it)).getEntrySize(); //Offset of PLT0
200 uint64_t PLT1EntrySize = llvm::cast<ARMPLT1>((*it)).getEntrySize();
206 Out = static_cast<uint32_t*>(malloc(plt1->getEntrySize()));
233 unsigned int plt0_size = llvm::cast<ARMPLT0>((*it)).getEntrySize();
245 entry_size = plt1->getEntrySize();
[all...]
H A DARMGOT.cpp83 got_entry= new GOTEntry(0, getEntrySize(),&(getSectionData()));
88 m_Section.setSize(m_Section.size() + getEntrySize());
176 unsigned int entry_size = getEntrySize();
/frameworks/compile/mclinker/lib/Target/
H A DGOT.cpp44 size_t GOT::getEntrySize() const function in class:GOT
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86PLT.cpp86 m_Section.setSize(m_Section.size() + plt0_entry->getEntrySize());
105 m_Section.setSize(m_Section.size() + plt1_entry->getEntrySize());
158 data = static_cast<unsigned char*>(malloc(plt0->getEntrySize()));
163 memcpy(data, m_PLT0, plt0->getEntrySize());
190 uint64_t GOTEntrySize = m_GOTPLT.getEntrySize();
206 data = static_cast<unsigned char*>(malloc(plt1->getEntrySize()));
211 memcpy(data, m_PLT1, plt1->getEntrySize());
H A DX86GOTPLT.cpp91 got_entry = new GOTEntry(0, getEntrySize(),&(getSectionData()));
95 m_Section.setSize(m_Section.size() + getEntrySize());
H A DX86LDBackend.cpp541 unsigned int plt0_size = llvm::cast<X86PLT0>((*it)).getEntrySize();
551 EntrySize = plt1->getEntrySize();
564 EntrySize = m_pGOT->getEntrySize();
581 EntrySize = m_pGOTPLT->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.h72 size_t getEntrySize() const;
H A DPLT.h34 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.cpp81 size_t entry_size = getEntrySize();

Completed in 80 milliseconds