Searched refs:CMatchFinder (Results 1 – 3 of 3) sorted by relevance
/illumos-gate/usr/src/common/lzma/ |
H A D | LzFind.h | 47 } CMatchFinder; typedef 54 int MatchFinder_NeedMove(CMatchFinder *p); 55 Byte *MatchFinder_GetPointerToCurrentPos(CMatchFinder *p); 56 void MatchFinder_MoveBlock(CMatchFinder *p); 57 void MatchFinder_ReadIfRequired(CMatchFinder *p); 59 void MatchFinder_Construct(CMatchFinder *p); 65 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, 68 void MatchFinder_Free(CMatchFinder *p, ISzAlloc *alloc); 70 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue); 99 void MatchFinder_CreateVTable(CMatchFinder *p, IMatchFinder *vTable); [all …]
|
H A D | LzFind.c | 22 static void LzInWindow_Free(CMatchFinder *p, ISzAlloc *alloc) in LzInWindow_Free() 33 static int LzInWindow_Create(CMatchFinder *p, UInt32 keepSizeReserv, ISzAlloc *alloc) in LzInWindow_Create() 50 Byte *MatchFinder_GetPointerToCurrentPos(CMatchFinder *p) { return p->buffer; } in MatchFinder_GetPointerToCurrentPos() 51 Byte MatchFinder_GetIndexByte(CMatchFinder *p, Int32 index) { return p->buffer[index]; } in MatchFinder_GetIndexByte() 53 UInt32 MatchFinder_GetNumAvailableBytes(CMatchFinder *p) { return p->streamPos - p->pos; } in MatchFinder_GetNumAvailableBytes() 55 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue) in MatchFinder_ReduceOffsets() 62 static void MatchFinder_ReadBlock(CMatchFinder *p) in MatchFinder_ReadBlock() 86 void MatchFinder_MoveBlock(CMatchFinder *p) in MatchFinder_MoveBlock() 94 int MatchFinder_NeedMove(CMatchFinder *p) in MatchFinder_NeedMove() 100 void MatchFinder_ReadIfRequired(CMatchFinder *p) in MatchFinder_ReadIfRequired() [all …]
|
H A D | LzmaEnc.c | 286 CMatchFinder matchFinderBase;
|