Home
last modified time | relevance | path

Searched refs:bound (Results 1 – 19 of 19) sorted by relevance

/xnu-11215/bsd/conf/
H A Dfiles164 bsd/net/net_stubs.c standard bound-checks
176 bsd/net/if_loop.c optional loop bound-checks
178 bsd/net/if_vlan.c optional vlan bound-checks
211 bsd/net/pf.c optional pf bound-checks
212 bsd/net/pf_if.c optional pf bound-checks
213 bsd/net/pf_ioctl.c optional pf bound-checks
214 bsd/net/pf_norm.c optional pf bound-checks
215 bsd/net/pf_osfp.c optional pf bound-checks
216 bsd/net/pf_pbuf.c optional pf bound-checks
218 bsd/net/pf_table.c optional pf bound-checks
[all …]
/xnu-11215/doc/building/
H A Dbound_checks.md70 failing bound checks panic.
72 # The process of enabling bound-checks
89 For this step, you use `bound-checks-debug`. `bound-checks-debug` enables the
100 file to build with `bound-checks-pending`;
101 * one pull request that changes `bound-checks-pending` to `bound-checks-soft`.
106 ### Where bound-checks-pending comes in
127 ### Where bound-checks-soft comes in
152 ### Where bound-checks-seed comes in
156 (e.g. during seeding), use `bound-checks-seed`.
162 ## Step 3: enable bound-checks
[all …]
H A Dxnu_build_consolidation.md117 following macros have been added to provide a reasonably close upper bound:
/xnu-11215/libkern/libkern/crypto/
H A Drand.h50 uint64_t bound,
78 uint64_t bound,
/xnu-11215/bsd/sys/
H A Dvsock_domain.h40 LIST_ENTRY(vsockpcb) bound;
63 LIST_HEAD(, vsockpcb) bound;
/xnu-11215/libkern/crypto/
H A Dcorecrypto_rand.c67 uint64_t bound, in crypto_random_uniform() argument
70 g_crypto_funcs->random_uniform_fn(ctx, bound, random); in crypto_random_uniform()
/xnu-11215/bsd/kern/
H A Dvsock_domain.c75 LIST_FOREACH(pcb, &vsockinfo.bound, bound) { in vsock_get_matching_pcb()
116 LIST_FOREACH(pcb_match, &vsockinfo.bound, bound) { in vsock_bind_address_if_free()
132 LIST_INSERT_HEAD(&vsockinfo.bound, pcb, bound); in vsock_bind_address_if_free()
226 assert(pcb->bound.le_next == NULL); in vsock_unbind_pcb_locked()
227 assert(pcb->bound.le_prev == NULL); in vsock_unbind_pcb_locked()
237 if (!pcb->bound.le_prev) { in vsock_unbind_pcb_locked()
246 LIST_REMOVE(pcb, bound); in vsock_unbind_pcb_locked()
247 pcb->bound.le_next = NULL; in vsock_unbind_pcb_locked()
248 pcb->bound.le_prev = NULL; in vsock_unbind_pcb_locked()
654 LIST_FOREACH_SAFE(pcb, &vsockinfo.bound, bound, tmp_pcb) { in vsock_reset_transport()
[all …]
/xnu-11215/EXTERNAL_HEADERS/corecrypto/
H A Dccrng.h73 int ccrng_uniform(struct ccrng_state *rng, uint64_t bound, uint64_t *rand);
/xnu-11215/osfmk/x86_64/
H A Dloose_ends.c799 addr64_t bound = (pa + count + linesize - 1) & ~(linesize - 1); in dcache_incoherent_io_store64() local
803 while (pa < bound) { in dcache_incoherent_io_store64()
824 addr64_t bound = (addr + count + linesize - 1) & ~(linesize - 1); in flush_dcache64() local
826 while (addr < bound) { in flush_dcache64()
/xnu-11215/tests/sched/
H A Dclutch_runqueue.c41 …test_thread_t bound = create_thread(TH_BUCKET_SHARE_DF, low_tg, root_bucket_to_highest_pri[TH_BUCK… variable
42 set_thread_processor_bound(bound);
47 …enqueue_threads_rand_order(rand_seeds[i], 4, bound, higherpri_unbound, interactive_higherpri_unbou…
48 …ret = dequeue_threads_expect_ordered(4, interactive_higherpri_unbound, bound, interactive_lowerpri…
/xnu-11215/osfmk/prng/
H A Dentropy.c337 add_observation(entropy_health_test_t *t, uint64_t bound) in add_observation() argument
341 if (__improbable(t->observation_count >= bound)) { in add_observation()
/xnu-11215/iokit/Tests/
H A DTests.cpp760 uLong bound; in TestZLib() local
772 bound = deflateBound(&strm, count); in TestZLib()
773 buf = IONew(uint8_t, bound); in TestZLib()
775 strm.avail_out = (uInt) bound; in TestZLib()
782 IODelete(buf, uint8_t, bound); in TestZLib()
/xnu-11215/osfmk/conf/
H A Dfiles172 osfmk/kern/page_decrypt.c standard bound-checks
216 osfmk/kern/zalloc_bounds.c standard bound-checks
H A DMakefile.template104 vla-bound
/xnu-11215/osfmk/ipc/
H A Dmach_port.c255 ipc_entry_num_t bound; in mach_port_names() local
269 bound = ipc_entry_table_count(is_active_table(space)); in mach_port_names()
271 (bound * sizeof(mach_port_name_t)), in mach_port_names()
/xnu-11215/doc/primitives/
H A Dstring-handling.md63 _generally_ safe, but `strncmp` can cause confusion over which string is bound
/xnu-11215/makedefs/
H A DMakeInc.def394 # bound-checking support
587 UBSAN_CHECKS_TRAP = vla-bound builtin # emit a trap instruction (no runtim…
/xnu-11215/
H A DAPPLE_LICENSE5 By downloading or using this software, you are agreeing to be bound by
/xnu-11215/doc/scheduler/
H A Dsched_clutch_edge.md112 The per-bucket thread quantum allows the scheduler to bound the worst case execution latency for a …