Lines Matching refs:pDIB
634 HPBYTE pDIB = (HPBYTE) pDstBuf; in ImplDecodeRLEBuffer() local
637 HPBYTE pLast = pDIB + rSizePixel.Height() * nWidthAl - 1; in ImplDecodeRLEBuffer()
645 if( pRLE && pDIB ) in ImplDecodeRLEBuffer()
662 ImplSetPixel4( pDIB, nX++, cTmp >> 4 ); in ImplDecodeRLEBuffer()
663 ImplSetPixel4( pDIB, nX++, cTmp & 0x0f ); in ImplDecodeRLEBuffer()
667 ImplSetPixel4( pDIB, nX++, *pRLE++ >> 4 ); in ImplDecodeRLEBuffer()
674 memcpy( &pDIB[ nX ], pRLE, nRunByte ); in ImplDecodeRLEBuffer()
684 pDIB = ( pRow += nWidthAl ); in ImplDecodeRLEBuffer()
692 pDIB = ( pRow += ( *pRLE++ ) * nWidthAl ); in ImplDecodeRLEBuffer()
705 ImplSetPixel4( pDIB, nX++, cTmp >> 4 ); in ImplDecodeRLEBuffer()
706 ImplSetPixel4( pDIB, nX++, cTmp & 0x0f ); in ImplDecodeRLEBuffer()
710 ImplSetPixel4( pDIB, nX++, cTmp >> 4 ); in ImplDecodeRLEBuffer()
715 pDIB[ nX++ ] = cTmp; in ImplDecodeRLEBuffer()
719 while( !bEndDecoding && ( pDIB <= pLast ) ); in ImplDecodeRLEBuffer()
729 rData.pDIB = (void*)mhDIB; in GetSystemData()