Searched refs:running (Results 1 - 25 of 346) sorted by relevance

1234567891011>>

/external/ltp/tools/pounder21/test_scripts/
H A DsimpleD2 echo simpleD running....
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
H A DHost.inc21 // FIXME: Adapt to running version.
/external/eigen/unsupported/test/
H A Dcxx11_non_blocking_thread_pool.cpp33 std::atomic<int> running(0);
36 // Schedule kThreads tasks and ensure that they all are running.
42 running++;
48 while (running != kThreads) {
50 running = 0;
53 // ensure that they are running.
56 running++;
59 // When all tasks are running, half of tasks exit, quarter of tasks
60 // continue running and quarter of tasks schedule another 2 tasks each.
63 // are running
[all...]
/external/python/cpython3/Lib/turtledemo/
H A Dround_dance.py28 global running
29 running = False
32 global running
66 running = True
70 while running:
/external/python/cpython2/Lib/test/
H A Dtest_dummy_threading.py11 global running
22 running += 1
24 print running, 'tasks are running'
30 running -= 1
32 print self.name, 'is finished.', running, 'tasks are running'
42 global running
43 running = 0
/external/python/cpython3/Lib/test/
H A Dtest_dummy_threading.py11 global running
22 running += 1
24 print(running, 'tasks are running')
30 running -= 1
32 print(self.name, 'is finished.', running, 'tasks are running')
42 global running
43 running = 0
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/util/
H A DLooperExecutor.java28 private boolean running = false; field in class:LooperExecutor
44 if (running) {
47 running = true;
57 running = false;
64 if (!running) {
67 running = false;
84 if (!running) {
/external/libopus/doc/
H A Dbuild_oggdraft.sh50 echo running xml2rfc
/external/linux-kselftest/tools/testing/selftests/powerpc/math/
H A Dfpu_preempt.c42 int running; variable
44 extern void preempt_fpu(double *darray, int *threads_starting, int *running);
54 preempt_fpu(darray, &threads_starting, &running);
68 running = true;
89 * r5 will have loaded the value of running.
91 running = 0;
H A Dvmx_preempt.c42 int running; variable
44 extern void preempt_vmx(vector int *varray, int *threads_starting, int *running);
55 preempt_vmx(varray, &threads_starting, &running);
68 running = true;
89 * r5 will have loaded the value of running.
91 running = 0;
/external/python/cpython2/PC/os2emx/
H A Dpythonpm.c33 int running; member in struct:__anon19607
79 args.running = 0;
91 if (args.running > 0)
113 args->running = 1;
118 args->running = 0;
/external/curl/tests/libtest/
H A Dlib502.c39 int running; local
61 multi_perform(m, &running);
65 if(!running)
H A Dlib504.c43 int running; local
51 /* The point here is that there must not be anything running on the given
71 multi_perform(m, &running);
75 if(!running) {
79 fprintf(stderr, "Expected: not running\n");
86 fprintf(stderr, "running == %d\n", running);
H A Dlib573.c40 int running = 1; local
68 while(running) {
76 multi_perform(m, &running);
80 if(!running)
H A Dlib503.c43 int running; local
71 multi_perform(m, &running);
75 if(!running)
H A Dlib530.c36 int running; local
82 multi_perform(m, &running);
86 if(!running) {
H A Dlib533.c38 int running; local
66 multi_perform(m, &running);
70 if(!running) {
H A Dlib564.c36 int running; local
64 multi_perform(m, &running);
68 if(!running)
/external/syslinux/gpxe/src/include/gpxe/
H A Dretry.h24 /** Timer is currently running */
25 unsigned int running; member in struct:retry_timer
64 * This starts the timer running with a zero timeout value.
71 * Test to see if timer is currently running
74 * @ret running Non-zero if timer is running
78 return ( timer->running );
/external/valgrind/none/tests/x86/
H A Dyield.c14 static volatile int alive, running; variable
24 running++;
39 running++;
66 while(running < 2)
/external/python/cpython3/Lib/test/libregrtest/
H A Druntest_mp.py22 # Display the running tests if nothing happened last N seconds
167 running = []
174 running.append('%s (%.0f sec)' % (current_test, dt))
175 return running
188 running = get_running(workers)
189 if running and not regrtest.ns.pgo:
190 print('running: %s' % ', '.join(running))
206 running = get_running(workers)
207 if running an
[all...]
/external/syslinux/gpxe/src/net/
H A Dretry.c47 /** List of running timers */
55 * This starts the timer running with the current timeout value. If
60 if ( ! timer->running )
63 timer->running = 1;
105 if ( ! timer->running )
110 timer->running = 0;
152 assert ( timer->running );
154 timer->running = 0;
/external/webrtc/webrtc/test/mac/
H A Drun_test.mm26 - (BOOL)running;
45 - (BOOL)running {
66 while ([testRunner running] &&
/external/python/cpython2/Doc/includes/
H A Dmp_synchronize.py16 def value_func(running, mutex):
22 running.value -= 1
27 running = multiprocessing.Value('i', TASKS)
31 p = multiprocessing.Process(target=value_func, args=(running, mutex))
34 while running.value > 0:
37 print running.value,
42 print 'No more running processes'
110 def semaphore_func(sema, mutex, running):
114 running.value += 1
115 print running
[all...]
/external/ltp/pan/
H A Dltp-pan.c105 static void pids_running(struct tag_pgrp *running, int keep_active);
106 static int check_pids(struct tag_pgrp *running, int *num_active,
111 static void propagate_signal(struct tag_pgrp *running, int keep_active,
119 static void copy_buffered_output(struct tag_pgrp *running);
120 static void write_test_start(struct tag_pgrp *running, int no_kmsg);
121 static void write_test_end(struct tag_pgrp *running, const char *init_status,
143 #define Drunning 0x000010 /* current pids running */
159 struct tag_pgrp *running; local
294 case 'x': /* number of tags to keep running */
375 running
673 propagate_signal(struct tag_pgrp *running, int keep_active, struct orphan_pgrp *orphans) argument
709 check_pids(struct tag_pgrp *running, int *num_active, int keep_active, FILE *logfile, FILE *failcmdfile, FILE *tconfcmdfile, struct orphan_pgrp *orphans, int fmt_print, int *failcnt, int *tconfcnt, int quiet_mode, int no_kmsg) argument
1343 copy_buffered_output(struct tag_pgrp *running) argument
1375 write_test_start(struct tag_pgrp *running, int no_kmsg) argument
1396 write_test_end(struct tag_pgrp *running, const char *init_status, time_t exit_time, char *term_type, int stat_loc, int term_id, struct tms *tms1, struct tms *tms2) argument
1416 pids_running(struct tag_pgrp *running, int keep_active) argument
[all...]

Completed in 964 milliseconds

1234567891011>>