Lines Matching refs:pRLE
633 HPBYTE pRLE = (HPBYTE) pSrcBuf; in ImplDecodeRLEBuffer() local
645 if( pRLE && pDIB ) in ImplDecodeRLEBuffer()
649 if( !( nCountByte = *pRLE++ ) ) in ImplDecodeRLEBuffer()
651 nRunByte = *pRLE++; in ImplDecodeRLEBuffer()
661 cTmp = *pRLE++; in ImplDecodeRLEBuffer()
667 ImplSetPixel4( pDIB, nX++, *pRLE++ >> 4 ); in ImplDecodeRLEBuffer()
670 pRLE++; in ImplDecodeRLEBuffer()
674 memcpy( &pDIB[ nX ], pRLE, nRunByte ); in ImplDecodeRLEBuffer()
675 pRLE += nRunByte; in ImplDecodeRLEBuffer()
679 pRLE++; in ImplDecodeRLEBuffer()
691 nX += *pRLE++; in ImplDecodeRLEBuffer()
692 pDIB = ( pRow += ( *pRLE++ ) * nWidthAl ); in ImplDecodeRLEBuffer()
697 cTmp = *pRLE++; in ImplDecodeRLEBuffer()