Searched defs:probs (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DLzmaDec.h11 but memory usage for CLzmaDec::probs will be doubled in that case */
49 CLzmaProb *probs; member in struct:__anon10462
67 #define LzmaDec_Construct(p) { (p)->dic = 0; (p)->probs = 0; }
H A DLzmaDec.c46 #define TREE_GET_BIT(probs, i) { GET_BIT((probs + i), i); }
47 #define TREE_DECODE(probs, limit, i) \
48 { i = 1; do { TREE_GET_BIT(probs, i); } while (i < limit); i -= limit; }
53 #define TREE_6_DECODE(probs, i) TREE_DECODE(probs, (1 << 6), i)
55 #define TREE_6_DECODE(probs, i) \
57 TREE_GET_BIT(probs, i); \
58 TREE_GET_BIT(probs, i); \
59 TREE_GET_BIT(probs,
158 CLzmaProb *probs = p->probs; local
519 CLzmaProb *probs = p->probs; local
737 CLzmaProb *probs = p->probs; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzmaDec.h11 but memory usage for CLzmaDec::probs will be doubled in that case */
49 CLzmaProb *probs; member in struct:__anon10238
67 #define LzmaDec_Construct(p) { (p)->dic = 0; (p)->probs = 0; }
H A DLzmaDec.c27 #define TREE_GET_BIT(probs, i) { GET_BIT((probs + i), i); }
28 #define TREE_DECODE(probs, limit, i) \
29 { i = 1; do { TREE_GET_BIT(probs, i); } while (i < limit); i -= limit; }
34 #define TREE_6_DECODE(probs, i) TREE_DECODE(probs, (1 << 6), i)
36 #define TREE_6_DECODE(probs, i) \
38 TREE_GET_BIT(probs, i); \
39 TREE_GET_BIT(probs, i); \
40 TREE_GET_BIT(probs,
139 CLzmaProb *probs = p->probs; local
500 CLzmaProb *probs = p->probs; local
719 CLzmaProb *probs = p->probs; local
[all...]
H A DLzmaEnc.c609 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol) argument
614 RangeEnc_EncodeBit(p, probs + (symbol >> 8), (symbol >> 7) & 1);
620 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) argument
627 RangeEnc_EncodeBit(p, probs + (offs + (matchByte & offs) + (symbol >> 8)), (symbol >> 7) & 1);
670 static UInt32 LitEnc_GetPrice(const CLzmaProb *probs, UInt32 symbol, UInt32 *ProbPrices) argument
676 price += GET_PRICEa(probs[symbol >> 8], (symbol >> 7) & 1);
683 static UInt32 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt32 *ProbPrices) argument
691 price += GET_PRICEa(probs[offs + (matchByte & offs) + (symbol >> 8)], (symbol >> 7) & 1);
700 static void RcTree_Encode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
709 RangeEnc_EncodeBit(rc, probs
714 RcTree_ReverseEncode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
727 RcTree_GetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
739 RcTree_ReverseGetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
1046 const CLzmaProb *probs = LIT_PROBS(position, *(data - 1)); local
1259 const CLzmaProb *probs = LIT_PROBS(position, *(data - 1)); local
1817 CLzmaProb *probs; local
2017 CLzmaProb *probs = p->posSlotEncoder[i]; local
[all...]

Completed in 40 milliseconds