Lines Matching refs:subleaf
49 struct subleaf { struct
62 struct subleaf *leafs; argument
114 static void leaf_print_raw(struct subleaf *leaf) in leaf_print_raw()
129 static bool cpuid_store(struct cpuid_range *range, u32 f, int subleaf, in cpuid_store() argument
133 struct subleaf *leaf; in cpuid_store()
146 func->leafs = malloc(sizeof(struct subleaf)); in cpuid_store()
163 leaf->sub = subleaf; in cpuid_store()
200 u32 max_func, idx_func, subleaf, max_subleaf; in setup_cpuid_range() local
230 subleaf = ecx = 0; in setup_cpuid_range()
233 allzero = cpuid_store(range, f, subleaf, eax, ebx, ecx, edx); in setup_cpuid_range()
259 for (subleaf = 1; subleaf < max_subleaf; subleaf++) { in setup_cpuid_range()
261 ecx = subleaf; in setup_cpuid_range()
264 allzero = cpuid_store(range, f, subleaf, in setup_cpuid_range()
289 struct subleaf *leaf; in parse_line()
483 static void show_leaf(struct subleaf *leaf) in show_leaf()