| /xnu-11215/tests/sched/ |
| H A D | yield_aggressor.c | 168 host_cpu_load_info_data_t load; in record_cpu_time() local 172 kr = host_statistics(mach_host_self(), HOST_CPU_LOAD_INFO, (int *)&load, &count); in record_cpu_time() 175 cpu_time->sys = load.cpu_ticks[CPU_STATE_SYSTEM]; in record_cpu_time() 176 cpu_time->user = load.cpu_ticks[CPU_STATE_USER] + load.cpu_ticks[CPU_STATE_NICE]; in record_cpu_time() 177 cpu_time->idle = load.cpu_ticks[CPU_STATE_IDLE]; in record_cpu_time()
|
| /xnu-11215/osfmk/kern/ |
| H A D | sched_average.c | 170 #define SCHED_LOAD_EWMA_ROUNDUP(load) (((load) & (1ul << (SCHED_LOAD_EWMA_ALPHA_SHIFT - 1))) != 0) argument 173 #define SCHED_LOAD_EWMA_UNSCALE(load) (((load) >> SCHED_LOAD_EWMA_ALPHA_SHIFT) + SCHED_LOAD_EWMA_… argument
|
| /xnu-11215/san/memory/ |
| H A D | kasan-helper.c | 92 ACCESS_CHECK_DECLARE(load, 1, TYPE_LOAD); 93 ACCESS_CHECK_DECLARE(load, 2, TYPE_LOAD); 94 ACCESS_CHECK_DECLARE(load, 4, TYPE_LOAD); 95 ACCESS_CHECK_DECLARE(load, 8, TYPE_LOAD); 96 ACCESS_CHECK_DECLARE(load, 16, TYPE_LOAD);
|
| /xnu-11215/tools/lldbmacros/tests/lldbtest/ |
| H A D | coverage.py | 51 cov.load() 73 cov.load()
|
| /xnu-11215/bsd/dev/i386/ |
| H A D | sdt_x86.c | 119 goto load; in sdt_getarg() 145 load: in sdt_getarg()
|
| H A D | dtrace_isa.c | 958 goto load; in dtrace_getarg() 984 load: in dtrace_getarg()
|
| /xnu-11215/bsd/dev/arm64/ |
| H A D | sdt_arm.c | 124 goto load; in sdt_getarg() 150 load: in sdt_getarg()
|
| H A D | dtrace_isa.c | 613 goto load; in dtrace_getarg() 639 load: in dtrace_getarg()
|
| /xnu-11215/doc/debugging/ |
| H A D | debugging.md | 159 # 2. Optionally load modified operating system plugin 346 self.load(fp) 347 File ".../site-packages/macholib/MachO.py", line 133, in load 352 self.load(fh) 355 File ".../site-packages/macholib/MachO.py", line 287, in load 393 -> self.load(fp) 394 /Users/.../Library/Python/3.8/lib/python/site-packages/macholib/MachO.py(133)load() 399 -> self.load(fh) 402 /Users/.../Library/Python/3.8/lib/python/site-packages/macholib/MachO.py(287)load() 435 > /Users/tjedlicka/Library/Python/3.8/lib/python/site-packages/macholib/MachO.py(287)load() [all …]
|
| /xnu-11215/tools/lldbmacros/ |
| H A D | .lldbinit | 2 settings set plugin.dynamic-loader.darwin-kernel.load-kexts false
|
| H A D | macho.py | 66 def load(self, fh): member in MemMachOHeader 187 self.load(file)
|
| H A D | README.md | 29 settings set target.load-script-from-symbol-file true 38 … file. If you do not know the version apriori, then enable dsymForUUID to load symbols dynamically. 44 * connect to remote device or load a core file 53 …In case if you are working with older kernel files you can load kernel specific commands by doing - 276 … to basic class or caching mechanism than it is advised to quit lldb and re-load all modules again. 304 …hence threads are not populated. Please put the line 'settings set target.load-script-from-symbol-… 307 (lldb) settings set target.load-script-from-symbol-file true 434 However, this setup makes it difficult for a lldbmacro developer to load custom/local macros. Follo…
|
| /xnu-11215/doc/scheduler/ |
| H A D | sched_clutch_edge.md | 10 …s achieved by decaying the priority of threads depending on global system load. This property coul… 95 …load & CPU usage to decay priority for a thread. The thread decay model is more suited at this lev… 99 …s in the clutch bucket group and the CPU usage of individual threads. The load information is upda… 159 * Every scheduler tick, snapshot the load for the clutch bucket 160 * Use the load value to calculate the priority shift values for all threads in the clutch bucket 166 …uler timesharing design described above. In terms of thread placement and load balancing, the Edge… 227 * Cumulative Higher QoS Load: The cumulative higher QoS load metric calculates the number of runnab… 265 …r type. If no such thread is found, then the scheduler aims to reduce the load on other clusters b… 273 …load balance cluster shared resource intensive threads across clusters in order to reduce contenti…
|
| /xnu-11215/libkern/libkern/ |
| H A D | kext_request_keys.h | 697 #pragma mark fileset load request arguments
|
| /xnu-11215/libkern/os/ |
| H A D | atomic.h | 72 #define os_atomic_basetypeof(p) decltype(os_cast_to_atomic_pointer(p)->load())
|
| /xnu-11215/tools/cocci/ |
| H A D | c11_atomic_builtin_rewrite.cocci | 25 @load@
|
| /xnu-11215/tools/tests/zero-to-n/ |
| H A D | zero-to-n.c | 965 host_cpu_load_info_data_t load; in record_cpu_time() local 967 kern_return_t kr = host_statistics(mach_host_self(), HOST_CPU_LOAD_INFO, (int *)&load, &count); in record_cpu_time() 970 natural_t total_system_time = load.cpu_ticks[CPU_STATE_SYSTEM]; in record_cpu_time() 971 natural_t total_user_time = load.cpu_ticks[CPU_STATE_USER] + load.cpu_ticks[CPU_STATE_NICE]; in record_cpu_time() 972 natural_t total_idle_time = load.cpu_ticks[CPU_STATE_IDLE]; in record_cpu_time()
|
| /xnu-11215/doc/primitives/ |
| H A D | atomics.md | 160 ### Init, load and store 167 compile to a plain load or store. `os_atomic_load_wide` and 336 The purpose of this ordering is to provide a relaxed load followed by an 405 by a *dependency* load, or any other value that has had a dependency 408 3. `os_atomic_load_with_dependency_on` to do an otherwise related relaxed load
|
| /xnu-11215/libkern/libkern/amfi/ |
| H A D | amfi.h | 220 load_t load; member
|
| /xnu-11215/tools/tests/perf_index/PerfIndex_COPS_Module/ |
| H A D | PITest.m | 81 NSLog(@"Failed to load test %@", [self testName]);
|
| /xnu-11215/libsyscall/mach/ |
| H A D | err_libkern.sub | 86 "(libkern/kext) dependency load failed", /* 0x15 */
|
| /xnu-11215/tools/tests/perf_index/ |
| H A D | README | 10 iperf will run the cpu workload on two threads with a total work load size of
|
| /xnu-11215/osfmk/tests/ |
| H A D | README.md | 16 * load kernelcache using "```usb get /patch/to/kc```"
|
| /xnu-11215/bsd/kern/ |
| H A D | tty.c | 2987 int load; in ttyinfo_locked() local 3006 load = (averunnable.ldavg[0] * 100 + FSCALE / 2) >> FSHIFT; in ttyinfo_locked() 3007 ttyprintf(tp, "load: %d.%02d ", load / 100, load % 100); in ttyinfo_locked()
|
| /xnu-11215/osfmk/mach/ |
| H A D | host_priv.defs | 348 * Active operations (load, unload, disable/enable) require host_priv/root access.
|