HomeSort by relevance Sort by last modified time
    Searched defs:cpuid (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/dtc/tests/
boot-cpuid.c 32 uint32_t cpuid; local
37 CONFIG("Usage: %s <dtb file> <cpuid>", argv[0]);
40 cpuid = strtoul(argv[2], NULL, 0);
42 if (fdt_boot_cpuid_phys(fdt) != cpuid)
44 fdt_boot_cpuid_phys(fdt), cpuid);
  /external/ltp/include/old/
ltp_cpuid.h 10 static inline void cpuid(unsigned int info, unsigned int *eax, unsigned int *ebx, function
18 "cpuid;"
22 "cpuid;"
  /prebuilts/go/darwin-x86/src/cmd/dist/
util_gc.go 9 func cpuid(info *[4]uint32, ax uint32) func
17 cpuid(&info, 1)
  /prebuilts/go/darwin-x86/src/internal/cpu/
cpu_x86.go 11 // cpuid is implemented in cpu_x86.s.
12 func cpuid(eaxArg, ecxArg uint32) (eax, ebx, ecx, edx uint32) func
18 maxID, _, _, _ := cpuid(0, 0)
24 _, _, ecx1, edx1 := cpuid(1, 0)
51 _, ebx7, _, _ := cpuid(7, 0)
  /prebuilts/go/linux-x86/src/cmd/dist/
util_gc.go 9 func cpuid(info *[4]uint32, ax uint32) func
17 cpuid(&info, 1)
  /prebuilts/go/linux-x86/src/internal/cpu/
cpu_x86.go 11 // cpuid is implemented in cpu_x86.s.
12 func cpuid(eaxArg, ecxArg uint32) (eax, ebx, ecx, edx uint32) func
18 maxID, _, _, _ := cpuid(0, 0)
24 _, _, ecx1, edx1 := cpuid(1, 0)
51 _, ebx7, _, _ := cpuid(7, 0)
  /external/strace/
kvm.c 41 uint32_t cpuid = arg; local
43 tprintf(", %u", cpuid);
  /external/fio/arch/
arch-x86-common.h 6 static inline void cpuid(unsigned int op, function
51 cpuid(0x80000000, &eax, &ebx, &ecx, &edx);
55 cpuid(0x80000007, &eax, &ebx, &ecx, &edx);
66 cpuid(0, &level, (unsigned int *) &str[0],
  /external/libopus/celt/x86/
x86cpu.c 47 static _inline void cpuid(unsigned int CPUInfo[4], unsigned int InfoType) function
55 #include <cpuid.h>
58 static void cpuid(unsigned int CPUInfo[4], unsigned int InfoType) function
65 "cpuid\n"
75 "cpuid":
104 cpuid(info, 0);
108 cpuid(info, 1);
  /external/protobuf/src/google/protobuf/stubs/
atomicops_internals_x86_gcc.cc 44 // 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
84 // Get vendor string (issue CPUID with eax = 0)
85 cpuid(eax, ebx, ecx, edx, 0);
93 cpuid(eax, ebx, ecx, edx, 1)
    [all...]
  /external/syslinux/com32/include/sys/i386/
cpu.h 22 "cpuid ; "
28 static inline void cpuid(uint32_t op, uint32_t * eax, uint32_t * ebx, function
39 "cpuid ; "
52 "cpuid ; "
64 "cpuid ; "
76 "cpuid ; "
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/
chacha20poly1305_amd64.go 17 // cpuid is implemented in chacha20poly1305_amd64.s.
18 func cpuid(eaxArg, ecxArg uint32) (eax, ebx, ecx, edx uint32) func
36 maxId, _, _, _ := cpuid(0, 0)
41 _, _, ecx1, _ := cpuid(1, 0)
61 _, ebx7, _, _ := cpuid(7, 0)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/
chacha20poly1305_amd64.go 17 // cpuid is implemented in chacha20poly1305_amd64.s.
18 func cpuid(eaxArg, ecxArg uint32) (eax, ebx, ecx, edx uint32) func
36 maxId, _, _, _ := cpuid(0, 0)
41 _, _, ecx1, _ := cpuid(1, 0)
61 _, ebx7, _, _ := cpuid(7, 0)
  /external/autotest/client/profilers/powertop/src/
intelcstates.c 42 static void cpuid( unsigned int *eax, function
47 /* call the cpuid instruction with the registers as input and output
53 "cpuid \n\t"
54 "movl %%ebx, %1 \n\t" /* save what cpuid just put in %ebx */
139 cpuid(&eax, &ebx, &ecx, &edx);
  /external/skia/src/core/
SkCpu.cpp 18 static void cpuid (uint32_t abcd[4]) { __cpuid ((int*)abcd, 1); } function
22 #include <cpuid.h>
25 __asm__("cpuid" : "=a"(a), "=b"(b), "=c"(c), "=d"(d) : "0"(eax), "2"(ecx))
27 static void cpuid (uint32_t abcd[4]) { __get_cpuid(1, abcd+0, abcd+1, abcd+2, abcd+3); } function
42 // You might want to refer to http://www.sandpile.org/x86/cpuid.htm
44 cpuid(abcd);
  /external/skqp/src/core/
SkCpu.cpp 18 static void cpuid (uint32_t abcd[4]) { __cpuid ((int*)abcd, 1); } function
22 #include <cpuid.h>
25 __asm__("cpuid" : "=a"(a), "=b"(b), "=c"(c), "=d"(d) : "0"(eax), "2"(ecx))
27 static void cpuid (uint32_t abcd[4]) { __get_cpuid(1, abcd+0, abcd+1, abcd+2, abcd+3); } function
42 // You might want to refer to http://www.sandpile.org/x86/cpuid.htm
44 cpuid(abcd);
  /bionic/libc/kernel/uapi/asm-x86/asm/
mce.h 35 __u32 cpuid; member in struct:mce
  /device/linaro/bootloader/arm-trusted-firmware/plat/xilinx/zynqmp/pm_service/
pm_client.c 201 * @cpuid: id of the cpu whose proc struct pointer should be returned
205 const struct pm_proc *pm_get_proc(unsigned int cpuid)
207 if (cpuid < ARRAY_SIZE(pm_procs_all))
208 return &pm_procs_all[cpuid];
294 unsigned int cpuid = pm_get_cpuid(proc->node_id); local
296 if (cpuid == UNDEFINED_CPUID)
pm_api_sys.c 69 unsigned int cpuid = plat_my_core_pos(); local
70 const struct pm_proc *proc = pm_get_proc(cpuid);
  /external/kernel-headers/original/uapi/asm-x86/asm/
mce.h 21 __u32 cpuid; /* CPUID 1 EAX */ member in struct:mce
  /external/ltp/testcases/kernel/sched/hyperthreading/ht_affinity/
ht_affinity.c 54 int cpu_count, i, j, k, cpuid; local
110 cpuid = get_current_cpu(pid);
111 if (cpuid != i && cpuid != i + 1)
  /external/syslinux/com32/include/sys/x86_64/
cpu.h 24 asm volatile("cpuid"
33 * Generic CPUID function
37 static inline void cpuid(uint32_t op, function
47 * CPUID functions returning a single datum
53 cpuid(op, &eax, &ebx, &ecx, &edx);
62 cpuid(op, &eax, &ebx, &ecx, &edx);
71 cpuid(op, &eax, &ebx, &ecx, &edx);
80 cpuid(op, &eax, &ebx, &ecx, &edx);
90 "cpuid ; "
  /external/valgrind/tests/
x86_amd64_features.c 28 static void cpuid ( unsigned int n, function
33 "cpuid"
43 cpuid(0, &a, &b, &c, &d);
144 cpuid( level & 0x80000000, &a, &b, &c, &d );
147 cpuid( level, &a, &b, &c, &d );
  /device/linaro/bootloader/arm-trusted-firmware/plat/nvidia/tegra/soc/t186/drivers/mce/
mce.c 112 uint64_t cpuid = mpidr & (uint64_t)MPIDR_CPU_MASK; local
123 cpuid |= 0x4U;
126 return mce_cfg_table[cpuid].ari_base;
132 uint64_t cpuid = mpidr & (uint64_t)MPIDR_CPU_MASK; local
144 cpuid |= 0x4U;
147 return mce_cfg_table[cpuid].ops;
  /external/lzma/C/
CpuArch.c 69 __asm cpuid; local
85 "cpuid;"
91 "cpuid;"
96 "cpuid"

Completed in 1778 milliseconds

1 2 3