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

  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonGOT.cpp 22 : GOT(pSection), m_pLast(NULL)
39 if (NULL == m_pLast) {
41 m_pLast = llvm::cast<HexagonGOTEntry>(&m_SectionData->front());
42 return m_pLast;
45 m_pLast = llvm::cast<HexagonGOTEntry>(m_pLast->getNextNode());
46 return m_pLast;
HexagonGOT.h 49 HexagonGOTEntry* m_pLast; ///< the last consumed entry
  /frameworks/compile/mclinker/lib/Target/X86/
X86GOT.cpp 22 : GOT(pSection), m_pLast(NULL)
39 if (NULL == m_pLast) {
41 m_pLast = llvm::cast<X86_32GOTEntry>(&m_SectionData->front());
42 return m_pLast;
45 m_pLast = llvm::cast<X86_32GOTEntry>(m_pLast->getNextNode());
46 return m_pLast;
53 : GOT(pSection), m_pLast(NULL)
70 if (NULL == m_pLast) {
72 m_pLast = llvm::cast<X86_64GOTEntry>(&m_SectionData->front())
    [all...]
X86GOT.h 49 X86_32GOTEntry* m_pLast; ///< the last consumed entry
79 X86_64GOTEntry* m_pLast; ///< the last consumed entry
  /frameworks/compile/mclinker/include/mcld/MC/
InputFactory.h 50 const AttributeProxy& attr() const { return *m_pLast; }
51 AttributeProxy& attr() { return *m_pLast; }
54 AttributeProxy* m_pLast;
  /frameworks/compile/mclinker/lib/MC/
InputFactory.cpp 23 m_pLast = new AttributeProxy(*m_pAttrSet,
31 delete m_pLast;
40 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset);
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMGOT.cpp 27 : GOT(pSection), m_pLast(NULL)
56 if (NULL == m_pLast) {
58 m_pLast = llvm::cast<ARMGOTEntry>(&m_SectionData->front());
59 return m_pLast;
62 m_pLast = llvm::cast<ARMGOTEntry>(m_pLast->getNextNode());
63 return m_pLast;
ARMGOT.h 93 ARMGOTEntry* m_pLast; ///< the last consumed entry

Completed in 33 milliseconds