Searched defs:cpu (Results 1 - 25 of 93) sorted by relevance

1234

/external/iptables/include/linux/netfilter/
H A Dxt_cpu.h7 __u32 cpu; member in struct:xt_cpu_info
/external/chromium/base/
H A Dcpu_unittest.cc5 #include "base/cpu.h"
17 base::CPU cpu; local
20 ASSERT_TRUE(cpu.has_mmx());
25 if (cpu.has_sse()) {
30 if (cpu.has_sse2()) {
35 if (cpu.has_sse3()) {
40 if (cpu.has_ssse3()) {
45 if (cpu.has_sse41()) {
50 if (cpu.has_sse42()) {
55 ASSERT_TRUE(cpu
[all...]
/external/oprofile/libop/tests/
H A Dcpu_type_tests.c47 static void test(struct cpu_type const * cpu) argument
52 name = op_get_cpu_name(cpu->type);
53 if (cpu->type != CPU_NO_GOOD && strcmp(cpu->name, name)) {
54 printf("for %d expect %s found %s\n", cpu->type, cpu->name,
58 if (cpu->type == CPU_NO_GOOD && strcmp("invalid cpu type", name)) {
59 printf("for %d expect %s found %s\n", cpu->type,
60 "invalid cpu typ
75 struct cpu_type * cpu; local
[all...]
/external/kernel-headers/original/asm-arm/
H A Dsmp.h23 #define raw_smp_processor_id() (current_thread_info()->cpu)
67 extern int boot_secondary(unsigned int cpu, struct task_struct *);
78 extern void platform_secondary_init(unsigned int cpu);
90 extern int mach_cpu_disable(unsigned int cpu);
92 extern void __cpu_die(unsigned int cpu);
95 extern void platform_cpu_die(unsigned int cpu);
96 extern int platform_cpu_kill(unsigned int cpu);
97 extern void platform_cpu_enable(unsigned int cpu);
103 extern void local_timer_setup(unsigned int cpu);
108 extern void local_timer_stop(unsigned int cpu);
117 local_timer_setup(unsigned int cpu) argument
121 local_timer_stop(unsigned int cpu) argument
[all...]
/external/kernel-headers/original/asm-mips/
H A Dsmp.h25 #define raw_smp_processor_id() (current_thread_info()->cpu)
27 /* Map from cpu id to sequential logical cpu number. This will only
30 #define cpu_number_map(cpu) __cpu_number_map[cpu]
32 /* The reverse map from sequential logical cpu number to cpu id. */
34 #define cpu_logical_map(cpu) __cpu_logical_map[cpu]
51 static inline void smp_send_reschedule(int cpu) argument
[all...]
/external/kernel-headers/original/linux/
H A Dnode.h36 extern int register_cpu_under_node(unsigned int cpu, unsigned int nid);
37 extern int unregister_cpu_under_node(unsigned int cpu, unsigned int nid);
47 static inline int register_cpu_under_node(unsigned int cpu, unsigned int nid) argument
51 static inline int unregister_cpu_under_node(unsigned int cpu, unsigned int nid) argument
H A Dcpu.h2 * include/linux/cpu.h - generic cpu definition
5 * basic 'struct cpu' here, which can be embedded in per-arch
8 * Basic handling of the devices is done in drivers/base/cpu.c
11 * CPUs are exported via sysfs in the class/cpu/devices/
14 * Per-cpu interfaces can be implemented using a struct device_interface.
28 struct cpu { struct
34 extern int register_cpu(struct cpu *cpu, int num);
35 extern struct sys_device *get_cpu_sysdev(unsigned cpu);
89 cpu_is_offline(int cpu) argument
[all...]
H A Dkernel_stat.h35 #define kstat_cpu(cpu) per_cpu(kstat, cpu)
46 int cpu, sum = 0; local
48 for_each_possible_cpu(cpu)
49 sum += kstat_cpu(cpu).irqs[irq];
H A Dsmp.h33 extern void smp_send_reschedule(int cpu);
72 * Mark the boot cpu "online" so that it can call console drivers in
73 * printk() and can access its per-cpu storage.
96 static inline void smp_send_reschedule(int cpu) { } argument
H A Dtaskstats_kern.h76 int group_dead, unsigned int cpu)
74 taskstats_exit_send(struct task_struct *tsk, struct taskstats *tidstats, int group_dead, unsigned int cpu) argument
/external/clang/test/CodeGen/
H A Dpr4349.c10 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* 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* bitcast (%struct.cpu*
[all...]
/external/oprofile/libpp/
H A Dfilename_spec.h80 generic_spec<int> cpu; member in class:filename_spec
H A Dparse_filename.h33 std::string cpu; member in struct:parsed_filename
H A Dprofile_spec.h134 comma_list<int> cpu; member in class:profile_spec
/external/blktrace/
H A Dverify_blkparse.c13 int major, minor, cpu, nr, alias; local
36 if (sscanf(p, "%3d,%3d %2d %8d %lf", &major, &minor, &cpu, &seq, &this_time) != 5)
47 if (cpu >= MAX_CPUS) {
48 fprintf(stderr, "cpu%d too large\n", cpu);
52 if (last_seq[cpu] == seq) {
57 last_seq[cpu] = seq;
/external/oprofile/libop/
H A Dop_cpu_type.c22 op_cpu cpu; member in struct:cpu_descr
143 fprintf(stderr, "Could not read cpu type.\n");
165 cpu_type = cpu_descrs[i].cpu;
184 return "invalid cpu type";
193 return "invalid cpu type";
H A Dop_mangle.h48 int cpu; member in struct:mangle_values
/external/valgrind/main/tests/
H A Dx86_amd64_features.c45 static Bool go(char* cpu) argument
50 if ( strcmp( cpu, "x86-fpu" ) == 0 ) {
53 } else if ( strcmp( cpu, "x86-cmov" ) == 0 ) {
56 } else if ( strcmp( cpu, "x86-mmx" ) == 0 ) {
59 } else if ( strcmp( cpu, "x86-mmxext" ) == 0 ) {
62 } else if ( strcmp( cpu, "x86-sse" ) == 0 ) {
65 } else if ( strcmp( cpu, "x86-sse2" ) == 0 ) {
68 } else if ( strcmp( cpu, "x86-sse3" ) == 0 ) {
71 } else if ( strcmp( cpu, "x86-ssse3" ) == 0 ) {
74 } else if ( strcmp( cpu, "x8
123 go(char* cpu) argument
[all...]
/external/kernel-headers/original/asm-x86/
H A Dsmp_32.h46 #define cpu_physical_id(cpu) per_cpu(x86_cpu_to_apicid, cpu)
48 extern void set_cpu_sibling_map(int cpu);
53 extern void remove_siblinginfo(int cpu);
60 int (*cpu_up)(unsigned cpu);
64 void (*smp_send_reschedule)(int cpu);
80 static inline int __cpu_up(unsigned int cpu) argument
82 return smp_ops.cpu_up(cpu);
93 static inline void smp_send_reschedule(int cpu) argument
95 smp_ops.smp_send_reschedule(cpu);
[all...]
/external/linux-tools-perf/util/
H A Dcpumap.c48 int n, cpu, prev; local
51 onlnf = fopen("/sys/devices/system/cpu/online", "r");
58 n = fscanf(onlnf, "%u%c", &cpu, &sep);
62 int new_max = nr_cpus + cpu - prev - 1;
72 while (++prev < cpu)
83 tmp_cpus[nr_cpus++] = cpu;
85 prev = cpu;
/external/oprofile/daemon/
H A Dopd_sfile.h49 unsigned int cpu; member in struct:sfile
/external/oprofile/module/x86/
H A Dop_model_athlon.c85 static void athlon_check_ctrs(uint const cpu, argument
95 op_do_profile(cpu, instruction_pointer(regs), IRQ_ENABLED(regs), i);
96 CTR_WRITE(oprof_data[cpu].ctr_count[i], msrs, i);
H A Dop_model_ppro.c81 static void ppro_check_ctrs(uint const cpu, argument
90 op_do_profile(cpu, instruction_pointer(regs), IRQ_ENABLED(regs), i);
91 CTR_WRITE(oprof_data[cpu].ctr_count[i], msrs, i);
H A Dop_rtc.c32 uint cpu = op_cpu_id(); local
47 op_do_profile(cpu, instruction_pointer(regs), IRQ_ENABLED(regs), 0);
127 static void rtc_start_cpu(uint cpu) argument
132 static void rtc_stop_cpu(uint cpu) argument
/external/chromium/base/debug/
H A Dtrace_event.cc157 std::string cpu = StringPrintf("%.0f", process_metrics_->GetCPUUsage()); local
158 TRACE_EVENT_INSTANT("heartbeat.cpu", 0, cpu);

Completed in 374 milliseconds

1234