Lines Matching refs:pLookup

128 	const byte *pLookup = NULL;  in decode()  local
231 pLookup = &lookupTable[0] - 1; in decode()
262 *pDest++ = nextByte(pSrc, pLookup); in decode()
266 *--pDest = nextByte(pSrc, pLookup); in decode()
278 *pDest = nextByte(pSrc, pLookup); in decode()
283 *pDest = nextByte(pSrc, pLookup); in decode()
293 horizontal(pSrc, pDest, pLookup); in decode()
299 vertical(pSrc, pDest, pLookup); in decode()
304 horizontal(pSrc, pDest, pLookup); in decode()
309 vertical(pSrc, pDest, pLookup); in decode()
318 *pDestLine++ = nextByte(pSrc, pLookup); in decode()
327 *pDestLine = nextByte(pSrc, pLookup); in decode()
333 horizontal(pSrc, pDest, pLookup); in decode()
338 horizontal(pSrc, pDest, pLookup); in decode()
342 decom11(pSrc, pDest, pLookup); in decode()
351 diag(pSrc, pDest, pLookup); in decode()
361 diag(pSrc, pDest, pLookup); in decode()
369 diag(pSrc, pDest, pLookup); in decode()
379 diag(pSrc, pDest, pLookup); in decode()
388 diag(pSrc, pDest, pLookup); in decode()
398 diag(pSrc, pDest, pLookup); in decode()
408 diag(pSrc, pDest, pLookup); in decode()
465 byte GfxSurface::nextByte(const byte *&pSrc, const byte *&pLookup) { in nextByte() argument
466 assert(pLookup); in nextByte()
474 ++pLookup; in nextByte()
478 return *pLookup; in nextByte()
499 void GfxSurface::horizontal(const byte *&pSrc, byte *&pDest, const byte *&pLookup) { in horizontal() argument
520 *pDest = nextByte(pSrc, pLookup); in horizontal()
527 *pDest = nextByte(pSrc, pLookup); in horizontal()
554 *pDest = nextByte(pSrc, pLookup); in horizontal()
559 *pDest = nextByte(pSrc, pLookup); in horizontal()
589 void GfxSurface::vertical(const byte *&pSrc, byte *&pDest, const byte *&pLookup) { in vertical() argument
607 *pDest++ = nextByte(pSrc, pLookup); in vertical()
612 *--pDest = nextByte(pSrc, pLookup); in vertical()
634 *pDest++ = nextByte(pSrc, pLookup); in vertical()
640 *--pDest = nextByte(pSrc, pLookup); in vertical()
650 void GfxSurface::decom11(const byte *&pSrc, byte *&pDest, const byte *&pLookup) { in decom11() argument
661 *pDest = nextByte(pSrc, pLookup); in decom11()
679 *++pDest = nextByte(pSrc, pLookup); in decom11()
691 *++pDest = nextByte(pSrc, pLookup); in decom11()
721 *pDest = nextByte(pSrc, pLookup); in decom11()
730 *pDest = nextByte(pSrc, pLookup); in decom11()
742 void GfxSurface::diag(const byte *&pSrc, byte *&pDest, const byte *&pLookup) { in diag() argument
750 *pDest = nextByte(pSrc, pLookup); in diag()
759 *pDest = nextByte(pSrc, pLookup); in diag()
777 TF2(pSrc, pDest, pLookup, diagIndex); in diag()
787 *pDest = nextByte(pSrc, pLookup); in diag()
796 *pDest = nextByte(pSrc, pLookup); in diag()
813 TF2(pSrc, pDest, pLookup, diagIndex); in diag()
865 void GfxSurface::TF2(const byte *&pSrc, byte *&pDest, const byte *&pLookup, int &v) { in TF2() argument
869 *pDest = nextByte(pSrc, pLookup); in TF2()