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

References

projects/openmp/runtime/src/kmp_utility.cpp
  130   p->initialized = 1;
  132   p->sse2 = 1; // Assume SSE2 by default.
  142   p->apic_id = -1;
  156       p->signature = buf.eax;
  157       p->family = get_value(buf.eax, 20, 0xff) + get_value(buf.eax, 8, 0x0f);
  158       p->model =
  160       p->stepping = get_value(buf.eax, 0, 0x0f);
  172     p->sse2 = (buf.edx >> 26) & 1;
  231       p->apic_id = data[3]; /* Bits 31-24: Processor Initial APIC ID (X) */
  239         p->cpu_stackoffset = 1 * 1024;
  243       p->physical_id = __kmp_get_physical_id(log_per_phy, p->apic_id);
  243       p->physical_id = __kmp_get_physical_id(log_per_phy, p->apic_id);
  244       p->logical_id = __kmp_get_logical_id(log_per_phy, p->apic_id);
  244       p->logical_id = __kmp_get_logical_id(log_per_phy, p->apic_id);
  261     p->rtm = 0;
  265       p->rtm = (buf.ebx >> 11) & 1;
  273     kmp_cpuid_t *base = (kmp_cpuid_t *)&p->name[0];
  279     p->name[sizeof(p->name) - 1] = 0; // Just in case. ;-)
  279     p->name[sizeof(p->name) - 1] = 0; // Just in case. ;-)
  283     p->frequency = __kmp_parse_frequency(strrchr(&p->name[0], ' '));
  283     p->frequency = __kmp_parse_frequency(strrchr(&p->name[0], ' '));