Searched refs:bitfield32 (Results 1 - 1 of 1) sorted by relevance

/xnu-2422.115.4/osfmk/i386/
H A Dcpuid.c55 #define bitfield32(x,h,l) ((((x) & bitmask32(h,l)) >> l)) macro
309 cache_type = bitfield32(reg[eax], 4, 0);
312 cache_level = bitfield32(reg[eax], 7, 5);
313 cache_sharing = bitfield32(reg[eax], 25, 14) + 1;
315 = bitfield32(reg[eax], 31, 26) + 1;
316 cache_linesize = bitfield32(reg[ebx], 11, 0) + 1;
317 cache_partitions = bitfield32(reg[ebx], 21, 12) + 1;
318 cache_associativity = bitfield32(reg[ebx], 31, 22) + 1;
319 cache_sets = bitfield32(reg[ecx], 31, 0) + 1;
529 info_p->cpuid_cache_linesize = bitfield32(re
[all...]

Completed in 21 milliseconds