| /xnu-11215/tests/ |
| H A D | restartable_ranges.c | 20 static int step = 0; variable 132 for (int i = 0; step != which && i < 10; i++) { in wait_for_step() 154 rc = pthread_create(&th, NULL, &task_restartable_ranges_thread, &step); 158 T_ASSERT_EQ(step, 1, "The thread started (sync)"); 165 T_ASSERT_EQ(step, 2, "The thread exited (sync)"); 174 T_ASSERT_EQ(step, 3, "The thread started (signal)"); 181 T_ASSERT_EQ(step, 4, "The thread exited (signal)"); 251 long step = 16 << 10; 254 for (syncs = 1; syncs <= count * step; syncs++) { 271 if (syncs % step == 0) { [all …]
|
| /xnu-11215/bsd/netinet/ |
| H A D | in_var.h | 512 #define IN_NEXT_MULTI(step, inm) \ argument 517 if (((inm) = (step).i_inm) != NULL) \ 518 (step).i_inm = LIST_NEXT((step).i_inm, inm_link); \ 521 #define IN_FIRST_MULTI(step, inm) \ argument 526 (step).i_inm = LIST_FIRST(&in_multihead); \ 527 IN_NEXT_MULTI((step), (inm)); \
|
| H A D | igmp.c | 902 IN_FIRST_MULTI(step, inm); in igmp_input_v1_query() 929 IN_NEXT_MULTI(step, inm); in igmp_input_v1_query() 999 struct in_multistep step; in igmp_input_v2_query() local 1008 IN_FIRST_MULTI(step, inm); in igmp_input_v2_query() 1015 IN_NEXT_MULTI(step, inm); in igmp_input_v2_query() 2021 struct in_multistep step; in igmp_timeout() local 2030 IN_FIRST_MULTI(step, inm); in igmp_timeout() 2526 IN_FIRST_MULTI(step, inm); in igmp_v3_cancel_link_timers() 2580 IN_NEXT_MULTI(step, inm); in igmp_v3_cancel_link_timers() 3955 IN_FIRST_MULTI(step, inm); in igmp_v3_dispatch_general_query() [all …]
|
| H A D | in_mcast.c | 3209 struct in_multistep step; variable 3244 IN_FIRST_MULTI(step, inm); 3284 IN_NEXT_MULTI(step, inm);
|
| /xnu-11215/osfmk/kern/ |
| H A D | test_lock.c | 257 for (int step = 0; step < ARRAY_COUNT(progression); step++) { in smr_hash_basic_test() local 258 if (progression[step]) { in smr_hash_basic_test() 439 const uint64_t step = NSEC_PER_SEC / 4; in smr_sleepable_stress_worker() local 453 if (delta >= (last + 1) * step) { in smr_sleepable_stress_worker() 454 last = delta / step; in smr_sleepable_stress_worker()
|
| H A D | exclaves_xnuproxy.c | 463 #define exclaves_xnuproxy_endpoint_call_show_progress(operation, step, \ argument 466 "exclaves: xnu proxy endpoint " #operation " " #step ":\t" \
|
| H A D | kalloc.c | 216 uint32_t step = KHEAP_STEP_START; in kalloc_zsize_compute() local 232 kheap_zsize[step_idx] = K_SIZE_CLASS(size + step); in kalloc_zsize_compute() 233 kheap_zsize[step_idx + 1] = K_SIZE_CLASS(size + 2 * step); in kalloc_zsize_compute() 235 step *= 2; in kalloc_zsize_compute() 236 size += step; in kalloc_zsize_compute() 2174 vm_size_t step, size_class; in kalloc_next_good_size() local 2184 step = 1ul << (scale - 1); in kalloc_next_good_size() 2186 step = round_page(1ul << (scale - kalloc_log2down(period))); in kalloc_next_good_size() 2189 size_class = (size + step) & -step; in kalloc_next_good_size()
|
| /xnu-11215/bsd/dev/arm64/ |
| H A D | dtrace_subr_arm.c | 69 uint8_t step = uthread->t_dtrace_step; in dtrace_user_probe() local 89 if (step == 0) { in dtrace_user_probe()
|
| /xnu-11215/bsd/dev/i386/ |
| H A D | dtrace_subr_x86.c | 88 uint8_t step = uthread->t_dtrace_step; in dtrace_user_probe() local 108 if (step == 0) { in dtrace_user_probe()
|
| /xnu-11215/tools/ |
| H A D | format_vm_parameter_validation.py | 268 step = 1 270 count = round(len(results) / step) 271 for i in range(0, len(results), step): 274 count = round(i / step) 276 step *= count
|
| /xnu-11215/bsd/netinet6/ |
| H A D | in6_var.h | 1137 #define IN6_NEXT_MULTI(step, in6m) \ argument 1142 if (((in6m) = (step).i_in6m) != NULL) \ 1143 (step).i_in6m = (step).i_in6m->in6m_entry.le_next; \ 1146 #define IN6_FIRST_MULTI(step, in6m) \ argument 1151 (step).i_in6m = in6_multihead.lh_first; \ 1152 IN6_NEXT_MULTI((step), (in6m)); \
|
| H A D | mld6.c | 917 struct in6_multistep step; in mld_v1_input_query() local 926 IN6_FIRST_MULTI(step, inm); in mld_v1_input_query() 933 IN6_NEXT_MULTI(step, inm); in mld_v1_input_query() 1747 struct in6_multistep step; in mld_timeout() local 1760 IN6_FIRST_MULTI(step, inm); in mld_timeout() 1781 IN6_NEXT_MULTI(step, inm); in mld_timeout() 2211 struct in6_multistep step; in mld_v2_cancel_link_timers() local 2233 IN6_FIRST_MULTI(step, inm); in mld_v2_cancel_link_timers() 2284 IN6_NEXT_MULTI(step, inm); in mld_v2_cancel_link_timers() 3617 IN6_FIRST_MULTI(step, inm); in mld_v2_dispatch_general_query() [all …]
|
| H A D | in6_mcast.c | 3105 struct in6_multistep step; variable 3144 IN6_FIRST_MULTI(step, inm); 3180 IN6_NEXT_MULTI(step, inm);
|
| /xnu-11215/tools/lldbmacros/ |
| H A D | kasan.py | 87 def iterator(self, addr, count, step=1): argument 91 step *= self.granule_size 94 if step > 0 else -count, step)) 96 def dropwhile(self, drop_cond, addr, count, step=1): argument 101 return itertools.dropwhile(drop_cond, self.iterator(addr, count, step))
|
| H A D | README.md | 160 Following is a step by step guideline on how to add a new command ( e.g showtaskvme ). [extra tip: …
|
| /xnu-11215/doc/primitives/ |
| H A D | sched_cond.md | 84 One may note that the adoption of `sched_cond_*` involves adding an additional step (ack) to the co… 85 step is critical for two reasons.
|
| /xnu-11215/tests/ktrace/ |
| H A D | kdebug_tests.c | 1430 unsigned int step = ((maxevents - minevents - 1) / 4); variable 1431 T_ASSERT_GT(step, 0, "stepping by %#x events (%#x MiB)", step, 1432 _mb_of_events(step)); 1434 for (unsigned int i = minevents + step; i < maxevents; i += step) {
|
| /xnu-11215/tools/lldbmacros/core/ |
| H A D | cvalue.py | 126 if key.step is not None: 127 _step = int(key.step)
|
| H A D | lldbwrap.py | 865 def xIterSiblings(self, start, stop, step=1): argument 893 for i in range(start, stop, step)
|
| /xnu-11215/doc/building/ |
| H A D | bound_checks.md | 85 to fail at runtime. The first step to adopting -fbounds-safety is making code 89 For this step, you use `bound-checks-debug`. `bound-checks-debug` enables the
|
| /xnu-11215/bsd/man/man2/ |
| H A D | getdirentriesattr.2 | 131 overall length of the group, you can step from one group to the next 197 to return the directory entries from disk rather than taking the extra step of looking
|
| /xnu-11215/doc/debugging/ |
| H A D | debugging.md | 172 This is simpler than previous step because the goal is to ensure behavior has not changed. 383 You can now single step or continue the execution as usuall for a debugger.
|
| /xnu-11215/bsd/skywalk/nexus/flowswitch/ |
| H A D | fsw_dp.c | 431 _fsw_error35_handler(int step, struct flow_route *fr, struct __kern_packet *pkt, in _fsw_error35_handler() argument 436 switch (step) { in _fsw_error35_handler() 466 _fsw_error36_handler(int step, struct flow_route *fr, int *ret) in _fsw_error36_handler() argument 470 switch (step) { in _fsw_error36_handler()
|
| /xnu-11215/doc/vm/ |
| H A D | memorystatus.md | 65 1. Go back to step 1 until the system is healthy and the thread can block.
|
| H A D | sanitize.md | 87 There is a complication in step #7: how do the error compat and
|