Searched defs:dicSize (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/common/lzma/
H A DLzmaDec.h27 UInt32 dicSize; member in struct:_CLzmaProps
H A DLzmaDec.c459 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= len)
460 p->checkDicSize = p->prop.dicSize;
480 UInt32 rem = p->prop.dicSize - p->processedPos;
485 if (p->processedPos >= p->prop.dicSize)
486 p->checkDicSize = p->prop.dicSize;
911 alloc->Free(alloc, p->dic, ((p->prop).dicSize * sizeof (*p->dic)));
923 UInt32 dicSize; local
929 dicSize = data[1] | ((UInt32)data[2] << 8) | ((UInt32)data[3] << 16) | ((UInt32)data[4] << 24);
931 if (dicSize < LZMA_DIC_MIN)
932 dicSize
[all...]

Completed in 59 milliseconds