Searched refs:cpu (Results 1 - 25 of 103) sorted by relevance

12345

/darwin-on-arm/xnu/libkern/conf/
H A DMASTER.arm13 cpu "arm" # <intel>
H A DMASTER.arm6413 cpu "arm64"
H A DMASTER.i38613 cpu "i386" # <intel>
H A DMASTER.x86_6413 cpu "x86_64" # <intel>
/darwin-on-arm/xnu/libsa/conf/
H A DMASTER.arm13 cpu "arm" # <intel>
H A DMASTER.i38613 cpu "i386" # <intel>
H A DMASTER.x86_6413 cpu "x86_64" # <intel>
/darwin-on-arm/xnu/pexpert/conf/
H A DMASTER.arm16 cpu "arm" # <intel>
H A DMASTER.arm6416 cpu "arm64"
H A DMASTER.i38616 cpu "i386" # <intel>
H A DMASTER.x86_6416 cpu "x86_64" # <intel>
/darwin-on-arm/xnu/iokit/conf/
H A DMASTER.arm16 cpu "arm" # <intel>
H A DMASTER.arm6416 cpu "arm64" # <intel>
H A DMASTER.i38616 cpu "i386" # <intel>
H A DMASTER.x86_6416 cpu "x86_64" # <intel>
/darwin-on-arm/xnu/osfmk/i386/
H A Dcpu_threads.h40 #define cpu_to_core_lapic(cpu) (cpu_to_lapic[cpu] & ~CPU_THREAD_MASK)
41 #define cpu_to_core_cpu(cpu) (lapic_to_cpu[cpu_to_core_lapic(cpu)])
42 #define cpu_to_logical_cpu(cpu) (cpu_to_lapic[cpu] & CPU_THREAD_MASK)
43 #define cpu_is_core_cpu(cpu) (cpu_to_logical_cpu(cpu) == 0)
45 #define _cpu_to_lcpu(cpu) (&cpu_datap(cpu)
[all...]
H A Dmp_native.c38 void i386_cpu_IPI(int cpu);
42 void i386_send_NMI(int cpu);
78 i386_send_NMI(int cpu) argument
85 LAPIC_WRITE_ICR(cpu_to_lapic[cpu],
103 i386_cpu_IPI(int cpu) argument
106 if(cpu_datap(cpu)->cpu_signals & 6) { /* (BRINGUP) */
107 kprintf("i386_cpu_IPI: sending enter debugger signal (%08X) to cpu %d\n", cpu_datap(cpu)->cpu_signals, cpu);
111 lapic_send_ipi(cpu, LAPIC_VECTO
[all...]
H A Dlapic.c66 lapic_cpu_map(int apic_id, int cpu) argument
69 assert(cpu < MAX_CPUS);
70 cpu_to_lapic[cpu] = apic_id;
71 lapic_to_cpu[apic_id] = cpu;
75 * Retrieve the local apic ID a cpu.
82 ml_get_apicid(uint32_t cpu) argument
84 if(cpu >= (uint32_t)MAX_CPUS)
85 return 0xFFFFFFFF; /* Return -1 if cpu too big */
88 return (uint32_t)cpu_to_lapic[cpu];
96 return 0xFFFFFFFF; /* Return -1 if cpu to
[all...]
H A DpmCPU.h97 void (*resyncDeadlines)(int cpu);
99 x86_lcpu_t *(*GetLCPU)(int cpu);
100 x86_core_t *(*GetCore)(int cpu);
101 x86_die_t *(*GetDie)(int cpu);
102 x86_pkg_t *(*GetPackage)(int cpu);
109 boolean_t (*GetHibernate)(int cpu);
113 void (*pmSendIPI)(int cpu);
116 uint32_t (*timerQueueMigrate)(int cpu);
132 uint64_t pmCPUGetDeadline(struct cpu_data *cpu);
133 uint64_t pmCPUSetDeadline(struct cpu_data *cpu, uint64_
[all...]
/darwin-on-arm/xnu/osfmk/profiling/
H A Dprofile-kgmon.c80 #define PROFILE_VARS(cpu) (&_profile_vars)
97 int cpu; local
133 DECODE_KGMON(indx, kgmon, cpu);
136 printf("_profile_kgmon: start: kgmon control = %2d, cpu = %d, count = %ld\n",
137 kgmon, cpu, (long)count);
141 if (cpu < 0 || cpu >= max_cpus) {
143 printf("KGMON, bad cpu %d\n", cpu);
149 pv = PROFILE_VARS(cpu);
[all...]
/darwin-on-arm/xnu/security/conf/
H A DMASTER.arm13 cpu "arm" # <intel>
H A DMASTER.arm6413 cpu "arm64" # <intel>
H A DMASTER.x86_6429 cpu "x86_64" # <intel>
H A DMASTER.i38613 cpu "i386" # <intel>
/darwin-on-arm/xnu/osfmk/chud/i386/
H A Dchud_cpu_i386.c45 #pragma mark **** cpu enable/disable ****
52 kern_return_t chudxnu_enable_cpu(int cpu, boolean_t enable) argument
56 if(cpu < 0 || (unsigned int)cpu >= real_ncpus) // sanity check
59 if((cpu_data_ptr[cpu] != NULL) && cpu != master_cpu) {
60 processor_t processor = cpu_to_processor(cpu);
95 chudxnu_get_cpu_interrupt_counters(int cpu, interrupt_counters_t *rupts) argument
97 if(cpu < 0 || (unsigned int)cpu >
152 chudxnu_clear_cpu_interrupt_counters(int cpu) argument
[all...]

Completed in 44 milliseconds

12345