Searched defs:cpuid (Results 1 - 21 of 21) sorted by relevance

/external/fio/arch/
H A Darch-x86-common.h6 static inline void cpuid(unsigned int op, function
43 cpuid(0x80000000, &eax, &ebx, &ecx, &edx);
47 cpuid(0x80000007, &eax, &ebx, &ecx, &edx);
59 cpuid(0, &level, (unsigned int *) &str[0],
/external/linux-tools-perf/src/tools/perf/arch/x86/util/
H A Dheader.c10 cpuid(unsigned int op, unsigned int *a, unsigned int *b, unsigned int *c, function
30 cpuid(0, &lvl, &b, &c, &d);
37 cpuid(1, &a, &b, &c, &d);
/external/protobuf/src/google/protobuf/stubs/
H A Datomicops_internals_x86_gcc.cc44 // Inline cpuid instruction. In PIC compilations, %ebx contains the address
46 // must preserve that register's value across cpuid instructions.
48 #define cpuid(a, b, c, d, inp) \ macro
50 "cpuid\n" \
54 #define cpuid(a, b, c, d, inp) \ macro
56 "cpuid\n" \
61 #if defined(cpuid) // initialize the struct only on x86
85 cpuid(eax, ebx, ecx, edx, 0);
93 cpuid(eax, ebx, ecx, edx, 1);
/external/v8/src/base/
H A Datomicops_internals_x86_gcc.cc18 // Inline cpuid instruction. In PIC compilations, %ebx contains the address
20 // must preserve that register's value across cpuid instructions.
22 #define cpuid(a, b, c, d, inp) \ macro
24 "cpuid\n" \
28 #define cpuid(a, b, c, d, inp) \ macro
30 "cpuid\n" \
35 #if defined(cpuid) // initialize the struct only on x86
64 cpuid(eax, ebx, ecx, edx, 0);
72 cpuid(eax, ebx, ecx, edx, 1);
/external/valgrind/VEX/useful/
H A Dcpuid.c7 void cpuid ( UInt* eax, UInt* ebx, UInt* ecx, UInt* edx, function
11 asm volatile ("cpuid"
25 cpuid(&eax,&ebx,&ecx,&edx, 0,0);
38 cpuid(&eax,&ebx,&ecx,&edx, i,0);
41 cpuid(&eax,&ebx,&ecx,&edx, i,ecx_in);
50 cpuid(&eax,&ebx,&ecx,&edx, 0x80000000,0);
53 cpuid(&eax,&ebx,&ecx,&edx, i,0);
57 cpuid(&eax,&ebx,&ecx,&edx, 1234,0);
58 cpuid(&eax,&ebx,&ecx,&edx, 0x800004d3,0);
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dmce.h19 __u32 cpuid; /* CPUID 1 EAX */ member in struct:mce
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_cpu_detect.c179 * @sa cpuid.h included in gcc-4.3 onwards.
183 cpuid(uint32_t ax, uint32_t *p) function
188 "cpuid\n\t"
198 "cpuid\n\t"
260 /* Get max cpuid level */
261 cpuid(0x00000000, regs);
266 cpuid (0x00000001, regs2);
289 cpuid(0x80000000, regs);
293 cpuid(0x80000001, regs2);
302 cpuid(
[all...]
/external/valgrind/tests/
H A Dx86_amd64_features.c28 static void cpuid ( unsigned int n, function
33 "cpuid"
43 cpuid(0, &a, &b, &c, &d);
140 cpuid( level & 0x80000000, &a, &b, &c, &d );
143 cpuid( level, &a, &b, &c, &d );
/external/lzma/C/
H A DCpuArch.c62 __asm cpuid; local
76 "cpuid"
/external/libvpx/libvpx/vpx_ports/
H A Dx86.h42 #define cpuid(func, func2, ax, bx, cx, dx)\ macro
44 "cpuid \n\t" \
48 #define cpuid(func, func2, ax, bx, cx, dx)\ macro
51 "cpuid \n\t" \
58 #define cpuid(func, func2, ax, bx, cx, dx)\ macro
61 "cpuid \n\t" \
67 #define cpuid(func, func2, ax, bx, cx, dx)\ macro
70 "cpuid \n\t" \
81 #define cpuid(func, func2, a, b, c, d) do {\ macro
89 #define cpuid(fun macro
96 #define cpuid macro
[all...]
/external/linux-tools-perf/src/tools/perf/util/
H A Dheader.h76 char *cpuid; member in struct:perf_session_env
/external/google-breakpad/src/processor/
H A Dminidump_processor.cc405 uint32_t cpuid = raw_info->cpu.arm_cpu_info.cpuid; local
406 if (cpuid != 0) {
409 uint32_t vendor_id = (cpuid >> 24) & 0xff;
425 uint32_t part_id = (cpuid & 0xff00fff0);
/external/opencv/cxcore/src/
H A Dcxswitcher.cpp184 func_ptr cpuid = (func_ptr)(void*)cpuid_code; local
185 int64 cpuid_val = cpuid();
/external/google-breakpad/src/client/mac/handler/
H A Dminidump_generator.cc1193 #define cpuid(op,eax,ebx,ecx,edx) \ macro
1195 "cpuid \n\t" \
1205 #define cpuid(op,eax,ebx,ecx,edx) \ macro
1206 asm ("cpuid \n\t" \
1217 cpuid(0, unused, info_ptr->cpu.x86_cpu_info.vendor_id[0],
1221 cpuid(1, info_ptr->cpu.x86_cpu_info.version_information, unused, unused2,
/external/skia/platform_tools/android/third_party/cpufeatures/
H A Dcpu-features.c106 "cpuid\n" \
867 /* Extract the cpuid value from various fields */
918 uint32_t cpuid; member in struct:CpuFix
932 if (g_cpuIdArm == entry->cpuid)
/external/linux-tools-perf/src/tools/perf/
H A Dbuiltin-kvm.c833 char buf[64], *cpuid; local
842 cpuid = buf;
844 cpuid = kvm->session->header.env.cpuid;
846 if (strstr(cpuid, "Intel"))
848 else if (strstr(cpuid, "AMD"))
851 pr_err("CPU %s is not supported.\n", cpuid);
/external/v8/src/x87/
H A Dassembler-x87.cc303 void Assembler::cpuid() { function in class:v8::internal::Assembler
/external/valgrind/include/vki/
H A Dvki-xen-domctl.h401 struct vki_xen_domctl_cpuid cpuid; member in union:vki_xen_domctl::__anon16506
/external/v8/src/ia32/
H A Dassembler-ia32.cc361 void Assembler::cpuid() { function in class:v8::internal::Assembler
/external/v8/src/x64/
H A Dassembler-x64.cc825 void Assembler::cpuid() { function in class:v8::internal::Assembler
/external/google-breakpad/src/google_breakpad/common/
H A Dminidump_format.h551 uint32_t vendor_id[3]; /* cpuid 0: ebx, edx, ecx */
552 uint32_t version_information; /* cpuid 1: eax */
553 uint32_t feature_information; /* cpuid 1: edx */
554 uint32_t amd_extended_cpu_features; /* cpuid 0x80000001, ebx */
557 uint32_t cpuid; member in struct:__anon5194::__anon5196

Completed in 3731 milliseconds