Home
last modified time | relevance | path

Searched refs:m_numCores (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/src/system_wrappers/source/
Dcpu_linux.cc27 m_numCores(0) { in CpuLinux()
30 m_numCores = result; in CpuLinux()
31 m_oldBusyTimeMulti = new long long[m_numCores]; in CpuLinux()
32 memset(m_oldBusyTimeMulti, 0, sizeof(long long) * m_numCores); in CpuLinux()
33 m_oldIdleTimeMulti = new long long[m_numCores]; in CpuLinux()
34 memset(m_oldIdleTimeMulti, 0, sizeof(long long) * m_numCores); in CpuLinux()
35 m_idleArray = new long long[m_numCores]; in CpuLinux()
36 memset(m_idleArray, 0, sizeof(long long) * m_numCores); in CpuLinux()
37 m_busyArray = new long long[m_numCores]; in CpuLinux()
38 memset(m_busyArray, 0, sizeof(long long) * m_numCores); in CpuLinux()
[all …]
Dcpu_linux.h47 WebRtc_UWord32 m_numCores; variable