/llvm-project/libcxx/test/std/containers/views/views.span/span.cons/ |
H A D | span.pass.cpp | 31 std::span<T> span{from}; in check() local 39 std::span<T> span{from}; in check() local 50 std::span<T, 0> span{from}; in check() local 59 std::span<T, 3> span{from}; in check() local 70 std::span<T> span{from}; in check() local 79 std::span<T> span{from}; in check() local
|
/llvm-project/libc/src/__support/CPP/ |
H A D | span.h | 53 LIBC_INLINE constexpr span() : span_data(nullptr), span_size(0) {} in span() function 51 LIBC_INLINE constexpr span() : span_data(nullptr), span_size(0) {} span() function 56 LIBC_INLINE constexpr span(pointer first, pointer end) span() function 61 LIBC_INLINE constexpr span(U (&arr)[N]) : span_data(arr), span_size(N) {} span() function 65 LIBC_INLINE constexpr span(array<U, N> &arr) span() function 69 LIBC_INLINE constexpr span(span<U> &s) span() function [all...] |
/llvm-project/clang/test/SemaCXX/ |
H A D | warn-unsafe-buffer-usage-in-container-span-construct.cpp | 4 template <class T> class span { class 6 constexpr span(T *, unsigned){} in span() function in std::span 9 constexpr span(Begin first, End last){} in span() function in std::span 13 constexpr span() {}; in span() function in std::span 15 constexpr span(const std::span<T> &span) {}; in span() argument 18 constexpr span(R && range){}; in span() function in std::span [all...] |
H A D | warn-unsafe-buffer-usage-warning-data-invocation.cpp | 33 template <typename T> class span { class 37 span(T *, unsigned){} in span() function in std::span [all...] |
/llvm-project/libcxx/test/libcxx/containers/views/views.span/ |
H A D | assert.iterator-indexing.pass.cpp | 148 std::span<Foo> const span(array, 3); in main() local 155 std::span<Foo, 3> const span(array, 3); in main() local 162 std::span<Foo> const span(array, 3); in main() local 169 std::span<Foo, 3> const span(array, 3); in main() local
|
/llvm-project/compiler-rt/lib/orc/ |
H A D | adt.h | 43 constexpr span(T *first, size_type count) noexcept in span() function 47 constexpr span(T (&arr)[N]) noexcept : Data(&arr[0]), Size(N) {} in span() function
|
/llvm-project/libcxx/include/__fwd/ |
H A D | span.h | 30 class span; variable
|
/llvm-project/llvm/lib/Support/rpmalloc/ |
H A D | rpmalloc.c | 643 span_t *span[MAX_THREAD_SPAN_CACHE]; member 649 span_t *span[MAX_THREAD_SPAN_LARGE_CACHE]; member 746 span_t *span[GLOBAL_CACHE_MULTIPLIER * MAX_THREAD_SPAN_CACHE]; member 1187 span_t *span = _memory_global_reserve; local 1215 static void _rpmalloc_span_double_link_list_add(span_t **head, span_t *span) { 1224 span_t *span) { 1232 span_t *span) { 1281 span_t *span = heap->span_reserve; local 1308 static void _rpmalloc_span_initialize(span_t *span, size_t total_span_count, 1328 span_t *span = (span_t *)_rpmalloc_mmap( local [all …]
|
/llvm-project/libcxx/include/__iterator/ |
H A D | wrap_iter.h | 105 friend class _LIBCPP_TEMPLATE_VIS span; global() variable
|
/llvm-project/openmp/runtime/src/ |
H A D | kmp_sched.cpp | 362 ST span; in __kmp_for_static_init() local 392 UT span = (trip_count + nth - 1) / nth; in __kmp_for_static_init() local 692 ST span; in __kmp_dist_for_static_init() local 769 ST span; in __kmp_team_static_init() local
|
H A D | kmp_dispatch.cpp | 1904 UT span; in __kmp_dispatch_next_algorithm() local
|
/llvm-project/libc/test/src/string/memory_utils/ |
H A D | memory_check_utils.h | 51 cpp::span<char> span() { return cpp::span<char>(offset_ptr, size); } span() function [all...] |
H A D | op_tests.cpp | 63 as_byte(cpp::span<char> span) as_byte() argument [all...] |
/llvm-project/llvm/docs/_ocamldoc/ |
H A D | style.css | 4 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre, selector
|
/llvm-project/offload/DeviceRTL/src/ |
H A D | Workshare.cpp | 149 T span = (tripCount + numberOfActiveOMPThreads - 1) / in for_static_init() local 295 T span = (tripCount + tnum - 1) / tnum; in dispatch_init() local
|
/llvm-project/flang/lib/Evaluate/ |
H A D | shape.cpp | 171 ExtentExpr span{ ComputeTripCount() local
|