HomeSort by relevance Sort by last modified time
    Searched refs:plt1 (Results 1 - 3 of 3) sorted by null

  /frameworks/compile/mclinker/lib/Target/ARM/
ARMPLT.cpp 199 ARMPLT1* plt1 = NULL; local
203 plt1 = &(llvm::cast<ARMPLT1>(*it));
204 Out = static_cast<uint32_t*>(malloc(plt1->getEntrySize()));
207 llvm::report_fatal_error("Allocating new memory for plt1 failed!");
217 plt1->setContent(reinterpret_cast<unsigned char*>(Out));
238 ARMPLT1* plt1 = 0; local
242 plt1 = &(llvm::cast<ARMPLT1>(*it));
243 entry_size = plt1->getEntrySize();
244 memcpy(buffer + result, plt1->getContent(), entry_size);
  /frameworks/compile/mclinker/lib/Target/X86/
X86PLT.cpp 226 X86PLT1* plt1 = 0; local
231 plt1 = &(llvm::cast<X86PLT1>(*it));
233 data = static_cast<unsigned char*>(malloc(plt1->getEntrySize()));
236 llvm::report_fatal_error("Allocating new memory for plt1 failed!");
238 memcpy(data, m_PLT1, plt1->getEntrySize());
254 plt1->setContent(data);
X86LDBackend.cpp 468 X86PLT1* plt1 = 0; local
471 plt1 = &(llvm::cast<X86PLT1>(*it));
472 EntrySize = plt1->getEntrySize();
473 memcpy(buffer + RegionSize, plt1->getContent(), EntrySize);

Completed in 129 milliseconds