Lines Matching refs:sal_uLong

44 ImpNodeCache::ImpNodeCache( const sal_uLong nInitSize ) :  in ImpNodeCache()
47 const sal_uLong nSize = nInitSize + 4; in ImpNodeCache()
49 for( sal_uLong i = 0; i < nSize; i++ ) in ImpNodeCache()
75 Octree::Octree( sal_uLong nColors ) : in Octree()
87 Octree::Octree( const BitmapReadAccess& rReadAcc, sal_uLong nColors ) : in Octree()
168 for ( sal_uLong i = 0UL; i < 8UL; i++ ) in ImplDeleteOctree()
206 const sal_uLong nShift = 7 - nLevel; in ImplAdd()
208 const sal_uLong nIndex = ( ( ( pColor->GetRed() & cMask ) >> nShift ) << 2 ) | in ImplAdd()
221 sal_uLong i; in ImplReduce()
223 sal_uLong nRedSum = 0L; in ImplReduce()
224 sal_uLong nGreenSum = 0L; in ImplReduce()
225 sal_uLong nBlueSum = 0L; in ImplReduce()
226 sal_uLong nChilds = 0L; in ImplReduce()
268 else for( sal_uLong i = 0UL; i < 8UL; i++ ) in CreatePalette()
282 const sal_uLong nShift = 7 - nLevel; in GetPalIndex()
284 const sal_uLong nIndex = ( ( ( pColor->GetRed() & cMask ) >> nShift ) << 2 ) | in GetPalIndex()
299 sal_uLong* cdp; in InverseColorMap()
301 const sal_uLong nColorMax = 1 << OCTREE_BITS; in InverseColorMap()
302 const sal_uLong xsqr = 1 << ( nBits << 1 ); in InverseColorMap()
303 const sal_uLong xsqr2 = xsqr << 1; in InverseColorMap()
304 const sal_uLong nColors = rPal.GetEntryCount(); in InverseColorMap()
307 sal_uLong r, g, b; in InverseColorMap()
314 for( sal_uLong nIndex = 0; nIndex < nColors; nIndex++ ) in InverseColorMap()
330 cdp = (sal_uLong*) pBuffer; in InverseColorMap()
358 void InverseColorMap::ImplCreateBuffers( const sal_uLong nMax ) in ImplCreateBuffers()
360 const sal_uLong nCount = nMax * nMax * nMax; in ImplCreateBuffers()
361 const sal_uLong nSize = nCount * sizeof( sal_uLong ); in ImplCreateBuffers()