Home
last modified time | relevance | path

Searched refs:pbMask (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/common/lzma/
H A DLzmaEnc.c319 unsigned lpMask, pbMask; member
1029 posState = (position & p->pbMask); in GetOptimum()
1241 posState = (position & p->pbMask); in GetOptimum()
1302 UInt32 posStateNext = (position + 1) & p->pbMask; in GetOptimum()
1373 UInt32 posStateNext = (position + lenTest) & p->pbMask; in GetOptimum()
1380 posStateNext = (position + lenTest + 1) & p->pbMask; in GetOptimum()
1463 UInt32 posStateNext = (position + lenTest) & p->pbMask; in GetOptimum()
1469 posStateNext = (posStateNext + 1) & p->pbMask; in GetOptimum()
1648 WriteEndMarker(p, nowPos & p->pbMask); in Flush()
1799 posState = nowPos32 & p->pbMask; in LzmaEnc_CodeOneBlock()
[all …]
H A DLzmaDec.c154 unsigned pbMask = ((unsigned)1 << (p->prop.pb)) - 1; in LzmaDec_DecodeReal() local
175 unsigned posState = processedPos & pbMask; in LzmaDec_DecodeReal()