Searched refs:dicSize (Results 1 - 14 of 14) sorted by relevance

/external/lzma/CPP/7zip/Archive/Common/
H A DParseProperties.h10 HRESULT ParsePropDictionaryValue(const UString &srcStringSpec, UInt32 &dicSize);
H A DParseProperties.cpp40 HRESULT ParsePropDictionaryValue(const UString &srcStringSpec, UInt32 &dicSize) argument
55 dicSize = (UInt32)1 << (int)number;
63 dicSize = (UInt32)number;
68 dicSize = (UInt32)(number << 10);
73 dicSize = (UInt32)(number << 20);
H A DHandlerOut.cpp204 UInt32 dicSize = local
223 SetMethodProp(oneMethodInfo, NCoderPropID::kDictionarySize, dicSize);
258 UInt32 dicSize = local
264 SetMethodProp(oneMethodInfo, NCoderPropID::kDictionarySize, dicSize);
344 UInt32 dicSize; local
345 RINOK(ParsePropDictionaryValue(value, dicSize));
346 prop.Value = dicSize;
602 UInt32 dicSize; local
603 RINOK(ParsePropDictionaryValue(realName.Mid(MyStringLen(nameToPropID.Name)), value, dicSize));
604 prop.Value = dicSize;
[all...]
/external/chromium_org/third_party/lzma_sdk/
H A DLzma2Dec.c63 UInt32 dicSize; local
66 dicSize = (prop == 40) ? 0xFFFFFFFF : LZMA2_DIC_SIZE_FROM_PROP(prop);
68 props[1] = (Byte)(dicSize);
69 props[2] = (Byte)(dicSize >> 8);
70 props[3] = (Byte)(dicSize >> 16);
71 props[4] = (Byte)(dicSize >> 24);
163 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= size)
164 p->checkDicSize = p->prop.dicSize;
H A DLzmaDec.h31 UInt32 dicSize; member in struct:_CLzmaProps
H A DLzmaDec.c440 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= len)
441 p->checkDicSize = p->prop.dicSize;
461 UInt32 rem = p->prop.dicSize - p->processedPos;
466 if (p->processedPos >= p->prop.dicSize)
467 p->checkDicSize = p->prop.dicSize;
900 UInt32 dicSize; local
906 dicSize = data[1] | ((UInt32)data[2] << 8) | ((UInt32)data[3] << 16) | ((UInt32)data[4] << 24);
908 if (dicSize < LZMA_DIC_MIN)
909 dicSize = LZMA_DIC_MIN;
910 p->dicSize
[all...]
/external/lzma/C/
H A DLzma2Dec.c63 UInt32 dicSize; local
66 dicSize = (prop == 40) ? 0xFFFFFFFF : LZMA2_DIC_SIZE_FROM_PROP(prop);
68 props[1] = (Byte)(dicSize);
69 props[2] = (Byte)(dicSize >> 8);
70 props[3] = (Byte)(dicSize >> 16);
71 props[4] = (Byte)(dicSize >> 24);
163 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= size)
164 p->checkDicSize = p->prop.dicSize;
H A DLzmaDec.h31 UInt32 dicSize; member in struct:_CLzmaProps
H A DLzmaDec.c440 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= len)
441 p->checkDicSize = p->prop.dicSize;
461 UInt32 rem = p->prop.dicSize - p->processedPos;
466 if (p->processedPos >= p->prop.dicSize)
467 p->checkDicSize = p->prop.dicSize;
900 UInt32 dicSize; local
906 dicSize = data[1] | ((UInt32)data[2] << 8) | ((UInt32)data[3] << 16) | ((UInt32)data[4] << 24);
908 if (dicSize < LZMA_DIC_MIN)
909 dicSize = LZMA_DIC_MIN;
910 p->dicSize
[all...]
H A DLzma2Enc.c427 UInt32 dicSize = LzmaEncProps_GetDictSize(&p->props.lzmaProps); local
429 if (dicSize <= LZMA2_DIC_SIZE_FROM_PROP(i))
/external/lzma/CPP/7zip/Archive/7z/
H A D7zHandler.cpp284 UInt32 dicSize = GetUi32((const Byte *)coder.Props + 1); local
285 propsString = GetStringForSizeValue(dicSize);
290 UInt32 dicSize = (((UInt32)2 | ((p) & 1)) << ((p) / 2 + 11)); local
291 propsString = GetStringForSizeValue(dicSize);
299 UInt32 dicSize = GetUi32((const Byte *)coder.Props + 1); local
300 propsString += GetStringForSizeValue(dicSize);
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaDec.h32 UInt32 dicSize; member in struct:_CLzmaProps
H A DLzmaDec.c441 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= len)
442 p->checkDicSize = p->prop.dicSize;
462 UInt32 rem = p->prop.dicSize - p->processedPos;
467 if (p->processedPos >= p->prop.dicSize)
468 p->checkDicSize = p->prop.dicSize;
901 UInt32 dicSize; local
907 dicSize = data[1] | ((UInt32)data[2] << 8) | ((UInt32)data[3] << 16) | ((UInt32)data[4] << 24);
909 if (dicSize < LZMA_DIC_MIN)
910 dicSize = LZMA_DIC_MIN;
911 p->dicSize
[all...]
/external/lzma/CPP/7zip/Archive/
H A DLzmaHandler.cpp28 UInt32 dicSize = GetUi32(p); local
30 if (dicSize == ((UInt32)2 << i) || dicSize == ((UInt32)3 << i))
32 return (dicSize == 0xFFFFFFFF);

Completed in 198 milliseconds