Lines Matching refs:ptr
32 T* ptr = &array[0]; in tests() local
33 test_bounded_array_ref<T> view(ptr, 5); in tests()
49 T* ptr = &array[0]; in tests() local
50 test_bounded_array_ref<T> view(ptr, 3); in tests()
64 T* ptr = &array[3]; in tests() local
65 test_bounded_array_ref<T> view(ptr, 2); in tests()
73 T* ptr = &array[0]; in tests() local
74 test_bounded_array_ref<T> view(ptr, static_cast<std::size_t>(0)); in tests()
79 T* ptr = nullptr; in tests() local
80 test_bounded_array_ref<T> view(ptr, static_cast<std::size_t>(0)); in tests()
85 T* ptr = &array[5]; in tests() local
86 test_bounded_array_ref<T> view(ptr, static_cast<std::size_t>(0)); in tests()
91 T* ptr = &array[0]; in tests() local
93 test_bounded_array_ref<T> view(ptr, size); in tests()