Searched refs:eax (Results 101 - 117 of 117) sorted by relevance

12345

/haiku/headers/libs/agg/
H A Dagg_math.h281 xor eax, eax
284 shr eax, cl
H A Dagg_basics.h136 __asm mov eax, dword ptr [t] local
143 __asm mov eax, dword ptr [t] local
/haiku/src/system/kernel/arch/x86/
H A Darch_cpu.cpp731 cacheType = cpuid.regs.eax & 0x1f;
735 int cacheLevel = (cpuid.regs.eax >> 5) & 0x7;
736 int coresCount = next_power_of_2(((cpuid.regs.eax >> 14) & 0x3f) + 1);
786 int levelValue = cpuid.regs.eax & 0x1f;
839 maxCoreID = next_power_of_2((cpuid.regs.eax >> 26) + 1);
863 cacheType = cpuid.regs.eax & 0x1f;
867 int cacheLevel = (cpuid.regs.eax >> 5) & 0x7;
869 = next_power_of_2(((cpuid.regs.eax >> 14) & 0x3f) + 1);
1009 uint32 signature = cpuid.regs.eax;
1125 uint32 signature = cpuid.regs.eax;
[all...]
H A Darch_user_debugger.cpp161 cpuState->eax = frame->orig_eax;
186 frame->ax = cpuState->eax;
/haiku/headers/private/kernel/arch/x86/32/
H A Ddescriptors.h83 uint32 eip, eflags, eax, ecx, edx, ebx, esp, ebp, esi, edi; member in struct:tss
/haiku/src/add-ons/kernel/drivers/graphics/s3/
H A Ddriver.cpp516 regs.eax = 0x4f15;
526 if (regs.eax != 0x4f)
542 regs.eax = 0x4f15;
551 if (regs.eax != 0x4f) {
/haiku/src/add-ons/kernel/drivers/graphics/intel_810/
H A Ddriver.cpp169 regs.eax = 0x4f15;
179 if (regs.eax != 0x4f)
195 regs.eax = 0x4f15;
204 if (regs.eax != 0x4f) {
/haiku/src/system/boot/platform/bios_ia32/
H A Dmmu.cpp291 regs.eax = 0xe820;
356 asm("movl %0, %%eax;"
357 "movl %%eax, %%cr3;" : : "m" (sPageDirectory) : "eax");
359 asm("movl %%eax, %%cr0" : : "a" ((1 << 31) | (1 << 16) | (1 << 5) | 1));
760 regs.eax = 0xe801; // AX
763 regs.eax = 0x8800; // AH 88h
772 gKernelArgs.physical_memory_range[1].size = regs.eax * 1024;
/haiku/src/kits/debugger/arch/x86/
H A DCpuStateX86.cpp32 SetIntRegister(X86_REGISTER_EAX, state.eax);
124 x86State->eax = IntRegisterValue(X86_REGISTER_EAX);
/haiku/src/system/kernel/arch/x86/32/
H A Dthread.cpp281 value of eax and edx which are overwritten by the syscall return value.
312 signalFrameData->context.uc_mcontext.eax = frame->ax;
382 frame->ax = signalFrameData->context.uc_mcontext.eax;
H A Ddescriptors.cpp164 frame->ax = tss->eax;
/haiku/src/add-ons/kernel/generic/bios/
H A Dbios.cpp287 M.x86.R_EAX = regs->eax;
311 regs->eax = M.x86.R_EAX;
/haiku/src/add-ons/kernel/cpu/x86/
H A Dgeneric_x86.cpp214 bits = cpuInfo.regs.eax & 0xff;
/haiku/headers/private/shared/
H A Dcpu_type.h234 memcpy(name, &nameInfo.regs.eax, 4);
/haiku/headers/os/kernel/
H A DOS.h597 uint32 eax; member in struct:__anon16::__anon21
/haiku/headers/private/system/
H A Dsyscalls.h572 extern status_t _kern_get_cpuid(cpuid_info *info, uint32 eax, uint32 cpu);
/haiku/src/servers/app/drawing/Painter/
H A DPainter.cpp157 uint32 maxStdFunc = cpuInfo.regs.eax;

Completed in 134 milliseconds

12345