/third_party/ltp/testcases/kernel/fs/read_all/ |
H A D | read_all.c | 87 static long worker_count; variable 335 memset(workers, 0, worker_count * sizeof(*workers)); in spawn_workers() 337 for (i = 0; i < worker_count; i++) { in spawn_workers() 478 for (i = 0; i < worker_count; i++) { in stop_workers() 491 for (i = 0; i < worker_count; i++) { in destroy_workers() 507 if (j >= worker_count) in sched_work() 544 if (tst_parse_long(str_worker_count, &worker_count, 1, LONG_MAX)) { in setup() 553 if (!worker_count) in setup() 554 worker_count = MIN(MAX(tst_ncpus() - 1, 1L), max_workers); in setup() 555 workers = SAFE_MALLOC(worker_count * sizeo in setup() [all...] |
/third_party/node/deps/v8/src/libplatform/ |
H A D | default-job.cc | 194 size_t DefaultJobState::CappedMaxConcurrency(size_t worker_count) const { in CappedMaxConcurrency() 195 return std::min(job_task_->GetMaxConcurrency(worker_count), in CappedMaxConcurrency()
|
H A D | default-job.h | 80 size_t CappedMaxConcurrency(size_t worker_count) const;
|
/third_party/node/deps/v8/src/heap/ |
H A D | concurrent-marking.cc | 430 size_t GetMaxConcurrency(size_t worker_count) const override { 431 return concurrent_marking_->GetMaxConcurrency(worker_count); 580 size_t ConcurrentMarking::GetMaxConcurrency(size_t worker_count) { in GetMaxConcurrency() argument 586 worker_count + in GetMaxConcurrency()
|
H A D | concurrent-marking.h | 111 size_t GetMaxConcurrency(size_t worker_count);
|
H A D | memory-allocator.cc | 85 size_t GetMaxConcurrency(size_t worker_count) const override { 89 worker_count +
|
H A D | scavenger.h | 278 size_t GetMaxConcurrency(size_t worker_count) const override;
|
H A D | scavenger.cc | 220 size_t worker_count) const { in GetMaxConcurrency() 221 // We need to account for local segments held by worker_count in addition to in GetMaxConcurrency() 227 worker_count + copied_list_->Size() + promotion_list_->Size())); in GetMaxConcurrency()
|
H A D | sweeper.cc | 91 size_t GetMaxConcurrency(size_t worker_count) const override { 95 worker_count +
|
H A D | mark-compact.cc | 3835 size_t GetMaxConcurrency(size_t worker_count) const override { 4231 size_t GetMaxConcurrency(size_t worker_count) const override { 5671 size_t GetMaxConcurrency(size_t worker_count) const override {
|
/third_party/node/deps/v8/src/d8/ |
H A D | d8-platforms.cc | 300 size_t GetMaxConcurrency(size_t worker_count) const override { 301 return job_task_->GetMaxConcurrency(worker_count);
|
/third_party/skia/third_party/externals/angle2/src/tests/ |
H A D | capture_replay_tests.py | 822 worker_count = min(multiprocessing.cpu_count() - 1, args.max_jobs) 825 CreateTraceFolders(worker_count) 904 worker_count = min(worker_count, test_batch_num) 906 for worker_id in range(worker_count): 1031 DeleteTraceFolders(worker_count)
|
/third_party/python/Lib/test/ |
H A D | test_concurrent_futures.py | 118 worker_count = 5 variable in ExecutorMixin 127 max_workers=self.worker_count, 132 max_workers=self.worker_count, 215 worker_count = 2 variable in InitializerMixin 226 for _ in range(self.worker_count)] 233 worker_count = 2 variable in FailingInitializerMixin 356 assert self.worker_count <= 5, "test needs few workers" 530 expected_num_processes = self.worker_count 875 self.executor.map(str, [2] * (self.worker_count + 1))
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-platform.h | 267 * including items that are currently in progress. |worker_count| is the 272 virtual size_t GetMaxConcurrency(size_t worker_count) const = 0;
|
/third_party/node/deps/v8/include/ |
H A D | v8-platform.h | 264 virtual size_t GetMaxConcurrency(size_t worker_count) const = 0;
|
/third_party/node/deps/v8/src/baseline/ |
H A D | baseline-batch-compiler.cc | 171 size_t GetMaxConcurrency(size_t worker_count) const override {
|
/third_party/node/deps/v8/src/compiler-dispatcher/ |
H A D | lazy-compile-dispatcher.cc | 48 size_t GetMaxConcurrency(size_t worker_count) const final {
|
/third_party/node/deps/v8/src/wasm/ |
H A D | module-instantiate.cc | 60 size_t GetMaxConcurrency(size_t worker_count) const override { 63 // Add {worker_count} to the queue size because workers might still be 65 return std::min(flag_limit, worker_count + queue_->size());
|
H A D | module-compiler.cc | 1883 size_t GetMaxConcurrency(size_t worker_count) const override { 1890 worker_count + 3870 size_t GetMaxConcurrency(size_t /* worker_count */) const override { 3873 // working on, so we can safely ignore the {worker_count} and just return
|