Lines Matching refs:pRLE
985 HPBYTE pRLE = (HPBYTE) pSrcBuf; in ImplDecodeRLEBuffer() local
997 if( pRLE && pDIB ) in ImplDecodeRLEBuffer()
1001 if( ( nCountByte = *pRLE++ ) == 0 ) in ImplDecodeRLEBuffer()
1003 nRunByte = *pRLE++; in ImplDecodeRLEBuffer()
1013 cTmp = *pRLE++; in ImplDecodeRLEBuffer()
1019 ImplSetPixel4( pDIB, nX++, *pRLE++ >> 4 ); in ImplDecodeRLEBuffer()
1022 pRLE++; in ImplDecodeRLEBuffer()
1026 memcpy( &pDIB[ nX ], pRLE, nRunByte ); in ImplDecodeRLEBuffer()
1027 pRLE += nRunByte; in ImplDecodeRLEBuffer()
1031 pRLE++; in ImplDecodeRLEBuffer()
1043 nX += *pRLE++; in ImplDecodeRLEBuffer()
1044 pDIB = ( pRow += ( *pRLE++ ) * nWidthAl ); in ImplDecodeRLEBuffer()
1049 cTmp = *pRLE++; in ImplDecodeRLEBuffer()