Home
last modified time | relevance | path

Searched refs:numBlockThreads (Results 1 – 3 of 3) sorted by relevance

/external/lzma/CPP/7zip/Archive/7z/
D7zHandlerOut.cpp245 UInt32 numBlockThreads = numBlockThreads_Original; in SetMainMethod() local
248 for (; numBlockThreads > 1; numBlockThreads--) in SetMainMethod()
250 UInt64 size = numBlockThreads * (lzmaMemUsage + cs); in SetMainMethod()
251 UInt32 numPackChunks = numBlockThreads + (numBlockThreads / 8) + 1; in SetMainMethod()
261 if (numBlockThreads == 0) in SetMainMethod()
262 numBlockThreads = 1; in SetMainMethod()
263 if (numBlockThreads != numBlockThreads_Original) in SetMainMethod()
265 const UInt32 numThreads_New = numBlockThreads * lzmaThreads; in SetMainMethod()
/external/lzma/CPP/7zip/Archive/
DXzHandler.cpp1199 UInt32 numBlockThreads = numBlockThreads_Original;
1202 for (; numBlockThreads > 1; numBlockThreads--)
1204 UInt64 size = numBlockThreads * (lzmaMemUsage + cs);
1205 UInt32 numPackChunks = numBlockThreads + (numBlockThreads / 8) + 1;
1215 if (numBlockThreads == 0)
1216 numBlockThreads = 1;
1217 if (numBlockThreads != numBlockThreads_Original)
1218 numThreads = numBlockThreads * lzmaThreads;
/external/lzma/CPP/7zip/UI/GUI/
DCompressDialog.cpp2653 UInt32 numBlockThreads = autoThreads / numThreads1; in SetNumThreads2() local
2654 for (; numBlockThreads > 1; numBlockThreads--) in SetNumThreads2()
2656 autoThreads = numBlockThreads * numThreads1; in SetNumThreads2()
2662 autoThreads = numBlockThreads * numThreads1; in SetNumThreads2()
2974 UInt32 numBlockThreads = numThreads / numThreads1; in GetMemoryUsage_Threads_Dict_DecompMem() local
2978 if (methodId != kLZMA && numBlockThreads != 1) in GetMemoryUsage_Threads_Dict_DecompMem()
2989 numBlockThreads = 1; in GetMemoryUsage_Threads_Dict_DecompMem()
3006 size += numBlockThreads * (size1 + blockSize); in GetMemoryUsage_Threads_Dict_DecompMem()
3010 size += numBlockThreads * (size1 + chunkSize); in GetMemoryUsage_Threads_Dict_DecompMem()
3011 UInt32 numPackChunks = numBlockThreads + (numBlockThreads / 8) + 1; in GetMemoryUsage_Threads_Dict_DecompMem()
[all …]