HomeSort by relevance Sort by last modified time
    Searched full:numthreads (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /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/qemu/distrib/sdl-1.2.15/test/
torturethread.c 12 #define NUMTHREADS 10
14 static char volatile time_for_threads_to_die[NUMTHREADS];
31 SDL_Thread *sub_threads[NUMTHREADS];
32 int flags[NUMTHREADS];
38 for(i = 0; i < NUMTHREADS; i++) {
49 for(i = 0; i < NUMTHREADS; i++) {
61 SDL_Thread *threads[NUMTHREADS];
71 for(i = 0; i < NUMTHREADS; i++) {
82 for(i = 0; i < NUMTHREADS; i++) {
86 for(i = 0; i < NUMTHREADS; i++)
    [all...]
  /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);
ZipRegistry.h 33 UInt32 NumThreads;
42 BlockLogSize = NumThreads = Level = Dictionary = Order = UInt32(-1);
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...]
ArchiveCommandLine.h 90 UInt32 NumThreads;
  /external/lzma/CPP/7zip/Archive/7z/
7zCompressionMode.h 35 UInt32 NumThreads;
43 , NumThreads(1)
7zDecode.h 61 , bool mtMode, UInt32 numThreads
7zHandler.h 96 , UInt32 numThreads
  /external/lzma/CPP/7zip/Common/
MethodProps.h 28 UInt32 NumThreads;
33 : NumThreads(1)
  /external/libcxxabi/test/
test_exception_storage.cpp 42 #define NUMTHREADS 10
43 size_t thread_globals [ NUMTHREADS ] = { 0 };
44 pthread_t threads [ NUMTHREADS ];
62 for ( int i = 0; i < NUMTHREADS; ++i )
64 for ( int i = 0; i < NUMTHREADS; ++i )
67 for ( int i = 0; i < NUMTHREADS; ++i )
73 // print_sizes ( thread_globals, thread_globals + NUMTHREADS );
74 std::sort ( thread_globals, thread_globals + NUMTHREADS );
75 for ( int i = 1; i < NUMTHREADS; ++i )
80 // print_sizes ( thread_globals, thread_globals + NUMTHREADS );
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
test_exception_storage.cpp 48 #define NUMTHREADS 10
49 size_t thread_globals [ NUMTHREADS ] = { 0 };
50 pthread_t threads [ NUMTHREADS ];
68 for ( int i = 0; i < NUMTHREADS; ++i )
70 for ( int i = 0; i < NUMTHREADS; ++i )
73 for ( int i = 0; i < NUMTHREADS; ++i )
79 // print_sizes ( thread_globals, thread_globals + NUMTHREADS );
80 std::sort ( thread_globals, thread_globals + NUMTHREADS );
81 for ( int i = 1; i < NUMTHREADS; ++i )
86 // print_sizes ( thread_globals, thread_globals + NUMTHREADS );
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaLib.c 23 int numThreads /* 1 or 2, default = 2 */
34 props.numThreads = numThreads;
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaLib.c 24 int numThreads /* 1 or 2, default = 2 */
35 props.numThreads = numThreads;
  /external/lzma/C/
LzmaLib.c 23 int numThreads /* 1 or 2, default = 2 */
34 props.numThreads = numThreads;
MtCoder.c 185 #define GET_NEXT_THREAD(p) &p->mtCoder->threads[p->index == p->mtCoder->numThreads - 1 ? 0 : p->index + 1]
274 unsigned i, numThreads = p->numThreads;
280 for (i = 0; i < numThreads; i++)
285 for (i = 0; i < numThreads; i++)
306 for (i = 0; i < numThreads; i++)
324 for (i = 0; i < numThreads; i++)
MtCoder.h 77 unsigned numThreads;
  /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
  /external/chromium_org/native_client_sdk/src/examples/demo/voronoi/
example.js 8 function postThreadFunc(numThreads) {
11 'value' : numThreads});
  /libcore/luni/src/test/java/tests/java/sql/
MultiThreadAccessTest.java 41 private static final int numThreads = 10;
57 threadPool = new ThreadPool(numThreads);
116 * the database. Number of threads is defined by numThreads variable
121 for (int i = 0; i < numThreads; i++) {
128 * tables in the database. Number of threads is defined by numThreads
142 * numThreads variable
197 * the database. Number of threads is defined by numThreads variable
216 for (int i = 0; i < numThreads; i++) {
222 double expectedVal = id + numThreads;
  /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());
  /libcore/luni/src/test/java/tests/support/
ThreadPool.java 32 public ThreadPool(int numThreads) {
39 for (int i = 0; i < numThreads; i++) {

Completed in 638 milliseconds

1 2 3 4