Searched refs:eax_1 (Results 1 - 12 of 12) sorted by relevance

/haiku/src/add-ons/media/plugins/ffmpeg/
H A DCpuCapabilities.cpp57 if (cpuInfo.eax_1.features & (1UL << 23)) {
61 if (cpuInfo.eax_1.features & (1UL << 25)) {
65 if (cpuInfo.eax_1.features & (1UL << 26)) {
71 if (cpuInfo.eax_1.extended_features & (1UL << 0)) {
74 if (cpuInfo.eax_1.extended_features & (1UL << 9)) {
77 if (cpuInfo.eax_1.extended_features & (1UL << 19)) {
80 if (cpuInfo.eax_1.extended_features & (1UL << 20)) {
/haiku/src/add-ons/media/media-add-ons/video_mixer/
H A DCpuCapabilities.cpp60 if (cpuInfo.eax_1.features & (1UL << 23)) {
64 if (cpuInfo.eax_1.features & (1UL << 25)) {
68 if (cpuInfo.eax_1.features & (1UL << 26)) {
74 if (cpuInfo.eax_1.extended_features & (1UL << 0)) {
77 if (cpuInfo.eax_1.extended_features & (1UL << 9)) {
80 if (cpuInfo.eax_1.extended_features & (1UL << 19)) {
83 if (cpuInfo.eax_1.extended_features & (1UL << 20)) {
/haiku/src/bin/
H A Dsysinfo.cpp458 "%1" B_PRIx32 "%1" B_PRIx32 "; ", info->eax_1.extended_family,
459 info->eax_1.extended_model, info->eax_1.family,
460 info->eax_1.model, info->eax_1.stepping);
464 info->eax_1.type,
465 info->eax_1.family + (info->eax_1.family == 0xf
466 ? info->eax_1.extended_family : 0),
467 info->eax_1
[all...]
/haiku/src/system/boot/platform/bios_ia32/
H A Dcpu.cpp50 if ((info.eax_1.features & RDTSC_FEATURE) == 0) {
H A Dsmp.cpp640 if ((info.eax_1.features & IA32_FEATURE_APIC) == 0) {
/haiku/src/system/boot/arch/x86/
H A Darch_cpu.cpp365 int family = info.eax_1.family;
366 int model = info.eax_1.model;
368 family += info.eax_1.extended_family;
369 model += (info.eax_1.extended_model << 4);
373 "%02x-%02x-%02x", family, model, info.eax_1.stepping);
/haiku/src/kits/debugger/arch/x86/
H A DArchitectureX86.cpp166 if ((info.eax_1.features & IA32_FEATURE_MMX) != 0)
169 if ((info.eax_1.features & IA32_FEATURE_SSE) != 0)
/haiku/src/system/kernel/arch/x86/
H A Darch_cpu.cpp1315 cpu->arch.type = cpuid.eax_1.type;
1316 cpu->arch.family = cpuid.eax_1.family;
1317 cpu->arch.extended_family = cpuid.eax_1.extended_family;
1318 cpu->arch.model = cpuid.eax_1.model;
1319 cpu->arch.extended_model = cpuid.eax_1.extended_model;
1320 cpu->arch.stepping = cpuid.eax_1.stepping;
1393 cpu->arch.feature[FEATURE_COMMON] = cpuid.eax_1.features; // edx
1394 cpu->arch.feature[FEATURE_EXT] = cpuid.eax_1.extended_features; // ecx
/haiku/src/system/boot/platform/efi/arch/x86/
H A Darch_smp.cpp383 if ((info.eax_1.features & IA32_FEATURE_APIC) == 0) {
/haiku/src/apps/webpositive/
H A DBrowserApp.cpp90 if ((info.eax_1.features & (1 << 26)) == 0) {
/haiku/src/kits/debugger/arch/x86_64/
H A DArchitectureX8664.cpp184 if ((info.eax_1.extended_features & X86_64_EXTENDED_FEATURE_AVX) != 0)
/haiku/headers/os/kernel/
H A DOS.h581 } eax_1; member in union:__anon16

Completed in 338 milliseconds