Home
last modified time | relevance | path

Searched refs:lower (Results 1 – 15 of 15) sorted by relevance

/xnu-11215/osfmk/vm/
H A Danalytics.c137 uint64_t lower; member
161 {.count = 0, .lower = HR_TO_S(0), .upper = HR_TO_S(1)}, /* [0, 1) hours */ in report_compressor_age()
162 {.count = 0, .lower = HR_TO_S(1), .upper = HR_TO_S(6)}, /* [1, 6) hours */ in report_compressor_age()
163 {.count = 0, .lower = HR_TO_S(6), .upper = HR_TO_S(12)}, /* [6, 12) hours */ in report_compressor_age()
164 {.count = 0, .lower = HR_TO_S(12), .upper = HR_TO_S(24)}, /* [12, 24) hours */ in report_compressor_age()
165 {.count = 0, .lower = HR_TO_S(24), .upper = HR_TO_S(36)}, /* [24, 36) hours */ in report_compressor_age()
166 {.count = 0, .lower = HR_TO_S(36), .upper = HR_TO_S(48)}, /* [36, 48) hours */ in report_compressor_age()
167 {.count = 0, .lower = HR_TO_S(48), .upper = C_REPORTING_BUCKETS_MAX}, /* [48, MAX) hours */ in report_compressor_age()
181 if ((age >= c_buckets[b].lower) && in report_compressor_age()
/xnu-11215/pexpert/gen/
H A Dbootargs.c45 boolean_t get_range_bounds(char * c, int64_t * lower, int64_t * upper);
556 get_range_bounds(char *c, int64_t *lower, int64_t *upper) in get_range_bounds() argument
558 if (c == NULL || lower == NULL || upper == NULL) { in get_range_bounds()
562 if (NUM != getval(c, lower, israngesep, TRUE)) { in get_range_bounds()
/xnu-11215/tools/lldbmacros/
H A Dkext.py437 if k.uuid.lower() == uuid_str.lower():
538 kernel_uuid = str(kern.globals.kernel_uuid_string).lower()
545 cur_uuid = sum.uuid.lower()
602 uuid = cmd_args[0].lower()
H A Dutils.py62 process_plugin_name = LazyTarget.GetProcess().GetPluginName().lower()
114 searchstr = searchstr.lower()
119 so = o.lower()
H A Dxnu.py718 subcommand = subcommand[0].lower()
720 if command_args[-1].lower().find('dis') >=0 and config['debug']:
723 elif command_args[-1].lower().find('dis') < 0 and not config['debug']:
1241 if len(cmd_args) > 0 and cmd_args[0].lower().find('disable') >=0:
H A Dkcdata.py1539 if '0x' in address.lower():
2597 if 'uuid' in key.lower() and len(data) == 16:
2615 elif 'address' in key.lower() and isinstance(data, (int, long)):
H A Dpmap.py728 requested_type = requested_type.lower()
/xnu-11215/doc/scheduler/
H A Dsched_clutch_edge.md7 … interactions, multimedia recording/playback) to starvation avoidance for lower priority batch wor…
10 …stem load. This property could lead to a burst of activity at the same or lower priority band caus…
41 …behind the lower buckets in deadline order. Now, if a small burst of user-critical workload shows …
53 …rp window the scheduler would continue to select this warping bucket over lower priority buckets. …
55 …upporting the use case of high priority timeshare threads contending with lower priority fixed pri…
57 … window ensures that starved root buckets get a fair shot at draining the lower QoS threads even d…
150 * Else, assign a score (interactivity_score) in the lower range.
192 …n point for thread placement. If the preferred cluster is idle or running lower QoS workloads, the…
198 … sched\_clutch\_bucket_group. If the preferred cluster is idle or running lower QoS workloads, the…
/xnu-11215/doc/arm/
H A Dsme.md49 file will now access the lower 128 bits of the corresponding `Z` register.
56 can further reduce SVL for itself and lower exception levels.
170 build on lower-level routines to save and load SME register state, located in
/xnu-11215/tools/lldbmacros/usertaskdebugging/
H A Duserprocess.py127 if str(kern.arch).lower().startswith('arm'):
/xnu-11215/tools/lldbmacros/core/
H A Doperating_system.py701 plugin_string = self.process.GetPluginName().lower()
708 arch = triple.split('-')[0].lower()
/xnu-11215/iokit/DriverKit/
H A DIOService.iig251 * @discussion A driver may allow a device to enter a lower power state.
332 * @discussion When the system enters lower power states DMA access to memory may be affected.
/xnu-11215/makedefs/
H A DMakeInc.top116 # Parameters may be in upper or lower case (they are converted to upper).
167 # $(1) is a product name in lower case
/xnu-11215/osfmk/tests/
H A Dkernel_tests.c58 extern boolean_t get_range_bounds(char * c, int64_t * lower, int64_t * upper);
/xnu-11215/bsd/dev/dtrace/
H A Ddtrace.c5573 char lower, upper, base, c; in dtrace_dif_subr() local
5578 lower = (subr == DIF_SUBR_TOUPPER) ? 'a' : 'A'; in dtrace_dif_subr()
5596 if (c >= lower && c <= upper) in dtrace_dif_subr()
5597 c = base + (c - lower); in dtrace_dif_subr()