reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/openmp/runtime/src/kmp_affinity.cpp
 1073   __kmp_x86_cpuid(0, 0, &buf);
 1074   if (buf.eax < 4) {
 1093     __kmp_x86_cpuid(1, 0, &buf);
 1094     int maxThreadsPerPkg = (buf.ebx >> 16) & 0xff;
 1110     __kmp_x86_cpuid(0, 0, &buf);
 1111     if (buf.eax >= 4) {
 1112       __kmp_x86_cpuid(4, 0, &buf);
 1113       nCoresPerPkg = ((buf.eax >> 26) & 0x3f) + 1;
 1198     __kmp_x86_cpuid(1, 0, &buf);
 1199     if (((buf.edx >> 9) & 1) == 0) {
 1206     threadInfo[nApics].apicId = (buf.ebx >> 24) & 0xff;
 1207     threadInfo[nApics].maxThreadsPerPkg = (buf.ebx >> 16) & 0xff;
 1218     __kmp_x86_cpuid(0, 0, &buf);
 1219     if (buf.eax >= 4) {
 1220       __kmp_x86_cpuid(4, 0, &buf);
 1221       threadInfo[nApics].maxCoresPerPkg = ((buf.eax >> 26) & 0x3f) + 1;