Lines Matching refs:nX
44 inline void ImplSetPixel4( const HPBYTE pScanline, long nX, const PM_BYTE cIndex ) in ImplSetPixel4() argument
46 PM_BYTE rByte = pScanline[ nX >> 1 ]; in ImplSetPixel4()
48 ( nX & 1 ) ? ( rByte &= 0xf0, rByte |= ( cIndex & 0x0f ) ) : in ImplSetPixel4()
420 for( ULONG nX = 0UL; nX < nWidth; nX += 8UL ) in ImplCreateDIB4FromDIB1() local
640 ULONG nX = 0; in ImplDecodeRLEBuffer() local
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()
676 nX += nRunByte; in ImplDecodeRLEBuffer()
685 nX = 0UL; in ImplDecodeRLEBuffer()
691 nX += *pRLE++; 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()