HomeSort by relevance Sort by last modified time
    Searched refs:dicSize (Results 1 - 11 of 11) sorted by null

  /external/lzma/CPP/7zip/Common/
MethodProps.cpp 93 static HRESULT StringToDictSize(const UString &s, UInt32 &dicSize)
105 dicSize = (UInt32)1 << (unsigned)number;
111 case 'b': dicSize = number; return S_OK;
119 dicSize = number << numBits;
340 UInt32 dicSize;
341 RINOK(StringToDictSize(value, dicSize));
342 prop.Value = dicSize;
410 UInt32 dicSize;
411 RINOK(PROPVARIANT_to_DictSize(value, dicSize));
412 prop.Value = dicSize;
    [all...]
  /external/lzma/C/
Lzma2Dec.c 65 UInt32 dicSize;
68 dicSize = (prop == 40) ? 0xFFFFFFFF : LZMA2_DIC_SIZE_FROM_PROP(prop);
70 props[1] = (Byte)(dicSize);
71 props[2] = (Byte)(dicSize >> 8);
72 props[3] = (Byte)(dicSize >> 16);
73 props[4] = (Byte)(dicSize >> 24);
165 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= size)
166 p->checkDicSize = p->prop.dicSize;
LzmaDec.h 29 UInt32 dicSize;
LzmaDec.c 472 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= len)
473 p->checkDicSize = p->prop.dicSize;
494 UInt32 rem = p->prop.dicSize - p->processedPos;
499 if (p->processedPos >= p->prop.dicSize)
500 p->checkDicSize = p->prop.dicSize;
933 UInt32 dicSize;
939 dicSize = data[1] | ((UInt32)data[2] << 8) | ((UInt32)data[3] << 16) | ((UInt32)data[4] << 24);
941 if (dicSize < LZMA_DIC_MIN)
942 dicSize = LZMA_DIC_MIN;
943 p->dicSize = dicSize;
    [all...]
Lzma2Enc.c 443 UInt32 dicSize = LzmaEncProps_GetDictSize(&p->props.lzmaProps);
445 if (dicSize <= LZMA2_DIC_SIZE_FROM_PROP(i))
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/
OpenWnnJni.h 64 NJ_UINT32 dicSize[ NJ_MAX_DIC ];
OpenWnnDictionaryImplJni.c 251 work->dicSize[ i ] = dic_size[ i ];
    [all...]
  /external/lzma/CPP/7zip/Archive/
LzmaHandler.cpp 28 UInt32 dicSize = GetUi32(p);
29 if (dicSize == 1)
32 if (dicSize == ((UInt32)2 << i) || dicSize == ((UInt32)3 << i))
34 return (dicSize == 0xFFFFFFFF);
  /external/lzma/CPP/7zip/Archive/7z/
7zHandlerOut.cpp 118 UInt32 dicSize;
122 case k_LZMA2: dicSize = oneMethodInfo.Get_Lzma_DicSize(); break;
123 case k_PPMD: dicSize = oneMethodInfo.Get_Ppmd_MemSize(); break;
124 case k_Deflate: dicSize = (UInt32)1 << 15; break;
125 case k_BZip2: dicSize = oneMethodInfo.Get_BZip2_BlockSize(); break;
128 _numSolidBytes = (UInt64)dicSize << 7;
7zHandler.cpp 418 UInt32 dicSize = GetUi32((const Byte *)props + 1);
419 char *dest = s + GetStringForSizeValue(s, dicSize);
7zIn.cpp 754 UInt32 dicSize = GetUi32(_inByteBack->GetPtr() + 1);
755 if (folders.ParsedMethods.LzmaDic < dicSize)
756 folders.ParsedMethods.LzmaDic = dicSize;
    [all...]

Completed in 517 milliseconds