Lines Matching refs:pBuff
179 MemoryBuffer *pBuff = new (m_lastBuffer) MemoryBuffer(newPage, m_allocSize); in CreateBuffer() local
181 return pBuff; in CreateBuffer()
208 MemoryBuffer *pBuff = m_pages; in GetLocation() local
209 for (; pBuff<m_lastBuffer && IsInDistance(pBuff->m_next, addr, MAX_DISTANCE); ++pBuff) in GetLocation()
211 if (pBuff->m_next < pBuff->m_base + pBuff->m_size) in GetLocation()
213 UINT_PTR loc = pBuff->m_next; in GetLocation()
214 pBuff->m_next += MAX_PROBE_SIZE; in GetLocation()
219 pBuff = CreateBuffer(addr); in GetLocation()
220 if(!pBuff) in GetLocation()
223 UINT_PTR loc = pBuff->m_next; in GetLocation()
224 pBuff->m_next += MAX_PROBE_SIZE; in GetLocation()