Lines Matching refs:pDIB
986 HPBYTE pDIB = (HPBYTE) pDstBuf; in ImplDecodeRLEBuffer() local
989 HPBYTE pLast = pDIB + rSizePixel.Height() * nWidthAl - 1; in ImplDecodeRLEBuffer()
997 if( pRLE && pDIB ) in ImplDecodeRLEBuffer()
1014 ImplSetPixel4( pDIB, nX++, cTmp >> 4 ); in ImplDecodeRLEBuffer()
1015 ImplSetPixel4( pDIB, nX++, cTmp & 0x0f ); in ImplDecodeRLEBuffer()
1019 ImplSetPixel4( pDIB, nX++, *pRLE++ >> 4 ); in ImplDecodeRLEBuffer()
1026 memcpy( &pDIB[ nX ], pRLE, nRunByte ); in ImplDecodeRLEBuffer()
1036 pDIB = ( pRow += nWidthAl ); in ImplDecodeRLEBuffer()
1044 pDIB = ( pRow += ( *pRLE++ ) * nWidthAl ); in ImplDecodeRLEBuffer()
1057 ImplSetPixel4( pDIB, nX++, cTmp >> 4 ); in ImplDecodeRLEBuffer()
1058 ImplSetPixel4( pDIB, nX++, cTmp & 0x0f ); in ImplDecodeRLEBuffer()
1062 ImplSetPixel4( pDIB, nX++, cTmp >> 4 ); in ImplDecodeRLEBuffer()
1067 pDIB[ nX++ ] = cTmp; in ImplDecodeRLEBuffer()
1071 while( !bEndDecoding && ( pDIB <= pLast ) ); in ImplDecodeRLEBuffer()
1081 rData.pDIB = mhDIB; in GetSystemData()