OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isrep
(Results
1 - 7
of
7
) sorted by null
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMACoder.java
41
final short[]
isRep
= new short[State.STATES];
74
RangeCoder.initProbs(
isRep
);
LZMADecoder.java
58
int len = rc.decodeBit(
isRep
, state.get()) == 0
LZMAEncoder.java
266
rc.encodeBit(
isRep
, state.get(), 1);
271
rc.encodeBit(
isRep
, state.get(), 0);
364
+ RangeEncoder.getBitPrice(
isRep
[state.get()], 0);
369
+ RangeEncoder.getBitPrice(
isRep
[state.get()], 1);
/external/lzma/C/
LzmaEnc.c
252
CLzmaProb
isRep
[kNumStates];
317
CLzmaProb
isRep
[kNumStates];
366
memcpy(dest->
isRep
, p->
isRep
, sizeof(p->
isRep
));
392
memcpy(dest->
isRep
, p->
isRep
, sizeof(p->
isRep
));
1035
repMatchPrice = matchPrice + GET_PRICE_1(p->
isRep
[p->state]);
1085
normalMatchPrice = matchPrice + GET_PRICE_0(p->
isRep
[p->state]);
[
all
...]
LzmaDec.c
104
#define
IsRep
(IsMatch + (kNumStates << kNumPosBitsMax))
105
#define IsRepG0 (
IsRep
+ kNumStates)
232
prob = probs +
IsRep
+ state;
577
prob = probs +
IsRep
+ state;
/external/lzma/CPP/7zip/Bundles/LzmaSpec/
LzmaSpec.cpp
436
CProb
IsRep
[kNumStates];
451
INIT_PROBS(
IsRep
);
495
if (RangeDec.DecodeBit(&
IsRep
[state]) != 0)
/external/lzma/DOC/
lzma-specification.txt
934
CProb
IsRep
[kNumStates];
941
from "
IsRep
", "IsRepG0", "IsRepG1" and "IsRepG2" arrays.
972
IsRep
[state] decode
[
all
...]
Completed in 127 milliseconds