Home
last modified time | relevance | path

Searched refs:fixed (Results 1 – 14 of 14) sorted by relevance

/xnu-8792.41.9/osfmk/kern/
H A Dkext_alloc.c159 kext_alloc(vm_offset_t *_addr, vm_size_t size, boolean_t fixed) in kext_alloc() argument
163 mach_vm_offset_t addr = (fixed) ? *_addr : kext_post_boot_base; in kext_alloc()
165 mach_vm_offset_t addr = (fixed) ? *_addr : kext_alloc_base; in kext_alloc()
167 int flags = (fixed) ? VM_FLAGS_FIXED : VM_FLAGS_ANYWHERE; in kext_alloc()
H A Dkext_alloc.h40 kern_return_t kext_alloc(vm_offset_t *addr, vm_size_t size, boolean_t fixed);
/xnu-8792.41.9/doc/allocators/
H A Dapi-basics.md10 objects of fixed size.
13 allocator implemented as a collection of zones of fixed size, and overflowing to
121 #### fixed-sized types
123 The first case is fixed size types, this is typically a `struct`, `union`
138 An array is simply an allocation of several fixed-size types,
139 and the rules of "fixed-sized types" above apply to them.
148 the header becoming a fixed-sized type becoming the single owner
214 <td>Arrays of fixed-sized type</td>
242 <td>Header-prefixed arrays of fixed-sized type</td>
/xnu-8792.41.9/osfmk/mach/
H A Dstd_types.defs80 * Legacy fixed-length Mach types which should
89 * Other fixed length Mach types.
/xnu-8792.41.9/tools/cocci/
H A Dos_atomic_normalize.cocci4 // coccinelle insists on adding a space for (void) casts which can be fixed with:
H A Dhw_atomic_rewrite.cocci4 // coccinelle insists on adding a space for (void) casts which can be fixed with:
H A Dmcache_atomic_rewrite.cocci4 // coccinelle insists on adding a space for (void) casts which can be fixed with:
H A DOSAtomic_rewrite.cocci4 // coccinelle insists on adding a space for (void) casts which can be fixed with:
/xnu-8792.41.9/libkern/zlib/
H A Dinfback.c106 static code fixed[544]; in fixedtables() local
119 next = fixed; in fixedtables()
H A Dinflate.c235 static code fixed[544]; in fixedtables() local
248 next = fixed; in fixedtables()
/xnu-8792.41.9/doc/
H A Dsched_clutch_edge.md53 …se case of high priority timeshare threads contending with lower priority fixed priority threads w…
62 * Since the bucket level scheduler deals with a fixed small number of runnable buckets in the worst…
H A Ddebugging.md218 handling in the xnu macro library. Remaining code should be reviewed and fixed, if appropriate.
/xnu-8792.41.9/tests/
H A DMakefile29 OTHER_CFLAGS += -Wno-gnu-empty-initializer -Wno-unused-macros -Wno-undef -Wno-fixed-enum-extension
/xnu-8792.41.9/makedefs/
H A DMakeInc.def167 # When a new clang has new warnings disable them here until the kernel is fixed.