HomeSort by relevance Sort by last modified time
    Searched refs:cpu (Results 1 - 25 of 1190) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/ARM/
cpu-test.s 5 // CHECK: .cpu cortex-a8
6 .cpu cortex-a8
9 .cpu arm9
12 // CHECK-ERROR: error: Unknown CPU name
13 .cpu foobar
14 // CHECK: .cpu cortex-m3
15 .cpu cortex-m3
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
attr-cpu-directive.s 1 .cpu cortex-a8
attr-override-mcpu.s 1 .cpu arm7tdmi
attr-abi-hardfp-use-0.s 1 .cpu cortex-m7
attr-abi-hardfp-use-2.s 1 .cpu cortex-m7
attr-abi-hardfp-use-3.s 1 .cpu cortex-m7
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
arch-v6.s 1 .cpu arm1136jfs
arch-v6k.s 1 .cpu mpcore
arch-v6t2.s 1 .cpu arm1156t2f-s
  /platform_testing/scripts/perf-setup/
imx7d-setup.sh 9 # Set CPU cores frequency to 1200 MHz
10 cpubase=/sys/devices/system/cpu
13 cpu=0
15 while [ $((cpu < 2)) -eq 1 ]; do
16 echo 1 > $cpubase/cpu${cpu}/online
17 echo userspace > $cpubase/cpu${cpu}/$gov
18 echo $S > $cpubase/cpu${cpu}/cpufreq/scaling_max_fre
    [all...]
b1c1-setup.sh 24 cpubase=/sys/devices/system/cpu
27 cpu=4
34 while [ $((cpu < $top)) -eq 1 ]; do
35 echo 1 > $cpubase/cpu${cpu}/online
36 echo performance > $cpubase/cpu${cpu}/$gov
37 S=`cat $cpubase/cpu${cpu}/cpufreq/scaling_cur_freq`
38 echo "setting cpu $cpu to max at $S kHz
    [all...]
wahoo-setup.sh 8 cpubase=/sys/devices/system/cpu
11 cpu=4
18 while [ $((cpu < $top)) -eq 1 ]; do
19 echo "setting cpu $cpu to $S kHz"
20 echo 1 > $cpubase/cpu${cpu}/online
21 echo userspace > $cpubase/cpu${cpu}/$gov
22 echo $S > $cpubase/cpu${cpu}/cpufreq/scaling_max_fre
    [all...]
  /external/clang/test/CodeGen/
pr4349.c 10 struct cpu struct
14 extern struct cpu cpu;
19 // CHECK: @svars1 = global [1 x %struct.svar] [%struct.svar { i8* bitcast (%struct.cpu* @cpu to i8*) }]
22 { &((cpu.pc).w[0]) }
24 // CHECK: @svars2 = global [1 x %struct.svar] [%struct.svar { i8* getelementptr (i8, i8* bitcast (%struct.cpu* @cpu to i8*), i64 1) }]
27 { &((cpu.pc).b[0][1]) }
29 // CHECK: @svars3 = global [1 x %struct.svar] [%struct.svar { i8* getelementptr (i8, i8* bitcast (%struct.cpu* @cpu to i8*), i64 2) }
    [all...]
  /bionic/libc/bionic/
sched_getcpu.cpp 35 unsigned cpu; local
36 int rc = __getcpu(&cpu, NULL, NULL);
40 return cpu;
  /external/syslinux/com32/modules/
cpuidtest.c 44 s_cpu cpu; local
47 detect_cpu(&cpu);
48 printf("Vendor = %s\n", cpu.vendor);
49 printf("Model = %s\n", cpu.model);
50 printf("Vendor ID = %d\n", cpu.vendor_id);
51 printf("Family = %d\n", cpu.family);
52 printf("Model ID = %d\n", cpu.model_id);
53 printf("Stepping = %d\n", cpu.stepping);
55 if (cpu.flags.fpu)
57 if (cpu.flags.vme
    [all...]
  /device/google/contexthub/firmware/os/inc/
nanohub_math.h 17 #include <cpu/nanohub_math.h>
  /external/ltp/testcases/open_posix_testsuite/include/
affinity.h 32 static int set_affinity(int cpu)
37 CPU_SET(cpu, &mask);
45 int cpu = -1; local
47 f = fopen("/sys/devices/system/cpu/online", "r");
50 fscanf(f, "%d", &cpu);
53 return cpu;
59 int cpu = -1; local
75 if (sscanf(line, "processor%*[^0123456789]%d", &cpu) == 1)
80 return cpu;
85 int cpu; local
    [all...]
  /external/autotest/client/tests/tsc/src/
sched.h 8 /* Size definition for CPU sets. */
16 # define __CPUELT(cpu) ((cpu) / __NCPUBITS)
17 # define __CPUMASK(cpu) ((__cpu_mask) 1 << ((cpu) % __NCPUBITS))
19 /* Data structure to describe CPU mask. */
25 /* Access functions for CPU masks. */
33 # define __CPU_SET(cpu, cpusetp) \
34 ((cpusetp)->__bits[__CPUELT (cpu)] |= __CPUMASK (cpu))
    [all...]
  /device/google/contexthub/firmware/os/cpu/x86/
x86.mk 22 #cpu runtime
24 os/cpu/$(CPU)/atomicBitset.c \
25 os/cpu/$(CPU)/cpu.c \
26 os/cpu/$(CPU)/atomic.c \
29 DEPS += $(wildcard os/cpu/$(CPU)/inc/cpu/*.h
    [all...]
  /frameworks/base/libs/hwui/tests/scripts/
prep_fugu.sh 3 cpubase=/sys/devices/system/cpu
31 cpu=0
33 while [ $((cpu < 3)) -eq 1 ]; do
34 echo "Setting cpu ${cpu} & $(($cpu + 1)) cluster to $S hz"
36 adb shell "echo 1 > $cpubase/cpu${cpu}/online" &> /dev/null
37 adb shell "echo userspace > $cpubase/cpu${cpu}/$gov
    [all...]
prep_buller.sh 4 cpubase=/sys/devices/system/cpu
18 cpu=0
20 while [ $((cpu < 4)) -eq 1 ]; do
21 echo "Setting cpu $cpu to $S hz"
22 adb shell "echo 1 > $cpubase/cpu${cpu}/online"
23 adb shell "echo userspace > $cpubase/cpu${cpu}/$gov"
24 adb shell "echo $S > $cpubase/cpu${cpu}/cpufreq/scaling_max_freq
    [all...]
prep_marlfish.sh 3 cpubase=/sys/devices/system/cpu
19 cpu=0
22 while [ $((cpu < 3)) -eq 1 ]; do
24 echo "Setting cpu ${cpu} & $(($cpu + 1)) cluster to $S hz"
25 adb shell "echo $S > $cpubase/cpu${cpu}/cpufreq/scaling_max_freq"
26 adb shell "echo $S > $cpubase/cpu${cpu}/cpufreq/scaling_min_freq
    [all...]
  /external/libchrome/base/
cpu_unittest.cc 5 #include "base/cpu.h"
15 // Tests whether we can run extended instructions represented by the CPU
17 // MMX, SSE, etc.) supported by the CPU and sees we can run them without
20 TEST(CPU, RunExtendedInstructions) {
22 // Retrieve the CPU information.
23 base::CPU cpu; local
25 ASSERT_TRUE(cpu.has_mmx());
26 ASSERT_TRUE(cpu.has_sse());
27 ASSERT_TRUE(cpu.has_sse2())
    [all...]
  /toolchain/binutils/binutils-2.27/gold/testsuite/
arm_attr_merge_6a.s 1 .cpu cortex-a9
arm_attr_merge_6b.s 1 .cpu cortex-a9

Completed in 407 milliseconds

1 2 3 4 5 6 7 8 91011>>