Lines Matching refs:ptr
34 test_bounded_ptr<T> ptr(&array[0], begin, end); in tests() local
35 test_bounded_array_ref<T> view(ptr, 5); in tests()
51 test_bounded_ptr<T> ptr(&array[0], begin, end); in tests() local
52 test_bounded_array_ref<T> view(ptr, 3); in tests()
66 test_bounded_ptr<T> ptr(&array[3], begin, end); in tests() local
67 test_bounded_array_ref<T> view(ptr, 2); in tests()
75 test_bounded_ptr<T> ptr(&array[0], begin, end); in tests() local
76 test_bounded_array_ref<T> view(ptr, 0); in tests()
81 test_bounded_ptr<T> ptr = nullptr; in tests() local
82 test_bounded_array_ref<T> view(ptr, 0); in tests()
87 test_bounded_ptr<T> ptr(end, begin, end); in tests() local
88 test_bounded_array_ref<T> view(ptr, 0); in tests()
93 test_bounded_ptr<T> ptr(begin, begin, end); in tests() local
95 test_bounded_array_ref<T> view(ptr, size); in tests()