Home
last modified time | relevance | path

Searched refs:m_pCurrent (Results 1 – 3 of 3) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Support/
DAllocators.h114 m_pCurrent(0), in LinearAllocatorBase()
164 size_type rest_num_elem = chunk_type::size() - m_pCurrent->bound; in allocate()
168 result = m_pCurrent->data + m_pCurrent->bound; in allocate()
169 m_pCurrent->bound += N; in allocate()
179 if (chunk_type::size() == m_pCurrent->bound) in allocate()
181 result = m_pCurrent->data + m_pCurrent->bound; in allocate()
182 ++m_pCurrent->bound; in allocate()
192 0 == m_pCurrent->bound || in deallocate()
193 N >= m_pCurrent->bound) in deallocate()
197 m_pCurrent->bound -= N; in deallocate()
[all …]
DGCFactory.h181 return (0 == Alloc::m_pCurrent)? in end()
183 iterator(Alloc::m_pCurrent, Alloc::m_pCurrent->bound); in end()
187 return (0 == Alloc::m_pCurrent)? in end()
189 const_iterator(Alloc::m_pCurrent, Alloc::m_pCurrent->bound); in end()
/frameworks/compile/mclinker/include/mcld/ADT/
DTreeAllocator.h79 Alloc::m_pCurrent = pClient.Alloc::m_pCurrent; in replace()
86 Alloc::m_pCurrent->next = pClient.Alloc::m_pRoot; in concatenate()
87 Alloc::m_pCurrent = pClient.Alloc::m_pCurrent; in concatenate()