Lines Matching refs:b

60 		test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end());  in tests()  local
61 check_eq(a, b); in tests()
65 test_bounded_ptr<TQual> const b(array.begin() + 1, array.begin(), array.end()); in tests() local
66 check_ne(a, b); in tests()
70 test_bounded_ptr<TQual> const b(array.begin() + 2, array.begin(), array.end()); in tests() local
71 check_ne(a, b); in tests()
75 test_bounded_ptr<TQual> const b(array.end(), array.begin(), array.end()); in tests() local
76 check_ne(a, b); in tests()
80 test_bounded_ptr<TQual> const b(array.end(), array.begin(), array.end()); in tests() local
81 check_eq(a, b); in tests()
87 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests() local
88 check_ne(a, b); in tests()
92 test_bounded_ptr<TQual> const b; in tests() local
93 check_eq(a, b); in tests()
100 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests() local
101 check_eq(a, b); in tests()
106 test_bounded_ptr<TQual> const b(array.begin() + 2, array.begin(), array.end()); in tests() local
107 check_ne(a, b); in tests()
112 test_bounded_ptr<TQual> const b(array.begin(), array.begin() + 2, array.end()); in tests() local
113 check_eq(a, b); in tests()
118 test_bounded_ptr<TQual> const b(array.begin() + 3, array.begin() + 2, array.end()); in tests() local
119 check_ne(a, b); in tests()
125 libkern::bounded_ptr<TQual, dummy_policy2> const b(array.begin(), array.begin(), array.end()); in tests() local
126 check_eq(a, b); in tests()
139 test_bounded_ptr<Related> const b(array.begin(), array.begin(), array.end() - 1); in tests_convert() local
140 check_eq(a, b); in tests_convert()