Home
last modified time | relevance | path

Searched defs:array (Results 1 – 25 of 109) sorted by relevance

12345

/xnu-11215/libkern/kxld/
H A Dkxld_array.c50 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 Dctor.bounded_array.cpp24 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 Dctor.C_array.cpp24 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 Dctor.nullptr.cpp19 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 Dsize.cpp22 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 Dbegin_end.cpp27 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 Dctor.default.cpp19 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 Ddata.cpp20 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 Dctor.allocate.cpp30 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 Doperator.subscript.cpp28 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 Dcompare.equal.nullptr.cpp27 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 Doperator.bool.cpp20 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 Dassign.nullptr.cpp20 tracked_safe_allocation<T> array(10, libkern::allocate_memory); in tests() local
32 tracked_safe_allocation<T> array = nullptr; in tests() local
H A Ddtor.cpp28 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 Dctor.default.cpp28 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 Ddata.cpp24 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 Dbegin_end.cpp23 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 Dctor.aggregate_init.cpp31 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 Dsize.cpp18 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 Doperator.subscript.cpp24 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 Dpbufpool_kern.c325 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 DIOCatalogue.cpp101 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 Dtask.c65 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 Dctor.begin_end.cpp27 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 Dipc_hash.c199 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()

12345