Searched defs:bounded_array_ref (Results 1 – 3 of 3) sorted by relevance
| /xnu-11215/libkern/libkern/c++/ |
| H A D | bounded_array_ref.h | 65 struct bounded_array_ref { struct 70 explicit constexpr bounded_array_ref() noexcept : data_(nullptr), size_(0) in bounded_array_ref() function 80 explicit constexpr bounded_array_ref(bounded_ptr<T, TrappingPolicy> data, size_t n) in bounded_array_ref() argument 97 …explicit constexpr bounded_array_ref(T* data, size_t n) : data_(data), size_(static_cast<uint32_t>… in bounded_array_ref() argument 110 …explicit constexpr bounded_array_ref(T* first, T* last) : data_(first), size_(static_cast<uint32_t… in bounded_array_ref() function 125 …constexpr bounded_array_ref(bounded_array<T, N, TrappingPolicy>& data) : data_(data.data()), size_… in bounded_array_ref() function 137 constexpr bounded_array_ref(T (&array)[N]) : data_(array), size_(static_cast<uint32_t>(N)) in bounded_array_ref() argument 168 // objects inside a `bounded_array_ref`. argument 193 // `bounded_array_ref`. argument 212 // `bounded_array_ref`. argument [all …]
|
| /xnu-11215/iokit/DriverKit/ |
| H A D | bounded_array_ref.h | 65 struct bounded_array_ref { struct 70 explicit constexpr bounded_array_ref() noexcept : data_(nullptr), size_(0) in bounded_array_ref() function 80 explicit constexpr bounded_array_ref(bounded_ptr<T, TrappingPolicy> data, size_t n) in bounded_array_ref() function 97 …explicit constexpr bounded_array_ref(T* data, size_t n) : data_(data), size_(static_cast<uint32_t>… in bounded_array_ref() function 110 …explicit constexpr bounded_array_ref(T* first, T* last) : data_(first), size_(static_cast<uint32_t… in bounded_array_ref() argument 125 …constexpr bounded_array_ref(bounded_array<T, N, TrappingPolicy>& data) : data_(data.data()), size_… in bounded_array_ref() function 137 constexpr bounded_array_ref(T (&array)[N]) : data_(array), size_(static_cast<uint32_t>(N)) in bounded_array_ref() function 168 // objects inside a `bounded_array_ref`. argument 193 // `bounded_array_ref`. argument 212 // `bounded_array_ref`. argument [all …]
|
| /xnu-11215/tests/ |
| H A D | Makefile | 664 bounded_array_ref: OTHER_CXXFLAGS += -Werror=implicit-int-conversion -Werror=shorten-64-to-32 -I$(S… target 665 bounded_array_ref: $(wildcard bounded_array_ref_src/*.cpp) bounded_array_ref.cpp target
|