Searched refs:kNumPosSlotBits (Results 1 - 10 of 10) sorted by relevance
/third_party/lzma/Java/SevenZip/Compression/LZMA/ |
H A D | Base.java | 44 public static final int kNumPosSlotBits = 6;
field in Base
|
H A D | Encoder.java | 314 BitTreeEncoder[] _posSlotEncoder = new BitTreeEncoder[Base.kNumLenToPosStates]; // kNumPosSlotBits
337 int[] _posSlotPrices = new int[1<<(Base.kNumPosSlotBits+Base.kNumLenToPosStatesBits)];
387 _posSlotEncoder[i] = new BitTreeEncoder(Base.kNumPosSlotBits);
in Encoder() 496 price = _posSlotPrices[(lenToPosState << Base.kNumPosSlotBits) + GetPosSlot2(pos)] +
in GetPosLenPrice() 1046 int posSlot = (1 << Base.kNumPosSlotBits) - 1;
in WriteEndMarker() 1330 int st = (lenToPosState << Base.kNumPosSlotBits);
in FillDistancesPrices()
|
H A D | Decoder.java | 151 m_PosSlotDecoder[i] = new BitTreeDecoder(Base.kNumPosSlotBits);
in Decoder()
|
/third_party/lzma/CS/7zip/Compress/LZMA/ |
H A D | LzmaBase.cs | 31 public const int kNumPosSlotBits = 6;
field in SevenZip.Compression.LZMA.Base
|
H A D | LzmaEncoder.cs | 337 UInt32[] _posSlotPrices = new UInt32[1 << (Base.kNumPosSlotBits + Base.kNumLenToPosStatesBits)];
387 _posSlotEncoder[i] = new RangeCoder.BitTreeEncoder(Base.kNumPosSlotBits);
in Encoder() 496 price = _posSlotPrices[(lenToPosState << Base.kNumPosSlotBits) + GetPosSlot2(pos)] +
in GetPosLenPrice() 1046 UInt32 posSlot = (1 << Base.kNumPosSlotBits) - 1;
in WriteEndMarker() 1330 UInt32 st = (lenToPosState << Base.kNumPosSlotBits);
in FillDistancesPrices()
|
H A D | LzmaDecoder.cs | 164 m_PosSlotDecoder[i] = new BitTreeDecoder(Base.kNumPosSlotBits);
in Decoder()
|
/third_party/lzma/C/ |
H A D | LzmaDec.c | 111 #define kNumPosSlotBits 6
macro 150 #define Literal (PosSlot + (kNumLenToPosStates << kNumPosSlotBits))
466 ((len < kNumLenToPosStates ? len : kNumLenToPosStates - 1) << kNumPosSlotBits);
in LZMA_DECODE_REAL() 862 kNumPosSlotBits);
in LzmaDec_TryDummy() 863 TREE_DECODE_CHECK(prob, 1 << kNumPosSlotBits, posSlot)
in LzmaDec_TryDummy()
|
H A D | LzmaEnc.c | 283 #define kNumPosSlotBits 6
macro 375 CLzmaProb posSlotEncoder[kNumLenToPosStates][1 << kNumPosSlotBits];
465 CLzmaProb posSlotEncoder[kNumLenToPosStates][1 << kNumPosSlotBits];
2120 // RcTree_Encode_PosSlot(&p->rc, p->posSlotEncoder[0], (1 << kNumPosSlotBits) - 1);
in WriteEndMarker() 2130 while (m < (1 << kNumPosSlotBits));
in WriteEndMarker() 2275 // posSlotPrices[slot] = RcTree_GetPrice(encoder, kNumPosSlotBits, slot, p->ProbPrices);
in FillDistancesPrices() 2278 unsigned sym = slot + (1 << (kNumPosSlotBits - 1));
in FillDistancesPrices() 2285 prob = probs[(size_t)slot + (1 << (kNumPosSlotBits - 1))];
in FillDistancesPrices() 2564 UInt32 sym = (UInt32)posSlot + (1 << kNumPosSlotBits);
in LzmaEnc_CodeOneBlock() 2569 CLzmaProb *prob = probs + (sym >> kNumPosSlotBits);
in LzmaEnc_CodeOneBlock() [all...] |
/third_party/lzma/Asm/arm64/ |
H A D | LzmaDecOpt.S | 625 .equ kNumPosSlotBits , 6 647 .equ Literal , (PosSlot + (kNumLenToPosStates << kNumPosSlotBits)) 902 // probs + PosSlot + ((len < kNumLenToPosStates ? len : kNumLenToPosStates - 1) << kNumPosSlotBits); 907 SET_probs PosSlot - (kMatchMinLen << (kNumPosSlotBits)) 908 add probs, probs, t0_R, lsl #(kNumPosSlotBits + PSHIFT)
|
/third_party/lzma/Asm/x86/ |
H A D | LzmaDecOpt.asm | 474 kNumPosSlotBits equ 6
define 495 Literal equ (PosSlot + (kNumLenToPosStates SHL kNumPosSlotBits))
797 ; probs + PosSlot + ((len < kNumLenToPosStates ? len : kNumLenToPosStates - 1) << kNumPosSlotBits);
802 add probs, PosSlot * PMULT - (kMatchMinLen SHL (kNumPosSlotBits + PSHIFT))
803 shl t0, (kNumPosSlotBits + PSHIFT)
|
Completed in 16 milliseconds