Lines Matching refs:a
75 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests() local
77 check_eq(a, b); in tests()
80 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests() local
82 check_lt(a, b); in tests()
85 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests() local
87 check_lt(a, b); in tests()
90 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests() local
92 check_lt(a, b); in tests()
95 test_bounded_ptr<TQual> const a(array.end(), array.begin(), array.end()); in tests() local
97 check_eq(a, b); in tests()
102 test_bounded_ptr<TQual> const a; in tests() local
104 check_lt(a, b); in tests()
107 test_bounded_ptr<TQual> const a; in tests() local
109 check_eq(a, b); in tests()
115 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests() local
117 check_eq(a, b); in tests()
121 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests() local
123 check_lt(a, b); in tests()
127 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.begin() + 1); in tests() local
129 check_eq(a, b); in tests()
133 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.begin() + 1); in tests() local
135 check_lt(a, b); in tests()
140 libkern::bounded_ptr<TQual, dummy_policy1> const a(array.begin(), array.begin(), array.end()); in tests() local
142 check_eq(a, b); in tests()
154 test_bounded_ptr<Derived> const a(array.begin(), array.begin(), array.end() - 1); in tests_convert() local
156 check_eq(a, b); in tests_convert()