HomeSort by relevance Sort by last modified time
    Searched refs:numThreads (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/lzma/CPP/7zip/UI/Console/
BenchCon.h 12 FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
14 HRESULT CrcBenchCon(FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
BenchCon.cpp 147 static void PrintRequirements(FILE *f, const char *sizeString, UInt64 size, const char *threadsString, UInt32 numThreads)
151 fprintf(f, " MB, # %s %3d", threadsString, (unsigned int)numThreads);
156 FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary)
164 if (numThreads == (UInt32)-1)
165 numThreads = numCPUs;
166 if (numThreads > 1)
167 numThreads &= ~1;
172 if (GetBenchMemoryUsage(numThreads, ((UInt32)1 << dicSizeLog)) + (8 << 20) <= ramSize)
179 numThreads = 1;
182 PrintRequirements(f, "usage:", GetBenchMemoryUsage(numThreads, dictionary), "Benchmark threads: ", numThreads);
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaLib.h 39 -1 for any from: level, loc, lp, pb, fb, numThreads
85 numThreads - The number of thereads. 1 or 2. The default value is 2.
106 int numThreads /* 1 or 2, default = 2 */
LzmaLib.c 23 int numThreads /* 1 or 2, default = 2 */
34 props.numThreads = numThreads;
LzmaEnc.h 30 int numThreads; /* 1 or 2, default = 2 */
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaLib.h 40 -1 for any from: level, loc, lp, pb, fb, numThreads
86 numThreads - The number of thereads. 1 or 2. The default value is 2.
107 int numThreads /* 1 or 2, default = 2 */
LzmaLib.c 24 int numThreads /* 1 or 2, default = 2 */
35 props.numThreads = numThreads;
LzmaEnc.h 31 int numThreads; /* 1 or 2, default = 2 */
  /external/lzma/C/
LzmaLib.h 39 -1 for any from: level, loc, lp, pb, fb, numThreads
85 numThreads - The number of thereads. 1 or 2. The default value is 2.
106 int numThreads /* 1 or 2, default = 2 */
LzmaLib.c 23 int numThreads /* 1 or 2, default = 2 */
34 props.numThreads = numThreads;
LzmaEnc.h 30 int numThreads; /* 1 or 2, default = 2 */
  /external/lzma/CPP/7zip/UI/Common/
Bench.h 33 UInt32 numThreads, UInt32 dictionarySize, IBenchCallback *callback);
37 UInt64 GetBenchMemoryUsage(UInt32 numThreads, UInt32 dictionary);
40 HRESULT CrcBench(UInt32 numThreads, UInt32 bufferSize, UInt64 &speed);
Bench.cpp 499 HRESULT Init(UInt32 dictionarySize, UInt32 numThreads, CBaseRandomGenerator *rg);
553 HRESULT CEncoderInfo::Init(UInt32 dictionarySize, UInt32 numThreads, CBaseRandomGenerator *rgLoc)
590 props[1].ulVal = numThreads;
668 UInt32 numThreads, UInt32 dictionarySize, IBenchCallback *callback)
672 (numThreads > 1 ? numThreads / 2 : 1);
678 (numThreads > 1 ? 2 : 1);
682 if (dictionarySize < (1 << kBenchMinDicLogSize) || numThreads < 1 || numEncoderThreads > kNumThreadsMax)
713 RINOK(encoders[i].Init(dictionarySize, numThreads, &rg));
865 UInt64 GetBenchMemoryUsage(UInt32 numThreads, UInt32 dictionary)
    [all...]
  /external/chromium_org/third_party/icu/source/test/threadtest/
threadtest.cpp 159 int numThreads;
220 gRunInfo.numThreads = 2;
241 gRunInfo.numThreads = atoi(argv[argnum]);
242 if (gRunInfo.numThreads < 0)
401 if (gRunInfo.numThreads == 0)
408 gThreadInfo = new ThreadInfo[gRunInfo.numThreads];
410 for (threadNum=0; threadNum < gRunInfo.numThreads; threadNum++)
445 for (threadNum=0; threadNum < gRunInfo.numThreads; threadNum++)
457 for (threadNum=0; threadNum < gRunInfo.numThreads; threadNum++)
518 for (threadNum=0; threadNum < gRunInfo.numThreads; threadNum++)
    [all...]
  /external/icu/icu4c/source/test/threadtest/
threadtest.cpp 159 int numThreads;
220 gRunInfo.numThreads = 2;
241 gRunInfo.numThreads = atoi(argv[argnum]);
242 if (gRunInfo.numThreads < 0)
401 if (gRunInfo.numThreads == 0)
408 gThreadInfo = new ThreadInfo[gRunInfo.numThreads];
410 for (threadNum=0; threadNum < gRunInfo.numThreads; threadNum++)
445 for (threadNum=0; threadNum < gRunInfo.numThreads; threadNum++)
457 for (threadNum=0; threadNum < gRunInfo.numThreads; threadNum++)
518 for (threadNum=0; threadNum < gRunInfo.numThreads; threadNum++)
    [all...]
  /external/lzma/CPP/7zip/Archive/Common/
ParseProperties.h 16 HRESULT ParseMtProp(const UString &name, const PROPVARIANT &prop, UInt32 defaultNumThreads, UInt32 &numThreads);
ParseProperties.cpp 150 HRESULT ParseMtProp(const UString &name, const PROPVARIANT &prop, UInt32 defaultNumThreads, UInt32 &numThreads)
157 numThreads = prop.ulVal;
163 numThreads = (val ? defaultNumThreads : 1);
174 numThreads = number;
HandlerOut.h 59 , UInt32 numThreads
  /libcore/luni/src/test/java/tests/support/
ThreadPool.java 32 public ThreadPool(int numThreads) {
39 for (int i = 0; i < numThreads; i++) {
  /external/aac/libAACdec/src/
aacdec_drc_types.h 158 USHORT numThreads; /* The number of DRC data threads extracted from the found payload elements */
  /external/lzma/CPP/7zip/Archive/7z/
7zDecode.h 61 , bool mtMode, UInt32 numThreads
7zHandler.h 96 , UInt32 numThreads
  /external/deqp/modules/egl/
teglColorClearCase.cpp 306 int numThreads = (int)contexts.size();
307 int numPackets = numThreads * numPacketsPerThread;
310 vector<vector<ClearPacket> > packets (numThreads);
311 vector<ColorClearThreadSp> threads (numThreads);
318 for (int threadNdx = 0; threadNdx < numThreads; threadNdx++)
327 packet.wait = semaphores[packetNdx*numThreads + threadNdx];
328 packet.signal = semaphores[packetNdx*numThreads + threadNdx + 1];
342 for (int threadNdx = 0; threadNdx < numThreads; threadNdx++)
364 for (int threadNdx = 0; threadNdx < numThreads; threadNdx++)
370 for (int threadNdx = 0; threadNdx < numThreads; threadNdx++
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
SuppliersTest.java 267 final int numThreads = 3;
268 final Thread[] threads = new Thread[numThreads];
298 while (waitingThreads() != numThreads - 1) {
314 for (int i = 0; i < numThreads; i++) {
349 final int numThreads = 10;
351 Thread[] threads = new Thread[numThreads];
352 for (int i = 0; i < numThreads; i++) {
368 assertEquals(numThreads * iterations + 1, (int) nonThreadSafe.get());
  /external/chromium_org/native_client_sdk/src/examples/demo/voronoi/
example.js 8 function postThreadFunc(numThreads) {
11 'value' : numThreads});

Completed in 343 milliseconds

1 2 3