Lines Matching refs:a
59 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests() local
61 check_eq(a, b); in tests()
64 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests() local
66 check_ne(a, b); in tests()
69 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests() local
71 check_ne(a, b); in tests()
74 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests() local
76 check_ne(a, b); in tests()
79 test_bounded_ptr<TQual> const a(array.end(), array.begin(), array.end()); in tests() local
81 check_eq(a, b); in tests()
86 test_bounded_ptr<TQual> const a; in tests() local
88 check_ne(a, b); in tests()
91 test_bounded_ptr<TQual> const a; in tests() local
93 check_eq(a, b); in tests()
99 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests() local
101 check_eq(a, b); in tests()
105 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests() local
107 check_ne(a, b); in tests()
111 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.begin() + 1); in tests() local
113 check_eq(a, b); in tests()
117 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.begin() + 1); in tests() local
119 check_ne(a, b); in tests()
124 libkern::bounded_ptr<TQual, dummy_policy1> const a(array.begin(), array.begin(), array.end()); in tests() local
126 check_eq(a, b); in tests()
138 test_bounded_ptr<Derived> const a(array.begin(), array.begin(), array.end() - 1); in tests_convert() local
140 check_eq(a, b); in tests_convert()