HomeSort by relevance Sort by last modified time
    Searched refs:cpuid (Results 51 - 75 of 225) sorted by null

1 23 4 5 6 7 8 9

  /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/strace/
kvm.c 41 uint32_t cpuid = arg; local
43 tprintf(", %u", 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/mesa3d/src/gallium/auxiliary/util/
u_cpu_detect.c 179 * @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"
216 * @sa cpuid.h included in gcc-4.4 onwards.
225 "cpuid\n\t"
235 "cpuid\n\t"
346 /* Get max cpuid level */
347 cpuid(0x00000000, regs);
352 cpuid (0x00000001, regs2)
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt6795/
plat_pm.c 55 uint32_t cpuid)
57 return &cluster->core[cpuid];
72 uint32_t cpuid; local
75 cpuid = mpidr & MPIDR_CPU_MASK;
77 return cluster_core(cluster, cpuid);
  /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;
  /prebuilts/go/darwin-x86/src/runtime/
os_linux_ppc64x.go 12 // ppc64x doesn't have a 'cpuid' instruction equivalent and relies on
  /prebuilts/go/linux-x86/src/runtime/
os_linux_ppc64x.go 12 // ppc64x doesn't have a 'cpuid' instruction equivalent and relies on
  /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 ; "
  /external/syslinux/com32/modules/
ifcpu64.c 36 #include <cpuid.h>
  /external/syslinux/gpxe/src/arch/i386/include/bits/
cpu.h 4 /* Intel-defined CPU features, CPUID level 0x00000001, word 0 */
36 /* AMD-defined CPU features, CPUID level 0x80000001, word 1 */
71 #define X86_EFLAGS_ID 0x00200000 /* CPUID detection flag */
74 * Generic CPUID function
77 cpuid ( int op, unsigned int *eax, unsigned int *ebx, function
79 __asm__ ( "cpuid" :
  /external/valgrind/coregrind/
m_cache.c 45 // All CPUID info taken from sandpile.org/ia32/cpuid.htm */
123 VG_(debugLog)(1, "cache", "warning: CPUID level < 2 for Intel "
129 VG_(cpuid)(1, 0, &cpuid1_eax, &cpuid1_ignore,
134 VG_(cpuid)(2, 0, (UInt*)&info[0], (UInt*)&info[4],
140 VG_(debugLog)(1, "cache", "warning: non-zero CPUID trials for Intel "
291 VG_(cpuid)(4, j++, (UInt*)&info[0], (UInt*)&info[4],
346 VG_(cpuid)(4, j++, (UInt*)&info[0], (UInt*)&info[4],
418 VG_(cpuid)(0x80000000, 0, &ext_level, &dummy, &dummy, &dummy);
426 VG_(cpuid)(0x80000005, 0, &dummy, &dummy, &D1i, &I1i)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Cpu/Pentium/CpuIA32Lib/IA32/
CpuIA32.c 54 cpuid
169 cpuid
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
CpuId.asm 14 ; CpuId.Asm
43 cpuid
CpuIdEx.asm 45 cpuid
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/
CpuId.asm 12 ; CpuId.Asm
39 cpuid
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
CpuId.asm 14 ; CpuId.Asm
43 cpuid
CpuIdEx.asm 45 cpuid
FlushCacheLine.asm 43 cpuid
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/
CpuId.asm 14 ; CpuId.Asm
41 cpuid
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/CpuIA32Lib/IA32/
CpuIA32.c 66 cpuid
181 cpuid
  /external/swiftshader/src/OpenGL/libGL/
Display.cpp 61 static void cpuid(int registers[4], int info) function in namespace:gl
66 __asm volatile("cpuid": "=a" (registers[0]), "=b" (registers[1]), "=c" (registers[2]), "=d" (registers[3]): "a" (info));
79 cpuid(registers, 1);
  /external/syslinux/com32/gpllib/
cpuid.c 21 #include "cpuid.h"
49 * CPUID functions returning a single datum
52 /* Probe for the CPUID instruction */
183 cpuid(0x80000002, &v[0], &v[1], &v[2], &v[3]);
184 cpuid(0x80000003, &v[4], &v[5], &v[6], &v[7]);
185 cpuid(0x80000004, &v[8], &v[9], &v[10], &v[11]);
208 cpuid(0x80000005, &eax, &ebx, &ecx, &edx);
219 cpuid(0x80000006, &eax, &ebx, &ecx, &edx);
343 cpuid(0x00000000,
354 cpuid(0x00000001, &tfms, &ebx, &excap, &capability)
    [all...]
  /prebuilts/go/darwin-x86/src/internal/cpu/
cpu_arm64.go 11 // arm64 doesn't have a 'cpuid' equivalent, so we rely on HWCAP/HWCAP2.

Completed in 609 milliseconds

1 23 4 5 6 7 8 9