Lines Matching refs:mpPrefix
285 LZWCTreeNode* mpPrefix; // the compression is as same as the TIFF compression member in psp::LZWEncoder
328 mpPrefix = NULL; in LZWEncoder()
335 if (mpPrefix) in ~LZWEncoder()
336 WriteBits (mpPrefix->mnCode, mnCodeSize); in ~LZWEncoder()
365 if (!mpPrefix) in EncodeByte()
367 mpPrefix = mpTable + nByte; in EncodeByte()
372 for (p = mpPrefix->mpFirstChild; p != NULL; p = p->mpBrother) in EncodeByte()
380 mpPrefix = p; in EncodeByte()
384 WriteBits (mpPrefix->mnCode, mnCodeSize); in EncodeByte()
402 p->mpBrother = mpPrefix->mpFirstChild; in EncodeByte()
403 mpPrefix->mpFirstChild = p; in EncodeByte()
408 mpPrefix = mpTable + nV; in EncodeByte()