Searched refs:oneMethodInfo (Results 1 – 4 of 4) sorted by relevance
/third_party/lzma/CPP/7zip/Archive/Common/ |
D | HandlerOut.cpp | 123 void CMultiMethodProps::SetGlobalLevelTo(COneMethodInfo &oneMethodInfo) const in SetGlobalLevelTo() 127 SetMethodProp32(oneMethodInfo, NCoderPropID::kLevel, (UInt32)level); in SetGlobalLevelTo() 144 void CMultiMethodProps::SetMethodThreadsTo_IfNotFinded(CMethodProps &oneMethodInfo, UInt32 numThrea… in SetMethodThreadsTo_IfNotFinded() argument 146 SetMethodProp32(oneMethodInfo, NCoderPropID::kNumThreads, numThreads); in SetMethodThreadsTo_IfNotFinded() 149 void CMultiMethodProps::SetMethodThreadsTo_Replace(CMethodProps &oneMethodInfo, UInt32 numThreads) in SetMethodThreadsTo_Replace() argument 151 SetMethodProp32_Replace(oneMethodInfo, NCoderPropID::kNumThreads, numThreads); in SetMethodThreadsTo_Replace()
|
D | HandlerOut.h | 81 void SetGlobalLevelTo(COneMethodInfo &oneMethodInfo) const;
|
/third_party/lzma/CPP/7zip/Archive/7z/ |
D | 7zHandlerOut.cpp | 118 COneMethodInfo &oneMethodInfo = methods[i]; in SetMainMethod() local 120 SetGlobalLevelTo(oneMethodInfo); in SetMainMethod() 123 const bool numThreads_WasSpecifiedInMethod = (oneMethodInfo.Get_NumThreads() >= 0); in SetMainMethod() 127 CMultiMethodProps::SetMethodThreadsTo_IfNotFinded(oneMethodInfo, methodMode.NumThreads); in SetMainMethod() 132 RINOK(PropsMethod_To_FullMethod(methodFull, oneMethodInfo)) in SetMainMethod() 146 case k_LZMA2: dicSize = oneMethodInfo.Get_Lzma_DicSize(); break; in SetMainMethod() 147 case k_PPMD: dicSize = oneMethodInfo.Get_Ppmd_MemSize(); break; in SetMainMethod() 150 case k_BZip2: dicSize = oneMethodInfo.Get_BZip2_BlockSize(); break; in SetMainMethod() 215 cs = oneMethodInfo.Get_Xz_BlockSize(); in SetMainMethod() 231 const UInt32 lzmaThreads = oneMethodInfo.Get_Lzma_NumThreads(); in SetMainMethod() [all …]
|
/third_party/lzma/CPP/7zip/Archive/ |
D | XzHandler.cpp | 1174 COneMethodInfo oneMethodInfo; 1176 oneMethodInfo = _methods[0]; 1178 SetGlobalLevelTo(oneMethodInfo); 1180 const bool numThreads_WasSpecifiedInMethod = (oneMethodInfo.Get_NumThreads() >= 0); 1184 CMultiMethodProps::SetMethodThreadsTo_IfNotFinded(oneMethodInfo, numThreads); 1189 oneMethodInfo.AddProp_BlockSize2(cs); 1190 cs = oneMethodInfo.Get_Xz_BlockSize(); 1195 const UInt32 lzmaThreads = oneMethodInfo.Get_Lzma_NumThreads(); 1202 const UInt64 lzmaMemUsage = oneMethodInfo.Get_Lzma_MemUsage(false);
|