OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:numPosStates
(Results
1 - 7
of
7
) sorted by null
/external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java
18
public void Create(int
numPosStates
)
20
for (; m_NumPosStates <
numPosStates
; m_NumPosStates++)
172
int
numPosStates
= 1 << pb;
173
m_LenDecoder.Create(
numPosStates
);
174
m_RepLenDecoder.Create(
numPosStates
);
175
m_PosStateMask =
numPosStates
- 1;
Encoder.java
184
public void Init(int
numPosStates
)
188
for (int posState = 0; posState <
numPosStates
; posState++)
265
public void UpdateTables(int
numPosStates
)
267
for (int posState = 0; posState <
numPosStates
; posState++)
[
all
...]
/external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs
20
public void Create(uint
numPosStates
)
22
for (uint posState = m_NumPosStates; posState <
numPosStates
; posState++)
27
m_NumPosStates =
numPosStates
;
191
uint
numPosStates
= (uint)1 << pb;
192
m_LenDecoder.Create(
numPosStates
);
193
m_RepLenDecoder.Create(
numPosStates
);
194
m_PosStateMask =
numPosStates
- 1;
LzmaEncoder.cs
184
public void Init(UInt32
numPosStates
)
188
for (UInt32 posState = 0; posState <
numPosStates
; posState++)
265
public void UpdateTables(UInt32
numPosStates
)
267
for (UInt32 posState = 0; posState <
numPosStates
; posState++)
[
all
...]
/external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c
785
static void LenPriceEnc_UpdateTables(CLenPriceEnc *p, UInt32
numPosStates
, UInt32 *ProbPrices)
788
for (posState = 0; posState <
numPosStates
; posState++)
[
all
...]
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c
786
static void LenPriceEnc_UpdateTables(CLenPriceEnc *p, UInt32
numPosStates
, UInt32 *ProbPrices)
789
for (posState = 0; posState <
numPosStates
; posState++)
[
all
...]
/external/lzma/C/
LzmaEnc.c
785
static void LenPriceEnc_UpdateTables(CLenPriceEnc *p, UInt32
numPosStates
, UInt32 *ProbPrices)
788
for (posState = 0; posState <
numPosStates
; posState++)
[
all
...]
Completed in 1538 milliseconds