• Home
  • Raw
  • Download

Lines Matching refs:cpuinfo_cache

25 	struct cpuinfo_cache* l1i = NULL;  in cpuinfo_x86_mach_init()
26 struct cpuinfo_cache* l1d = NULL; in cpuinfo_x86_mach_init()
27 struct cpuinfo_cache* l2 = NULL; in cpuinfo_x86_mach_init()
28 struct cpuinfo_cache* l3 = NULL; in cpuinfo_x86_mach_init()
29 struct cpuinfo_cache* l4 = NULL; in cpuinfo_x86_mach_init()
188 l1i = calloc(l1_count, sizeof(struct cpuinfo_cache)); in cpuinfo_x86_mach_init()
191 l1_count * sizeof(struct cpuinfo_cache), l1_count); in cpuinfo_x86_mach_init()
195 l1i[c] = (struct cpuinfo_cache) { in cpuinfo_x86_mach_init()
212 l1d = calloc(l1_count, sizeof(struct cpuinfo_cache)); in cpuinfo_x86_mach_init()
215 l1_count * sizeof(struct cpuinfo_cache), l1_count); in cpuinfo_x86_mach_init()
219 l1d[c] = (struct cpuinfo_cache) { in cpuinfo_x86_mach_init()
236 l2 = calloc(l2_count, sizeof(struct cpuinfo_cache)); in cpuinfo_x86_mach_init()
239 l2_count * sizeof(struct cpuinfo_cache), l2_count); in cpuinfo_x86_mach_init()
243 l2[c] = (struct cpuinfo_cache) { in cpuinfo_x86_mach_init()
260 l3 = calloc(l3_count, sizeof(struct cpuinfo_cache)); in cpuinfo_x86_mach_init()
263 l3_count * sizeof(struct cpuinfo_cache), l3_count); in cpuinfo_x86_mach_init()
267 l3[c] = (struct cpuinfo_cache) { in cpuinfo_x86_mach_init()
284 l4 = calloc(l4_count, sizeof(struct cpuinfo_cache)); in cpuinfo_x86_mach_init()
287 l4_count * sizeof(struct cpuinfo_cache), l4_count); in cpuinfo_x86_mach_init()
291 l4[c] = (struct cpuinfo_cache) { in cpuinfo_x86_mach_init()
312 cpuinfo_cache[cpuinfo_cache_level_1i] = l1i; in cpuinfo_x86_mach_init()
313 cpuinfo_cache[cpuinfo_cache_level_1d] = l1d; in cpuinfo_x86_mach_init()
314 cpuinfo_cache[cpuinfo_cache_level_2] = l2; in cpuinfo_x86_mach_init()
315 cpuinfo_cache[cpuinfo_cache_level_3] = l3; in cpuinfo_x86_mach_init()
316 cpuinfo_cache[cpuinfo_cache_level_4] = l4; in cpuinfo_x86_mach_init()