Symbol: CLzRef
usr/src/common/lzma/LzFind.c
157
static CLzRef* AllocRefs(UInt32 num, ISzAlloc *alloc)
usr/src/common/lzma/LzFind.c
159
size_t sizeInBytes = (size_t)num * sizeof(CLzRef);
usr/src/common/lzma/LzFind.c
160
if (sizeInBytes / sizeof(CLzRef) != num)
usr/src/common/lzma/LzFind.c
162
return (CLzRef *)alloc->Alloc(alloc, sizeInBytes);
usr/src/common/lzma/LzFind.c
285
void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems)
usr/src/common/lzma/LzFind.c
317
static UInt32 * Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
usr/src/common/lzma/LzFind.c
348
UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
usr/src/common/lzma/LzFind.c
352
CLzRef *ptr0 = son + (_cyclicBufferPos << 1) + 1;
usr/src/common/lzma/LzFind.c
353
CLzRef *ptr1 = son + (_cyclicBufferPos << 1);
usr/src/common/lzma/LzFind.c
364
CLzRef *pair = son + ((_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)) << 1);
usr/src/common/lzma/LzFind.c
403
static void SkipMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son,
usr/src/common/lzma/LzFind.c
406
CLzRef *ptr0 = son + (_cyclicBufferPos << 1) + 1;
usr/src/common/lzma/LzFind.c
407
CLzRef *ptr1 = son + (_cyclicBufferPos << 1);
usr/src/common/lzma/LzFind.c
418
CLzRef *pair = son + ((_cyclicBufferPos - delta + ((delta > _cyclicBufferPos) ? _cyclicBufferSize : 0)) << 1);
usr/src/common/lzma/LzFind.h
23
CLzRef *hash;
usr/src/common/lzma/LzFind.h
24
CLzRef *son;
usr/src/common/lzma/LzFind.h
69
void MatchFinder_Normalize3(UInt32 subValue, CLzRef *items, UInt32 numItems);
usr/src/common/lzma/LzFind.h
72
UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *son,