| /xnu-11215/libkern/kxld/ |
| H A D | kxld_array.c | 50 kxld_array_init(KXLDArray *array, size_t itemsize, u_int nitems) in kxld_array_init() 138 array_init(KXLDArray *array, size_t itemsize, u_int nitems) in array_init() 255 kxld_array_reset(KXLDArray *array) in kxld_array_reset() 270 kxld_array_clear(KXLDArray *array) in kxld_array_clear() 285 kxld_array_deinit(KXLDArray *array) in kxld_array_deinit() 301 kxld_array_get_item(const KXLDArray *array, u_int idx) in kxld_array_get_item() 328 kxld_array_get_slot(const KXLDArray *array, u_int idx) in kxld_array_get_slot() 355 kxld_array_get_index(const KXLDArray *array, const void *item, u_int *_idx) in kxld_array_get_index() 393 kxld_array_resize(KXLDArray *array, u_int nitems) in kxld_array_resize() 424 reinit_pools(KXLDArray *array, u_int nitems) in reinit_pools() [all …]
|
| /xnu-11215/tests/bounded_array_ref_src/ |
| H A D | ctor.bounded_array.cpp | 24 test_bounded_array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests() local 36 test_bounded_array<T, 1> array = {T{11}}; in tests() local 44 test_bounded_array<T, 0> array = {}; in tests() local 52 test_bounded_array<T, 1> array = {T{11}}; in tests() local 58 test_bounded_array<T, 1> array = {T{11}}; in tests() local
|
| H A D | ctor.C_array.cpp | 24 T array[5] = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests() local 36 T array[1] = {T{11}}; in tests() local 45 T array[1] = {T{11}}; in tests() local 51 T array[1] = {T{11}}; in tests() local
|
| /xnu-11215/tests/safe_allocation_src/ |
| H A D | ctor.nullptr.cpp | 19 test_safe_allocation<T> array(nullptr); in tests() local 25 test_safe_allocation<T> array{nullptr}; in tests() local 31 test_safe_allocation<T> array = nullptr; in tests() local 37 auto f = [](test_safe_allocation<T> array) { in tests()
|
| H A D | size.cpp | 22 test_safe_allocation<T> const array(10, libkern::allocate_memory); in tests() local 27 test_safe_allocation<T> const array(memory, 10, libkern::adopt_memory); in tests() local 31 test_safe_allocation<T> const array(nullptr, 0, libkern::adopt_memory); in tests() local 35 test_safe_allocation<T> const array; in tests() local
|
| H A D | begin_end.cpp | 27 A array(10, libkern::allocate_memory); in tests() local 35 A const array(10, libkern::allocate_memory); in tests() local 45 A array = nullptr; in tests() local 53 A const array = nullptr; in tests() local
|
| H A D | ctor.default.cpp | 19 test_safe_allocation<T> array; in tests() local 25 test_safe_allocation<T> array{}; in tests() local 31 test_safe_allocation<T> array = test_safe_allocation<T>(); in tests() local
|
| H A D | data.cpp | 20 test_safe_allocation<T> array(10, libkern::allocate_memory); in tests() local 25 test_safe_allocation<T> array(memory, 10, libkern::adopt_memory); in tests() local 31 test_safe_allocation<T> const array(memory, 10, libkern::adopt_memory); in tests() local
|
| H A D | ctor.allocate.cpp | 30 tracked_safe_allocation<T> array(10, libkern::allocate_memory); in tests() local 46 tracked_safe_allocation<T> array(max_n + 1, libkern::allocate_memory); in tests() local 62 tracked_safe_allocation<TrackInit> array(10, libkern::allocate_memory); variable
|
| H A D | operator.subscript.cpp | 28 test_safe_allocation<QualT> array(memory, 10, libkern::adopt_memory); in tests() local 42 test_safe_allocation<QualT> const array(memory, 10, libkern::adopt_memory); in tests() local 53 Alloc const array(memory, 10, libkern::adopt_memory); in tests() local
|
| H A D | compare.equal.nullptr.cpp | 27 test_safe_allocation<T> const array(10, libkern::allocate_memory); in tests() local 34 test_safe_allocation<T> const array = nullptr; in tests() local
|
| H A D | operator.bool.cpp | 20 test_safe_allocation<T> const array(10, libkern::allocate_memory); in tests() local 28 test_safe_allocation<T> const array = nullptr; in tests() local
|
| H A D | assign.nullptr.cpp | 20 tracked_safe_allocation<T> array(10, libkern::allocate_memory); in tests() local 32 tracked_safe_allocation<T> array = nullptr; in tests() local
|
| H A D | dtor.cpp | 28 tracked_safe_allocation<T> array(10, libkern::allocate_memory); in tests() local 37 tracked_safe_allocation<T> array = nullptr; in tests() local
|
| /xnu-11215/tests/bounded_array_src/ |
| H A D | ctor.default.cpp | 28 test_bounded_array<T, 10> array; in tests() local 36 test_bounded_array<T, 10> array{}; in tests() local 44 test_bounded_array<T, 10> array = {}; in tests() local 52 test_bounded_array<T, 10> array = test_bounded_array<T, 10>(); in tests() local 62 test_bounded_array<T, 0> array; in tests() local
|
| H A D | data.cpp | 24 test_bounded_array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests() local 34 test_bounded_array<T, 5> const array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests() local 45 test_bounded_array<T, 0> array = {}; in tests() local 50 test_bounded_array<T, 0> const array = {}; in tests() local
|
| H A D | begin_end.cpp | 23 test_bounded_array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests() local 30 test_bounded_array<T, 5> const array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests() local 39 test_bounded_array<T, 0> array = {}; in tests() local 46 test_bounded_array<T, 0> const array = {}; in tests() local
|
| H A D | ctor.aggregate_init.cpp | 31 test_bounded_array<T, 5> array = {T(1), T(2), T(3), T(4), T(5)}; in tests() local 41 test_bounded_array<T, 5> array{T(1), T(2), T(3), T(4), T(5)}; in tests() local 52 test_bounded_array<T, 0> array = {}; in tests() local
|
| H A D | size.cpp | 18 test_bounded_array<T, 5> const array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests() local 23 test_bounded_array<T, 0> const array = {}; in tests() local
|
| H A D | operator.subscript.cpp | 24 test_bounded_array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests() local 39 test_bounded_array<T, 5> const array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests() local
|
| /xnu-11215/bsd/skywalk/packet/ |
| H A D | pbufpool_kern.c | 325 const uint32_t bufcnt, kern_packet_t *__counted_by(*size)array, in kern_pbufpool_alloc_batch_common() 344 kern_packet_t *__counted_by(*size)array, uint32_t *size) in kern_pbufpool_alloc_batch() 352 const uint32_t bufcnt, kern_packet_t *__counted_by(*size)array, in kern_pbufpool_alloc_batch_callback() 361 const uint32_t bufcnt, kern_packet_t *__counted_by(*size)array, in kern_pbufpool_alloc_batch_nosleep() 370 const uint32_t bufcnt, kern_packet_t *__counted_by(*size)array, in kern_pbufpool_alloc_batch_nosleep_callback() 385 kern_packet_t *__counted_by(size)array, uint32_t size) in kern_pbufpool_free_batch()
|
| /xnu-11215/iokit/Kernel/ |
| H A D | IOCatalogue.cpp | 101 OSSharedPtr<OSArray> array; in initialize() local 221 OSArray * array; in findDrivers() local 265 OSArray * array; in findDrivers() local 336 OSArray *array = (OSArray *) personalities->getObject(key); in exchangeDrivers() local 358 OSArray * array = arrayForPersonality(personality); in exchangeDrivers() local 459 OSArray * array = arrayForPersonality(personality); in addDrivers() local 510 OSArray * array; variable 808 OSArray * array; in _removeDrivers() local 1215 OSArray * array; in resetAndAddDrivers() local
|
| /xnu-11215/libsyscall/mach/ |
| H A D | task.c | 65 mach_port_t array[TASK_PORT_REGISTER_MAX] = { }; in mach_ports_register() local 87 mach_port_array_t array; in mach_ports_lookup() local
|
| /xnu-11215/tests/bounded_ptr_src/ |
| H A D | ctor.begin_end.cpp | 27 std::array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests() local 94 std::array<Derived, 5> array = {}; variable
|
| /xnu-11215/osfmk/ipc/ |
| H A D | ipc_hash.c | 199 ipc_entry_table_t array, in ipc_hash_table_lookup() 271 ipc_entry_table_t array, in ipc_hash_table_insert() 329 ipc_entry_table_t array, in ipc_hash_table_delete()
|