Home
last modified time | relevance | path

Searched refs:fCPUCount (Results 1 – 6 of 6) sorted by relevance

/haiku/src/system/kernel/scheduler/
H A Dscheduler_cpu.h134 { return fCPUCount; } in CPUCount()
187 int32 fCPUCount; variable
354 return fThreadCount + fCPUCount - fIdleCPUCount; in ThreadCount()
403 ASSERT(fCPUCount > 0); in GetLoad()
404 return std::min(fLoad / fCPUCount, kMaxLoad); in GetLoad()
518 ASSERT(fIdleCPUCount < fCPUCount); in CPUGoesIdle()
519 if (++fIdleCPUCount == fCPUCount) in CPUGoesIdle()
531 if (fIdleCPUCount-- == fCPUCount) in CPUWakesUp()
H A Dscheduler_cpu.cpp405 fCPUCount(0), in CoreEntry()
468 ASSERT(fCPUCount >= 0); in AddCPU()
472 if (fCPUCount++ == 0) { in AddCPU()
490 ASSERT(fCPUCount > 0); in RemoveCPU()
495 if (--fCPUCount == 0) { in RemoveCPU()
539 if (fCPUCount <= 0) in _UpdateLoad()
/haiku/src/apps/showimage/
H A DFilter.h144 int32 CPUCount() const { return fCPUCount; } in CPUCount()
148 int32 fCPUCount; // the number of active CPUs variable
H A DFilter.cpp95 fCPUCount = NumberOfActiveCPUs(); in Filter()
/haiku/src/apps/debuganalyzer/model/
H A DModel.cpp630 fCPUCount(1), in Model()
749 fCPUCount = count; in SetCPUCount()
753 for (int32 i = 0; i < fCPUCount; i++) { in SetCPUCount()
H A DModel.h156 int32 fCPUCount; variable
713 return fCPUCount; in CountCPUs()