Searched refs:NumberOfWorkerThreads (Results 1 - 10 of 10) sorted by relevance
/third_party/node/deps/v8/src/d8/ |
H A D | d8-platforms.cc | 48 int NumberOfWorkerThreads() override { 52 return platform_->NumberOfWorkerThreads(); 81 NumberOfWorkerThreads()); 170 int NumberOfWorkerThreads() override { 171 return platform_->NumberOfWorkerThreads();
|
/third_party/node/src/ |
H A D | node_platform.h | 127 int NumberOfWorkerThreads() const; 149 int NumberOfWorkerThreads() override;
|
H A D | node_platform.cc | 225 int WorkerThreadsTaskRunner::NumberOfWorkerThreads() const { in NumberOfWorkerThreads() function in node::WorkerThreadsTaskRunner 413 int NodePlatform::NumberOfWorkerThreads() { in NumberOfWorkerThreads() function in node::NodePlatform 414 return worker_thread_task_runner_->NumberOfWorkerThreads(); in NumberOfWorkerThreads() 534 this, priority, std::move(job_task), NumberOfWorkerThreads()); in PostJob()
|
/third_party/node/deps/v8/src/libplatform/ |
H A D | default-platform.h | 57 int NumberOfWorkerThreads() override;
|
H A D | default-platform.cc | 232 size_t num_worker_threads = NumberOfWorkerThreads(); in PostJob() 259 int DefaultPlatform::NumberOfWorkerThreads() { return thread_pool_size_; } in NumberOfWorkerThreads() function in v8::platform::DefaultPlatform
|
H A D | default-job.cc | 103 num_worker_threads_ = platform_->NumberOfWorkerThreads() + 1; in Join()
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-platform.h | 1002 virtual int NumberOfWorkerThreads() = 0; 1135 * this, priority, std::move(job_task), NumberOfWorkerThreads());
|
/third_party/node/deps/v8/include/ |
H A D | v8-platform.h | 936 virtual int NumberOfWorkerThreads() = 0; 1031 * this, priority, std::move(job_task), NumberOfWorkerThreads());
|
/third_party/node/deps/v8/src/heap/ |
H A D | scavenger.cc | 535 static int num_cores = V8::GetCurrentPlatform()->NumberOfWorkerThreads() + 1; in NumberOfScavengeTasks()
|
H A D | mark-compact.cc | 467 static int num_cores = V8::GetCurrentPlatform()->NumberOfWorkerThreads() + 1; in NumberOfAvailableCores() 470 DCHECK_EQ(num_cores, V8::GetCurrentPlatform()->NumberOfWorkerThreads() + 1); in NumberOfAvailableCores() 3911 V8::GetCurrentPlatform()->NumberOfWorkerThreads() + 1, live_bytes, in TraceEvacuation()
|
Completed in 17 milliseconds