Searched defs:plt1 (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMPLT.cpp201 ARMPLT1* plt1 = NULL; local
205 plt1 = &(llvm::cast<ARMPLT1>(*it));
206 Out = static_cast<uint32_t*>(malloc(plt1->getEntrySize()));
219 plt1->setContent(reinterpret_cast<unsigned char*>(Out));
240 ARMPLT1* plt1 = 0; local
244 plt1 = &(llvm::cast<ARMPLT1>(*it));
245 entry_size = plt1->getEntrySize();
246 memcpy(buffer + result, plt1->getContent(), entry_size);
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86PLT.cpp199 X86PLT1* plt1 = 0; local
204 plt1 = &(llvm::cast<X86PLT1>(*it));
206 data = static_cast<unsigned char*>(malloc(plt1->getEntrySize()));
211 memcpy(data, m_PLT1, plt1->getEntrySize());
232 plt1->setContent(data);
H A DX86LDBackend.cpp547 X86PLT1* plt1 = 0; local
550 plt1 = &(llvm::cast<X86PLT1>(*it));
551 EntrySize = plt1->getEntrySize();
552 memcpy(buffer + RegionSize, plt1->getContent(), EntrySize);

Completed in 66 milliseconds