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

/darwin-on-arm/xnu/osfmk/i386/
H A Dcpuid.c55 #define bitfield32(x,h,l) ((((x) & bitmask32(h,l)) >> l)) macro
330 cache_type = bitfield32(reg[eax], 4, 0);
333 cache_level = bitfield32(reg[eax], 7, 5);
334 cache_sharing = bitfield32(reg[eax], 25, 14) + 1;
336 = bitfield32(reg[eax], 31, 26) + 1;
337 cache_linesize = bitfield32(reg[ebx], 11, 0) + 1;
338 cache_partitions = bitfield32(reg[ebx], 21, 12) + 1;
339 cache_associativity = bitfield32(reg[ebx], 31, 22) + 1;
340 cache_sets = bitfield32(reg[ecx], 31, 0) + 1;
550 info_p->cpuid_cache_linesize = bitfield32(re
[all...]

Completed in 16 milliseconds