Searched defs:threads (Results 101 - 125 of 128) sorted by relevance

123456

/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dtcmalloc_unittest.cc33 // * The test consists of a set of threads.
166 static const int FLAGS_numthreads = 10; // Number of threads
194 // Global array of threads
196 static TesterThread** threads; member in namespace:testing
476 TesterThread* thread = threads[tid];
546 threads[thread_id]->Run();
1266 // Create threads
1267 fprintf(LOGSTREAM, "Testing threaded allocation/deallocation (%d threads)\n",
1269 threads = new TesterThread*[FLAGS_numthreads];
1271 threads[
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dtcmalloc_unittest.cc33 // * The test consists of a set of threads.
166 static const int FLAGS_numthreads = 10; // Number of threads
194 // Global array of threads
196 static TesterThread** threads; member in namespace:testing
476 TesterThread* thread = threads[tid];
546 threads[thread_id]->Run();
1266 // Create threads
1267 fprintf(LOGSTREAM, "Testing threaded allocation/deallocation (%d threads)\n",
1269 threads = new TesterThread*[FLAGS_numthreads];
1271 threads[
[all...]
/external/deqp/modules/egl/
H A DteglGLES2SharedRenderingPerfTests.cpp898 void createThreads (vector<TestThread*>& threads, int threadCount, int perThreadContextCount, vector<TestContext*>& contexts) argument
901 DE_ASSERT(threads.empty());
910 threads.push_back(new TestThread(threadContexts));
916 void destroyThreads (vector<TestThread*>& threads) argument
918 for (int threadNdx = 0; threadNdx < (int)threads.size(); threadNdx++)
920 delete threads[threadNdx];
921 threads[threadNdx] = NULL;
924 threads.clear();
927 void startThreads (vector<TestThread*>& threads) argument
929 for (int threadNdx = 0; threadNdx < (int)threads
933 joinThreads(vector<TestThread*>& threads) argument
939 threadResultsOk(const vector<TestThread*>& threads) argument
1050 vector<TestThread*> threads; local
1083 createTestName(int threads, int perThreadContextCount) argument
[all...]
/external/fio/
H A Dinit.c45 struct thread_data *threads = NULL; variable in typeref:struct:thread_data
243 if (threads) {
244 void *tp = threads;
246 threads = NULL;
255 if (threads) {
269 * threads/processes. So setup a shared memory segment that will hold
277 if (threads)
304 threads = shmat(shm_id, NULL, 0);
305 if (threads == (void *) -1) {
310 memset(threads,
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dtsmthred.cpp214 // TestThreads -- see if threads really work at all.
216 // Set up N threads pointing at N chars. When they are started, they will
237 // TestArabicShapeThreads -- see if calls to u_shapeArabic in many threads works successfully
239 // Set up N threads pointing at N chars. When they are started, they will make calls to doTailTest which tests
241 // At the end we make sure all threads managed to run u_shapeArabic successfully.
308 SimpleThread *threads[THREADTEST_NRTHREADS]; local
315 threads[i] = new TestThreadsThread(&threadTestChars[i]);
319 logln("->" + UnicodeString(threadTestChars) + "<- Firing off threads.. ");
322 if (threads[i]->start() != 0) {
332 logln("Waiting for threads t
378 SimpleThread *threads[ARABICSHAPE_THREADTEST]; local
501 TestMutexThread *threads[TESTMUTEX_THREAD_COUNT]; local
1564 TxThread * threads[4]; local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
H A Dnuma.c119 /* Global, read-writable area, accessible to all processes and threads: */
135 struct thread_data *threads; member in struct:global_info
155 OPT_INTEGER('t', "nr_threads" , &p0.nr_threads, "number of threads per process"),
404 * threads of this process, or only be accessed by this thread:
517 td = g->threads + t;
634 td = g->threads + t;
792 g->threads[task_nr].curr_cpu = cpu;
799 * Count the number of nodes a process's threads
818 td = g->threads + task_nr;
833 * Count the number of distinct process-threads
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Devsel.c1003 struct thread_map *threads)
1011 perf_evsel__alloc_fd(evsel, cpus->nr, threads->nr) < 0)
1033 for (thread = 0; thread < threads->nr; thread++) {
1037 pid = threads->map[thread];
1104 thread = threads->nr;
1129 int threads[1]; member in struct:__anon25185
1132 .threads = { -1, },
1136 struct thread_map *threads)
1143 if (threads == NULL)
1144 threads
1002 __perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus, struct thread_map *threads) argument
1135 perf_evsel__open(struct perf_evsel *evsel, struct cpu_map *cpus, struct thread_map *threads) argument
1155 perf_evsel__open_per_thread(struct perf_evsel *evsel, struct thread_map *threads) argument
[all...]
H A Dparse-events.c1092 int threads[1]; member in struct:__anon25195
1095 .threads = { 0 },
/external/lzma/CPP/7zip/UI/Common/
H A DBench.cpp987 CCrcThreads threads; local
990 threads.Items = new CCrcInfo[numThreads];
994 CCrcInfo &info = threads.Items[i];
1004 CCrcInfo &info = threads.Items[i];
1006 threads.NumThreads++;
1008 threads.WaitAll();
1010 if (!threads.Items[i].Res)
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeap.cpp384 // FIXME: in an unlikely coincidence that two threads decide
401 // Only cleanup if we parked all threads in which case the GC happened
402 // and we need to resume the other threads.
413 bool m_parkedAllThreads; // False if we fail to park all threads
1059 // No locking needed as all threads are at safepoints at this point in time.
1060 ThreadState::AttachedThreadStateSet& threads = ThreadState::attachedThreads(); local
1061 for (ThreadState::AttachedThreadStateSet::iterator it = threads.begin(), end = threads.end(); it != end; ++it)
1182 // Since the FreePagePool is global other threads could use all the
2074 // FIXME: We should let the amount of threads scal
2120 ThreadState::AttachedThreadStateSet& threads = ThreadState::attachedThreads(); local
2335 ThreadState::AttachedThreadStateSet& threads = ThreadState::attachedThreads(); local
2648 ThreadState::AttachedThreadStateSet& threads = ThreadState::attachedThreads(); local
2660 ThreadState::AttachedThreadStateSet& threads = ThreadState::attachedThreads(); local
2673 ThreadState::AttachedThreadStateSet& threads = ThreadState::attachedThreads(); local
2685 ThreadState::AttachedThreadStateSet& threads = ThreadState::attachedThreads(); local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvpxenc.c219 static const arg_def_t threads = ARG_DEF("t", "threads", 1, variable
220 "Max number of threads to use");
248 &usage, &threads, &profile,
1055 } else if (arg_match(&arg, &threads, argi)) {
/external/libvpx/libvpx/
H A Dvpxenc.c251 static const arg_def_t threads = ARG_DEF("t", "threads", 1, variable
252 "Max number of threads to use");
277 &use_yv12, &use_i420, &usage, &threads, &profile,
908 } else if (arg_match(&arg, &threads, argi)) {
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1106 // All threads are continuing, just send a "c" packet
1177 // All threads are resuming...
1230 // Add threads continuing with the same signo...
1240 // All threads are resuming...
1262 // Are all threads trying to step with the same signal?
1274 // Add threads stepping with the same signo...
1400 // present in new_thread_list. Remove non-existent threads from internal id table.
1428 // register info before we lookup and threads and populate the expedited
1495 else if (name.compare("threads") == 0)
1499 // A comma separated list of all threads i
1851 ThreadList &threads = GetThreadList(); local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.jobs_3.5.1.R36x_v20100824.jar ... .Deadlock extends java.lang.Object { private Thread[] threads private Thread candidate private org.eclipse.core. ...
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.debug.core_3.6.0.v20100519.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/v8/src/
H A Ddebug-debugger.js2295 // Get the number of threads.
2298 // Get information for all threads.
2299 var threads = [];
2305 threads.push(thread_info);
2311 threads: threads
2481 "threads": proto.threadsRequest_,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Djdi.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/lib/
H A Dpdebuild-ant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/internal/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...

Completed in 2520 milliseconds

123456