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

1234

/external/iptables/include/linux/netfilter/
H A Dxt_cpu.h7 __u32 cpu; member in struct:xt_cpu_info
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_cpu.h7 __u32 cpu; member in struct:xt_cpu_info
/external/v8/src/base/
H A Dcpu-unittest.cc5 #include "src/base/cpu.h"
12 CPU cpu; local
15 EXPECT_TRUE(!cpu.has_sse() || cpu.has_mmx());
16 EXPECT_TRUE(!cpu.has_sse2() || cpu.has_sse());
17 EXPECT_TRUE(!cpu.has_sse3() || cpu.has_sse2());
18 EXPECT_TRUE(!cpu.has_ssse3() || cpu
28 CPU cpu; local
[all...]
/external/google-breakpad/src/google_breakpad/processor/
H A Dsystem_info.h46 SystemInfo() : os(), os_short(), os_version(), cpu(), cpu_info(),
54 cpu.clear();
83 string cpu; member in struct:google_breakpad::SystemInfo
/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, 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*
[all...]
/external/fio/
H A Dgettime-thread.c41 unsigned int cpu; member in struct:gtod_cpu_data
98 void fio_gtod_set_cpu(unsigned int cpu) argument
101 fio_cpu_set(&fio_gtod_cpumask, cpu);
H A Didletime.c8 * Get time to complete an unit work on a particular cpu.
61 fio_cpu_set(&ipt->cpu_mask, ipt->cpu);
221 * result won't be accurate if any cpu is not used.
226 ipt->cpu = i;
372 * return system idle percentage when cpu is -1;
373 * return one cpu idle percentage otherwise.
375 static double fio_idle_prof_cpu_stat(int cpu) argument
384 if ((cpu >= nr_cpus) || (cpu < -1)) {
385 log_err("fio: idle profiling invalid cpu inde
[all...]
H A Didletime.h26 int cpu; member in struct:idle_prof_thread
/external/linux-tools-perf/src/tools/perf/tests/
H A Dopen-syscall-all-cpus.c9 int err = -1, fd, cpu; local
42 for (cpu = 0; cpu < cpus->nr; ++cpu) {
43 unsigned int ncalls = nr_open_calls + cpu;
50 if (cpus->map[cpu] >= CPU_SETSIZE) {
51 pr_debug("Ignoring CPU %d\n", cpus->map[cpu]);
55 CPU_SET(cpus->map[cpu], &cpu_set);
58 cpus->map[cpu],
66 CPU_CLR(cpus->map[cpu],
[all...]
H A Dattr.c67 static int store_event(struct perf_event_attr *attr, pid_t pid, int cpu, argument
92 __WRITE_ASS(cpu, "d", cpu);
137 void test_attr__open(struct perf_event_attr *attr, pid_t pid, int cpu, argument
142 if (store_event(attr, pid, cpu, fd, group_fd, flags))
H A Dperf-record.c10 int i, cpu = -1, nrcpus = 1024; local
25 if (cpu == -1)
26 cpu = i;
32 return cpu;
60 u32 cpu; local
86 pr_debug("Not enough memory to create thread/cpu maps\n");
118 cpu = err;
121 * So that we can check perf_sample.cpu on all the samples.
183 pr_info("%" PRIu64" %d ", sample.time, sample.cpu);
195 if (sample.cpu !
[all...]
/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;
H A Dblkrawverify.c114 fprintf(ofp, " %8s: %u\n", "cpu", bit->cpu);
121 static int process(FILE **fp, char *devname, char *file, unsigned int cpu) argument
208 if (bit->cpu != cpu) {
209 INC_BAD("bad cpu");
252 fprintf(ofp, " Summary for cpu %d:\n", cpu);
263 fprintf(ofp, "%8s %d cpu\n", "", nbad_cpu);
280 int i, cpu, nba local
[all...]
/external/linux-tools-perf/src/tools/perf/util/
H A Drecord.c8 static int perf_do_probe_api(setup_probe_fn_t fn, int cpu, const char *str) argument
23 fd = sys_perf_event_open(&evsel->attr, -1, cpu, -1, 0);
30 fd = sys_perf_event_open(&evsel->attr, -1, cpu, -1, 0);
46 const char *try[] = {"cycles:u", "instructions:u", "cpu-clock", NULL};
48 int cpu, ret, i = 0; local
53 cpu = cpus->map[0];
57 ret = perf_do_probe_api(fn, cpu, try[i++]);
/external/google-breakpad/src/client/linux/dump_writer_common/
H A Dseccomp_unwinder.cc39 void SeccompUnwinder::PopSeccompStackFrame(RawContextCPU* cpu, argument
43 uint64_t bp = cpu->rbp;
86 cpu->rbx = seccomp_stackframe.rbx;
87 cpu->rcx = seccomp_stackframe.rcx;
88 cpu->rdx = seccomp_stackframe.rdx;
89 cpu->rsi = seccomp_stackframe.rsi;
90 cpu->rdi = seccomp_stackframe.rdi;
91 cpu->rbp = seccomp_stackframe.rbp;
92 cpu->rsp = top + 4*sizeof(uint64_t) + 128;
93 cpu
[all...]
/external/google-breakpad/src/common/windows/
H A Dpdb_source_line_writer.h67 // A string identifying the cpu that the pdb is associated with.
69 wstring cpu; member in struct:google_breakpad::PDBModuleInfo
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dmce.h14 __u64 tsc; /* cpu time stamp counter */
16 __u8 cpuvendor; /* cpu vendor as encoded in system.h */
22 __u8 cpu; /* cpu number; obsolete; use extcpu now */ member in struct:mce
24 __u32 extcpu; /* linux cpu number that detected the error */
/external/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp39 const llvm::Triple::ArchType cpu = target ? target->GetArchitecture().GetMachine() : llvm::Triple::UnknownArch; local
51 switch (cpu)
85 switch (cpu)
118 switch (cpu)
171 switch (cpu)
283 const llvm::Triple::ArchType cpu = target ? target->GetArchitecture().GetMachine() : llvm::Triple::UnknownArch; local
291 switch (cpu)
359 switch (cpu)
/external/skia/tools/
H A DPictureBenchmark.cpp33 bool cpu,
39 fTimerTypes |= cpu ? TimerData::kCpu_Flag : 0;
31 setTimersToShow(bool wall, bool truncatedWall, bool cpu, bool truncatedCpu, bool gpu) argument
/external/skia/tools/flags/
H A DSkCommonFlags.h14 DECLARE_bool(cpu); variable
/external/valgrind/tests/
H A Dx86_amd64_features.c71 static Bool go(char* cpu) argument
76 if ( strcmp( cpu, "x86-fpu" ) == 0 ) {
79 } else if ( strcmp( cpu, "x86-cmov" ) == 0 ) {
82 } else if ( strcmp( cpu, "x86-mmx" ) == 0 ) {
85 } else if ( strcmp( cpu, "x86-mmxext" ) == 0 ) {
88 } else if ( strcmp( cpu, "x86-sse" ) == 0 ) {
91 } else if ( strcmp( cpu, "x86-sse2" ) == 0 ) {
94 } else if ( strcmp( cpu, "x86-sse3" ) == 0 ) {
97 } else if ( strcmp( cpu, "x86-ssse3" ) == 0 ) {
100 } else if ( strcmp( cpu, "x8
163 go(char* cpu) argument
[all...]
H A Ds390x_features.c17 // - 0 if the machine provides the asked-for feature and the cpu
20 // cpu model, if specified, does not match the machine
21 // - 1 for an unknown cpu model in /proc/cpu_info
201 static int go(char *feature, char *cpu) argument
241 if (cpu == NULL) return 0;
250 colon = strchr(cpu, ':');
254 from = to = locate_model(cpu);
255 } else if (colon == cpu) {
258 to = locate_model(cpu + 1);
262 from = locate_model(cpu);
293 go(char *feature, char *cpu) argument
[all...]
/external/deqp/modules/internal/
H A DditBuildInfoTests.cpp63 static const char* getCpuName (int cpu) argument
65 switch (cpu)
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dsizeofpack.cpp163 struct cpu { using value_type = void; }; struct in namespace:pr15112
176 auto c1 = mkcoords<cpu>(0ul, 0ul, 0ul);
/external/fio/os/
H A Dos-solaris.h104 #define fio_cpu_clear(mask, cpu) pset_assign(PS_NONE, (cpu), NULL)
105 #define fio_cpu_set(mask, cpu) pset_assign(*(mask), (cpu), NULL)
107 static inline int fio_cpu_isset(os_cpu_mask_t *mask, int cpu) argument
123 if (cpus[i] == cpu) {

Completed in 747 milliseconds

1234