Searched defs:CpuIdEntry (Results 1 – 6 of 6) sorted by relevance
19 pub fn tsc_frequency_cpuid(cpuid_count: CpuidCountFn) -> Option<hypervisor::CpuIdEntry> { in tsc_frequency_cpuid()
1060 const struct CpuIdEntry { in WriteCPUInformation() struct1061 const char* field; in WriteCPUInformation()1062 char format; in WriteCPUInformation()1063 char bit_lshift; in WriteCPUInformation()1064 char bit_length; in WriteCPUInformation()
196 fn cpuid_entry_from_host(function: u32, index: u32) -> CpuIdEntry { in cpuid_entry_from_host()
400 pub struct CpuIdEntry { struct403 // flags is needed for KVM. We store it on CpuIdEntry to preserve the flags across argument411 pub cpu_id_entries: Vec<CpuIdEntry>, argument
121 pub fn adjust_cpuid(entry: &mut CpuIdEntry, ctx: &CpuIdContext) { in adjust_cpuid()
904 impl From<&hax_cpuid_entry> for CpuIdEntry { implementation