Lines Matching refs:UInt32
9 typedef UInt32 CLzRef;
14 UInt32 pos;
15 UInt32 posLimit;
16 UInt32 streamPos;
17 UInt32 lenLimit;
19 UInt32 cyclicBufferPos;
20 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */
22 UInt32 matchMaxLen;
25 UInt32 hashMask;
26 UInt32 cutValue;
32 UInt32 blockSize;
33 UInt32 keepSizeBefore;
34 UInt32 keepSizeAfter;
36 UInt32 numHashBytes;
41 UInt32 historySize;
42 UInt32 fixedHashSize;
43 UInt32 hashSizeSum;
44 UInt32 numSons;
46 UInt32 crc[256];
65 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
66 UInt32 keepAddBufferBefore, UInt32 matchMaxLen, UInt32 keepAddBufferAfter,
69 void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems);
70 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue);
72 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *…
73 UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 _cutValue,
74 UInt32 *distances, UInt32 maxLen);
84 typedef UInt32 (*Mf_GetNumAvailableBytes_Func)(void *object);
86 typedef UInt32 (*Mf_GetMatches_Func)(void *object, UInt32 *distances);
87 typedef void (*Mf_Skip_Func)(void *object, UInt32);
102 UInt32 Bt3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances);
103 UInt32 Hc3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances);
104 void Bt3Zip_MatchFinder_Skip(CMatchFinder *p, UInt32 num);
105 void Hc3Zip_MatchFinder_Skip(CMatchFinder *p, UInt32 num);