OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CMatchFinder
(Results
1 - 5
of
5
) sorted by null
/external/lzma/C/
LzFind.h
49
}
CMatchFinder
;
56
int MatchFinder_NeedMove(
CMatchFinder
*p);
57
Byte *MatchFinder_GetPointerToCurrentPos(
CMatchFinder
*p);
58
void MatchFinder_MoveBlock(
CMatchFinder
*p);
59
void MatchFinder_ReadIfRequired(
CMatchFinder
*p);
61
void MatchFinder_Construct(
CMatchFinder
*p);
67
int MatchFinder_Create(
CMatchFinder
*p, UInt32 historySize,
70
void MatchFinder_Free(
CMatchFinder
*p, ISzAlloc *alloc);
72
void MatchFinder_ReduceOffsets(
CMatchFinder
*p, UInt32 subValue);
101
void MatchFinder_CreateVTable(
CMatchFinder
*p, IMatchFinder *vTable);
[
all
...]
LzFind.c
19
static void LzInWindow_Free(
CMatchFinder
*p, ISzAlloc *alloc)
30
static int LzInWindow_Create(
CMatchFinder
*p, UInt32 keepSizeReserv, ISzAlloc *alloc)
47
Byte *MatchFinder_GetPointerToCurrentPos(
CMatchFinder
*p) { return p->buffer; }
48
Byte MatchFinder_GetIndexByte(
CMatchFinder
*p, Int32 index) { return p->buffer[index]; }
50
UInt32 MatchFinder_GetNumAvailableBytes(
CMatchFinder
*p) { return p->streamPos - p->pos; }
52
void MatchFinder_ReduceOffsets(
CMatchFinder
*p, UInt32 subValue)
59
static void MatchFinder_ReadBlock(
CMatchFinder
*p)
94
void MatchFinder_MoveBlock(
CMatchFinder
*p)
102
int MatchFinder_NeedMove(
CMatchFinder
*p)
110
void MatchFinder_ReadIfRequired(
CMatchFinder
*p)
[
all
...]
LzFindMt.h
89
CMatchFinder
*MatchFinder;
LzFindMt.c
170
CMatchFinder
*mf = mt->MatchFinder;
469
CMatchFinder
*mf = p->MatchFinder;
493
CMatchFinder
*mf = p->MatchFinder;
LzmaEnc.c
279
CMatchFinder
matchFinderBase;
[
all
...]
Completed in 48 milliseconds