HomeSort by relevance Sort by last modified time
    Searched full:ncpu (Results 1 - 25 of 48) sorted by null

1 2

  /external/chromium/base/
sys_info_openbsd.cc 16 int ncpu; local
17 size_t size = sizeof(ncpu);
18 if (sysctl(mib, 2, &ncpu, &size, NULL, 0) == -1) {
22 return ncpu;
  /external/chromium_org/base/
sys_info_openbsd.cc 32 int ncpu; local
33 size_t size = sizeof(ncpu);
34 if (sysctl(mib, arraysize(mib), &ncpu, &size, NULL, 0) < 0) {
38 return ncpu;
  /external/webrtc/src/system_wrappers/source/
cpu_info.cc 50 int ncpu;
51 size_t size = sizeof(ncpu);
52 if(0 == sysctl(name, 2, &ncpu, &size, NULL, 0))
54 _numberOfCores = static_cast<WebRtc_UWord32>(ncpu);
  /external/qemu/
android-rebuild.sh 14 HOST_NUM_CPUS=`sysctl -n hw.ncpu`
  /external/netperf/
netcpu_kstat.c 75 static int ncpu = 0; local
145 ncpu = 0;
167 fprintf(where,"cpu_ks[%d] getting %p\n",ncpu,ks);
171 cpu_ks[ncpu] = ks;
172 ncpu++;
173 if (ncpu > lib_num_loc_cpus)
178 ncpu,lib_num_loc_cpus);
183 /* note that ncpu could be less than ncpus, but that's okay */
  /external/qemu/hw/
arm_gic.c 43 unsigned pending:NCPU;
44 unsigned active:NCPU;
45 unsigned level:NCPU;
50 #define ALL_CPU_MASK ((1 << NCPU) - 1)
81 qemu_irq parent_irq[NCPU];
83 int cpu_enabled[NCPU];
89 int priority1[32][NCPU];
91 int last_active[GIC_NIRQ][NCPU];
93 int priority_mask[NCPU];
94 int running_irq[NCPU];
    [all...]
armv7m_nvic.c 20 #define NCPU 1
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_cpu_detect.c 239 int mib[2], ncpu; local
245 len = sizeof (ncpu);
246 sysctl(mib, 2, &ncpu, &len, NULL, 0);
247 util_cpu_caps.nr_cpus = ncpu;
  /external/mesa3d/src/gallium/auxiliary/util/
u_cpu_detect.c 239 int mib[2], ncpu; local
245 len = sizeof (ncpu);
246 sysctl(mib, 2, &ncpu, &len, NULL, 0);
247 util_cpu_caps.nr_cpus = ncpu;
  /external/qemu/distrib/sdl-1.2.15/build-scripts/
fatbuild.sh 6 NCPU=`sysctl -n hw.ncpu`
8 NJOB=$NCPU
  /libcore/luni/src/main/java/java/util/concurrent/
Exchanger.java 248 private static final int NCPU = Runtime.getRuntime().availableProcessors();
255 static final int FULL = (NCPU >= (MMASK << 1)) ? MMASK : NCPU >>> 1;
260 * due to randomization. Note: Spinning is disabled when NCPU==1.
444 if (NCPU > 1 && bound == 0 &&
461 int spins = (NCPU > 1) ? SPINS : 1;
Phaser.java     [all...]
  /external/chromium_org/v8/tools/gcmole/
bootstrap.sh 93 NUM_JOBS="$(sysctl -n hw.ncpu)"
  /external/llvm/utils/lit/lit/
Util.py 15 return int(capture(['sysctl', '-n', 'hw.ncpu']))
  /external/qemu/distrib/
build-kernel.sh 20 BUILD_NUM_CPUS=$(sysctl -n hw.ncpu)
  /ndk/build/tools/
dev-rebuild-ndk.sh 111 HOST_NUM_CPUS=`/usr/sbin/sysctl -n hw.ncpu`
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 119 comm = '/sbin/sysctl -n hw.ncpu'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 119 comm = '/sbin/sysctl -n hw.ncpu'
  /external/elfutils/libebl/
eblopenbackend.c 118 { "ncpu", "elf_ncpu", "ncpu", 4, EM_NCPU, 0, 0 },
  /external/chromium_org/third_party/libjingle/source/talk/base/
systeminfo.cc 253 int error = sysctlbyname("hw.ncpu", &sysctl_value, &length, NULL, 0);
  /external/chromium_org/tools/clang/scripts/
update.sh 253 NUM_JOBS="$(sysctl -n hw.ncpu)"
  /external/llvm/utils/buildit/
build_llvm 288 SYSCTL=`sysctl -n hw.ncpu`
  /sdk/eclipse/scripts/
create_all_symlinks.sh 330 [[ $(uname) == "Darwin" ]] && J=$(sysctl hw.ncpu | cut -d : -f 2 | tr -d ' ')
  /external/chromium_org/third_party/re2/benchlog/
benchlog.mini 1 hw.ncpu: 2
39 hw.ncpu = 2
    [all...]
  /external/regex-re2/benchlog/
benchlog.mini 1 hw.ncpu: 2
39 hw.ncpu = 2
    [all...]

Completed in 773 milliseconds

1 2