Lines Matching refs:m_indices2
66 sal_uInt32 *m_indices2; member in basegfx::radixSort
82 m_indices2 = NULL; in radixSort()
91 delete [] m_indices2; in ~radixSort()
103 if(m_indices2) in resize()
104 delete [] m_indices2; in resize()
110 m_indices2 = new sal_uInt32[nNumElements]; in resize()
113 if(!m_indices1 || !m_indices2) { in resize()
115 delete [] m_indices2; in resize()
117 m_indices2 = NULL; in resize()
241 m_indices2[m_offset[InputBytes[id*dwStride]]++] = id; in sort()
244 m_indices1 = m_indices2; in sort()
245 m_indices2 = Tmp; in sort()
260 if(Radix<128) m_indices2[m_offset[Radix]++] = m_indices1[i]; in sort()
261 else m_indices2[--m_offset[Radix]] = m_indices1[i]; in sort()
264 m_indices1 = m_indices2; in sort()
265 m_indices2 = Tmp; in sort()
270 m_indices2[i] = m_indices1[nNumElements-i-1]; in sort()
272 m_indices1 = m_indices2; in sort()
273 m_indices2 = Tmp; in sort()