Lines Matching refs:UInt32
13 typedef UInt32 CLzRef;
18 UInt32 pos;
19 UInt32 posLimit;
20 UInt32 streamPos;
21 UInt32 lenLimit;
23 UInt32 cyclicBufferPos;
24 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */
26 UInt32 matchMaxLen;
29 UInt32 hashMask;
30 UInt32 cutValue;
36 UInt32 blockSize;
37 UInt32 keepSizeBefore;
38 UInt32 keepSizeAfter;
40 UInt32 numHashBytes;
45 UInt32 historySize;
46 UInt32 fixedHashSize;
47 UInt32 hashSizeSum;
48 UInt32 numSons;
50 UInt32 crc[256];
69 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
70 UInt32 keepAddBufferBefore, UInt32 matchMaxLen, UInt32 keepAddBufferAfter,
73 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems);
74 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue);
76 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *son,
77 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 _cutValue,
78 UInt32 *distances, UInt32 maxLen);
88 typedef UInt32 (*Mf_GetNumAvailableBytes_Func)(void *object);
90 typedef UInt32 (*Mf_GetMatches_Func)(void *object, UInt32 *distances);
91 typedef void (*Mf_Skip_Func)(void *object, UInt32);
106 UInt32 Bt3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances);
107 UInt32 Hc3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances);
108 void Bt3Zip_MatchFinder_Skip(CMatchFinder *p, UInt32 num);
109 void Hc3Zip_MatchFinder_Skip(CMatchFinder *p, UInt32 num);