OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cpuid_version
(Results
1 - 2
of
2
) sorted by null
/external/qemu/target-i386/
helper.c
437
env->
cpuid_version
= 0xf00 | ((def->family - 0x0f) << 20);
439
env->
cpuid_version
= def->family << 8;
440
env->
cpuid_version
|= ((def->model & 0xf) << 4) | ((def->model >> 4) << 16);
441
env->
cpuid_version
|= def->stepping;
519
env->regs[R_EDX] = env->
cpuid_version
;
[
all
...]
cpu.h
667
uint32_t
cpuid_version
;
member in struct:CPUX86State
Completed in 444 milliseconds