Lines Matching refs:posState
654 0 xxx LowCoder[posState] xxx
655 1 0 yyy MidCoder[posState] yyy + 8
661 LowCoder[posState] to decode 3-bit zero-based match length (xxx).
667 MidCoder[posState] to decode 3-bit "yyy" value, and zero-based match
674 LZMA uses "posState" value as context to select the binary tree
677 unsigned posState = OutWindow.TotalPos & ((1 << pb) - 1);
703 unsigned Decode(CRangeDecoder *rc, unsigned posState)
706 return LowCoder[posState].Decode(rc);
708 return 8 + MidCoder[posState].Decode(rc);
963 unsigned posState = OutWindow.TotalPos & ((1 << pb) - 1);
964 unsigned state2 = (state << kNumPosBitsMax) + posState;
1025 len = LenDecoder.Decode(&RangeDec, posState);
1122 len = RepLenDecoder.Decode(&RangeDec, posState);