Lines Matching refs:UInt32
12 #define kMaxValForNormalize ((UInt32)0xFFFFFFFF)
14 #define kNormalizeMask (~(UInt32)(kNormalizeStepMin - 1))
15 #define kMaxHistorySize ((UInt32)7 << 29)
30 static int LzInWindow_Create(CMatchFinder *p, UInt32 keepSizeReserv, ISzAlloc *alloc) in LzInWindow_Create()
32 UInt32 blockSize = p->keepSizeBefore + p->keepSizeAfter + keepSizeReserv; in LzInWindow_Create()
49 UInt32 MatchFinder_GetNumAvailableBytes(CMatchFinder *p) { return p->streamPos - p->pos; } in MatchFinder_GetNumAvailableBytes()
51 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) in MatchFinder_ReduceOffsets()
67 UInt32 curSize = 0xFFFFFFFF - (p->streamPos - p->pos); in MatchFinder_ReadBlock()
69 curSize = (UInt32)p->directInputRem; in MatchFinder_ReadBlock()
92 p->streamPos += (UInt32)size; in MatchFinder_ReadBlock()
141 UInt32 i; in MatchFinder_Construct()
149 UInt32 r = i; in MatchFinder_Construct()
177 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, in MatchFinder_Create()
178 UInt32 keepAddBufferBefore, UInt32 matchMaxLen, UInt32 keepAddBufferAfter, in MatchFinder_Create()
181 UInt32 sizeReserv; in MatchFinder_Create()
190 if (historySize >= ((UInt32)3 << 30)) sizeReserv = historySize >> 3; in MatchFinder_Create()
191 else if (historySize >= ((UInt32)2 << 30)) sizeReserv = historySize >> 2; in MatchFinder_Create()
202 UInt32 newCyclicBufferSize = historySize + 1; in MatchFinder_Create()
203 UInt32 hs; in MatchFinder_Create()
268 UInt32 limit = kMaxValForNormalize - p->pos; in MatchFinder_SetLimits()
269 UInt32 limit2 = p->cyclicBufferSize - p->cyclicBufferPos; in MatchFinder_SetLimits()
287 UInt32 lenLimit = p->streamPos - p->pos; in MatchFinder_SetLimits()
297 UInt32 i; in MatchFinder_Init_2()
298 UInt32 *hash = p->hash; in MatchFinder_Init_2()
299 UInt32 num = p->hashSizeSum; in MatchFinder_Init_2()
320 static UInt32 MatchFinder_GetSubValue(CMatchFinder *p) in MatchFinder_GetSubValue()
325 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, size_t numItems) in MatchFinder_Normalize3()
330 UInt32 value = items[i]; in MatchFinder_Normalize3()
341 UInt32 subValue = MatchFinder_GetSubValue(p); in MatchFinder_Normalize()
357 static UInt32 * Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CL… in Hc_GetMatchesSpec()
358 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, in Hc_GetMatchesSpec()
359 UInt32 *distances, UInt32 maxLen) in Hc_GetMatchesSpec()
364 UInt32 delta = pos - curMatch; in Hc_GetMatchesSpec()
372 UInt32 len = 0; in Hc_GetMatchesSpec()
388 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, in GetMatchesSpec1()
389 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, in GetMatchesSpec1()
390 UInt32 *distances, UInt32 maxLen) in GetMatchesSpec1()
394 UInt32 len0 = 0, len1 = 0; in GetMatchesSpec1()
397 UInt32 delta = pos - curMatch; in GetMatchesSpec1()
406 UInt32 len = (len0 < len1 ? len0 : len1); in GetMatchesSpec1()
443 static void SkipMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *… in SkipMatchesSpec()
444 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue) in SkipMatchesSpec()
448 UInt32 len0 = 0, len1 = 0; in SkipMatchesSpec()
451 UInt32 delta = pos - curMatch; in SkipMatchesSpec()
460 UInt32 len = (len0 < len1 ? len0 : len1); in SkipMatchesSpec()
503 UInt32 lenLimit; UInt32 hv; const Byte *cur; UInt32 curMatch; \
513 offset = (UInt32)(GetMatchesSpec1(lenLimit, curMatch, MF_PARAMS(p), \
524 maxLen = (UInt32)(c - cur); }
526 static UInt32 Bt2_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) in Bt2_MatchFinder_GetMatches()
528 UInt32 offset; in Bt2_MatchFinder_GetMatches()
537 UInt32 Bt3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) in Bt3Zip_MatchFinder_GetMatches()
539 UInt32 offset; in Bt3Zip_MatchFinder_GetMatches()
548 static UInt32 Bt3_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) in Bt3_MatchFinder_GetMatches()
550 UInt32 h2, d2, maxLen, offset, pos; in Bt3_MatchFinder_GetMatches()
551 UInt32 *hash; in Bt3_MatchFinder_GetMatches()
585 static UInt32 Bt4_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) in Bt4_MatchFinder_GetMatches()
587 UInt32 h2, h3, d2, d3, maxLen, offset, pos; in Bt4_MatchFinder_GetMatches()
588 UInt32 *hash; in Bt4_MatchFinder_GetMatches()
717 static UInt32 Hc4_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) in Hc4_MatchFinder_GetMatches()
719 UInt32 h2, h3, d2, d3, maxLen, offset, pos; in Hc4_MatchFinder_GetMatches()
720 UInt32 *hash; in Hc4_MatchFinder_GetMatches()
769 offset = (UInt32)(Hc_GetMatchesSpec(lenLimit, curMatch, MF_PARAMS(p), in Hc4_MatchFinder_GetMatches()
853 UInt32 Hc3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances) in Hc3Zip_MatchFinder_GetMatches()
855 UInt32 offset; in Hc3Zip_MatchFinder_GetMatches()
860 offset = (UInt32)(Hc_GetMatchesSpec(lenLimit, curMatch, MF_PARAMS(p), in Hc3Zip_MatchFinder_GetMatches()
865 static void Bt2_MatchFinder_Skip(CMatchFinder *p, UInt32 num) in Bt2_MatchFinder_Skip()
878 void Bt3Zip_MatchFinder_Skip(CMatchFinder *p, UInt32 num) in Bt3Zip_MatchFinder_Skip()
891 static void Bt3_MatchFinder_Skip(CMatchFinder *p, UInt32 num) in Bt3_MatchFinder_Skip()
895 UInt32 h2; in Bt3_MatchFinder_Skip()
896 UInt32 *hash; in Bt3_MatchFinder_Skip()
908 static void Bt4_MatchFinder_Skip(CMatchFinder *p, UInt32 num) in Bt4_MatchFinder_Skip()
912 UInt32 h2, h3; in Bt4_MatchFinder_Skip()
913 UInt32 *hash; in Bt4_MatchFinder_Skip()
947 static void Hc4_MatchFinder_Skip(CMatchFinder *p, UInt32 num) in Hc4_MatchFinder_Skip()
951 UInt32 h2, h3; in Hc4_MatchFinder_Skip()
952 UInt32 *hash; in Hc4_MatchFinder_Skip()
988 void Hc3Zip_MatchFinder_Skip(CMatchFinder *p, UInt32 num) in Hc3Zip_MatchFinder_Skip()