Lines Matching refs:size_t
30 Byte *dest, size_t *destLen, UInt32 desiredPackSize, UInt32 *unpackSize);
207 #define kNumLogBits (11 + sizeof(size_t) / 8 * 3)
220 size_t k = ((size_t)1 << ((slot >> 1) - 1));
221 size_t j;
338 ((p)->prices[posState][(size_t)(len) - LZMA_MATCH_LEN_MIN])
342 ((p)->prices2[(size_t)(len) - 2] + ((p)->prices1[posState][((len) - 2) & (kLenNumLowSymbols * 2 - 1)] & (((len) - 2 - kLenNumLowSymbols * 2) >> 9)))
637 #define RangeEnc_GetProcessed(p) ( (p)->processed + (size_t)((p)->buf - (p)->bufBase) + (p)->cacheSize)
638 #define RangeEnc_GetProcessed_sizet(p) ((size_t)(p)->processed + (size_t)((p)->buf - (p)->bufBase) + (size_t)(p)->cacheSize)
675 const size_t num = (size_t)(p->buf - p->bufBase);
1050 unsigned prob = probs[(size_t)i + (1 << (kLenNumHighBits - 1))];
1051 prices[(size_t)i * 2 ] = price + GET_PRICEa_0(prob);
1052 prices[(size_t)i * 2 + 1] = price + GET_PRICEa_1(prob);
1059 size_t num = (p->tableSize - kLenNumLowSymbols * 2) * sizeof(p->prices[0][0]);
1105 const unsigned len = p->matches[(size_t)numPairs - 2];
1115 const ptrdiff_t dif = (ptrdiff_t)-1 - (ptrdiff_t)p->matches[(size_t)numPairs - 1];
1142 static UInt32 GetPrice_PureRep(const CLzmaEnc *p, unsigned repIndex, size_t state, size_t posState)
1290 p->backRes = MATCHES[(size_t)numPairs - 1] + LZMA_NUM_REPS;
1390 UInt32 dist = MATCHES[(size_t)offs + 1];
1600 nextOpt = &p->opt[(size_t)cur + 1];
1782 + LitEnc_Matched_GetPrice(LIT_PROBS(position + len, data[(size_t)len - 1]),
1857 dist = MATCHES[(size_t)offs + 1];
1911 price += LitEnc_Matched_GetPrice(LIT_PROBS(position + len, data[(size_t)len - 1]),
1949 dist = MATCHES[(size_t)offs + 1];
2017 p->backRes = p->matches[(size_t)numPairs - 1] + LZMA_NUM_REPS;
2026 mainDist = p->matches[(size_t)numPairs - 1];
2030 if (mainLen != p->matches[(size_t)numPairs - 4] + 1)
2032 dist2 = p->matches[(size_t)numPairs - 3];
2062 UInt32 newDist = p->matches[(size_t)p->numPairs - 1];
2241 const CLzmaProb *probs = p->posEncoders + (size_t)base * 2;
2285 prob = probs[(size_t)slot + (1 << (kNumPosSlotBits - 1))];
2286 posSlotPrices[(size_t)slot * 2 ] = price + GET_PRICEa_0(prob);
2287 posSlotPrices[(size_t)slot * 2 + 1] = price + GET_PRICEa_1(prob);
2294 posSlotPrices[(size_t)slot * 2 ] += delta;
2295 posSlotPrices[(size_t)slot * 2 + 1] += delta;
2916 size_t rem;
2920 static size_t SeqOutStreamBuf_Write(ISeqOutStreamPtr pp, const void *data, size_t size)
2955 Byte *dest, size_t *destLen, UInt32 desiredPackSize, UInt32 *unpackSize)