/third_party/glslang/glslang/MachineIndependent/ |
H A D | localintermediate.h | 178 processes.push_back(process); 182 processes.push_back(process); 186 processes.back().append(" "); 188 processes.back().append(argString); 192 processes.back().append(" "); 193 processes.back().append(arg); 197 processes.back().append(" "); 198 processes.back().append(arg); 208 const std::vector<std::string>& getProcesses() const { return processes; } 211 std::vector<std::string> processes; [all...] |
/third_party/libuv/test/ |
H A D | runner.c | 150 process_info_t processes[1024]; in run_test() local 190 &processes[process_count], in run_test() 214 &processes[process_count], in run_test() 223 main_proc = &processes[process_count]; in run_test() 277 /* Reap running processes except the main process, it's already dead. */ in run_test() 279 process_terminate(&processes[i]); in run_test() 283 process_wait(processes, process_count - 1, -1) < 0) { in run_test() 287 log_tap_result(test_count, test, status, &processes[i]); in run_test() 289 /* Show error and output from processes if the test failed. */ in run_test() 297 switch (process_output_size(&processes[ in run_test() [all...] |
/third_party/ninja/src/ |
H A D | subprocess_test.cc | 180 Subprocess* processes[3]; in TEST_F() local 193 processes[i] = subprocs_.Add(kCommands[i]); in TEST_F() 194 ASSERT_NE((Subprocess *) 0, processes[i]); in TEST_F() 199 ASSERT_FALSE(processes[i]->Done()); in TEST_F() 200 ASSERT_EQ("", processes[i]->GetOutput()); in TEST_F() 203 while (!processes[0]->Done() || !processes[1]->Done() || in TEST_F() 204 !processes[2]->Done()) { in TEST_F() 213 ASSERT_EQ(ExitSuccess, processes[i]->Finish()); in TEST_F() 214 ASSERT_NE("", processes[ in TEST_F() [all...] |
/third_party/node/test/pummel/ |
H A D | test-fs-watch-system-limit.js | 30 const processes = []; 46 processes.push(proc); 50 if (!finished && processes.length < 200) 66 console.log(`done after ${processes.length} processes, cleaning up`); 68 processes.forEach((proc) => proc.kill());
|
/third_party/ltp/testcases/kernel/fs/mongo/ |
H A D | mongo.pl | 15 # 5 - number of processes, you can set any number here 18 # mount it and run given number of processes during each phase : 41 print " <mount_point> <log> <processes>\n"; 48 print "<processes> - the number of benchmark processes\n"; 232 my ($phase_num, $phase_name, $cmd, $dir1, $dir2, $flag, $processes) = @_ ; 235 print "$phase_num.$phase_name files of median size $median_file_size bytes ($p processes)...\n"; 236 print LOG "********* Phase $phase_num: $phase_name files of median size $median_file_size bytes ($p processes) *********\n"; 245 $pp=$processes; 278 if ($processes > [all...] |
/third_party/node/deps/v8/tools/testrunner/local/ |
H A D | pool.py | 107 """Distributes tasks to a number of worker processes. 119 num_workers: Number of worker processes to run in parallel. 126 self.processes = [] 149 """Maps function "fn" to items in generator "gen" on the worker processes 181 self.processes.append(p) 245 for p in self.processes: 268 # Make sure all processes stop 269 for _ in self.processes: 278 for p in self.processes:
|
/third_party/node/test/async-hooks/ |
H A D | test-pipewrap.js | 27 const processes = hooks.activitiesOfTypes('PROCESSWRAP'); 29 assert.strictEqual(processes.length, 1); 32 const processwrap = processes[0];
|
/third_party/python/Lib/multiprocessing/ |
H A D | pool.py | 77 # Code run by worker processes 183 def __init__(self, processes=None, initializer=None, initargs=(), 202 if processes is None: 203 processes = os.cpu_count() or 1 204 if processes < 1: 205 raise ValueError("Number of processes must be at least 1") 213 self._processes = processes 291 """Cleanup after any worker processes which have exited due to reaching 315 def _repopulate_pool_static(ctx, Process, processes, pool, inqueue, 318 """Bring the number of pool processes u [all...] |
H A D | context.py | 115 def Pool(self, processes=None, initializer=None, initargs=(), 119 return Pool(processes, initializer, initargs, maxtasksperchild, 166 between processes 174 child processes instead of sys.executable when using the 'spawn' 206 shared with other processes.''' 374 '%s objects should only be shared between processes'
|
/third_party/libinput/tools/ |
H A D | libinput-replay.py | 277 processes = [] 280 processes.append(p) 282 for p in processes: 285 for p in processes: 288 del processes
|
/third_party/python/Lib/concurrent/futures/ |
H A D | process.py | 103 # Controls how many more calls than processes will be queued in the call queue. 104 # A smaller number will mean that processes spend more time idle waiting for 110 # On Windows, WaitForMultipleObjects is used to wait for processes to finish. 275 """Manages the communication between this process and the worker processes. 311 self.processes = executor._processes 349 p = self.processes.pop(result_item.exit_pid) 403 # that all worker processes are still running, or for a wake up 411 worker_sentinels = [p.sentinel for p in list(self.processes.values())] 440 p = self.processes.pop(result_item) 442 if not self.processes [all...] |
/third_party/node/deps/v8/tools/testrunner/testproc/ |
H A D | util.py | 19 """Returns list of tuples (pid, command) of processes running in the same out 27 processes = [ 32 return [p for p in processes if p[1] != OUT_DIR] 38 """Kill stray processes on the system that started in the same out directory.
|
/third_party/python/Lib/multiprocessing/dummy/ |
H A D | __init__.py | 122 def Pool(processes=None, initializer=None, initargs=()): 124 return ThreadPool(processes, initializer, initargs)
|
/third_party/vk-gl-cts/android/package/src/com/drawelements/deqp/testercore/ |
H A D | RemoteAPI.java | 144 List<ActivityManager.RunningAppProcessInfo> processes = activityMgr.getRunningAppProcesses(); in findProcess() 146 for (ActivityManager.RunningAppProcessInfo info : processes) { in findProcess()
|
/third_party/skia/tools/skqp/ |
H A D | cut_release.py | 45 pool = multiprocessing.Pool(processes=20) 120 pool = multiprocessing.Pool(processes=20)
|
H A D | download_model.py | 61 pool = multiprocessing.Pool(processes=multiprocessing.cpu_count() * 2)
|
/third_party/python/Lib/lib2to3/ |
H A D | main.py | 149 parser.add_option("-j", "--processes", action="store", default=1, 264 options.processes) 266 assert options.processes > 1
|
H A D | refactor.py | 697 raise RuntimeError("already doing multiple processes") 700 processes = [multiprocessing.Process(target=self._child) 703 for p in processes: 711 for p in processes:
|
/third_party/ltp/ |
H A D | runltp | 119 [NUM_PROCS = no. of processes creating the CPU Load by spinning over sqrt() 126 [NUM_PROCS = no. of processes creating Storage Load by spinning over write()] 136 [NUM_PROCS = no. of processes creating IO Bus Load by spinning over sync()] 142 [NUM_PROCS = no. of processes creating main Memory Load by spinning over malloc()] 235 # hence, prevent from creating infinite processes 333 # hence, prevent from creating infinite processes
|
/third_party/python/Lib/test/ |
H A D | test_concurrent_futures.py | 300 # Test the atexit hook for shutdown of worker threads and processes 322 # Test the atexit hook for shutdown of worker threads and processes 540 processes = self.executor._processes 543 for p in processes.values(): 549 processes = e._processes 553 for p in processes.values(): 561 processes = executor._processes 570 for p in processes.values(): 579 # Ensure that the executor cleans up the processes when calling 584 processes [all...] |
H A D | _test_eintr.py | 89 processes = [self.new_sleep_process() for _ in range(num)] 93 for proc in processes: 381 # is vulnerable to a race condition between the child and the parent processes.
|
/third_party/ltp/testcases/kernel/controllers/cpuacct/ |
H A D | cpuacct.sh | 34 nprocess - number of processes to attach to each subgroup 57 # On x86_64, each 100 of processes were using ~16 MB of memory, 140 tst_res TINFO "Creating $max subgroups each with $nbprocess processes"
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/tools/ |
H A D | workbench.py | 106 pool = Pool(processes=PROCESSES)
|
/third_party/vixl/tools/ |
H A D | generate_tests.py | 790 # will use as many processes as defined by `-jN`, which defaults to 1. 791 with multiprocessing.Pool(processes=args.jobs) as pool:
|
/third_party/node/deps/v8/tools/release/ |
H A D | list_deprecated.py | 38 with Pool(processes=24) as pool:
|