Lines Matching refs:b
76 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests() local
77 check_eq(a, b); in tests()
81 test_bounded_ptr<TQual> const b(array.begin() + 1, array.begin(), array.end()); in tests() local
82 check_lt(a, b); in tests()
86 test_bounded_ptr<TQual> const b(array.begin() + 2, array.begin(), array.end()); in tests() local
87 check_lt(a, b); in tests()
91 test_bounded_ptr<TQual> const b(array.end(), array.begin(), array.end()); in tests() local
92 check_lt(a, b); in tests()
96 test_bounded_ptr<TQual> const b(array.end(), array.begin(), array.end()); in tests() local
97 check_eq(a, b); in tests()
103 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests() local
104 check_lt(a, b); in tests()
108 test_bounded_ptr<TQual> const b; in tests() local
109 check_eq(a, b); in tests()
116 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests() local
117 check_eq(a, b); in tests()
122 test_bounded_ptr<TQual> const b(array.begin() + 2, array.begin(), array.end()); in tests() local
123 check_lt(a, b); in tests()
128 test_bounded_ptr<TQual> const b(array.begin(), array.begin() + 2, array.end()); in tests() local
129 check_eq(a, b); in tests()
134 test_bounded_ptr<TQual> const b(array.begin() + 3, array.begin() + 2, array.end()); in tests() local
135 check_lt(a, b); in tests()
141 libkern::bounded_ptr<TQual, dummy_policy2> const b(array.begin(), array.begin(), array.end()); in tests() local
142 check_eq(a, b); in tests()
155 test_bounded_ptr<Related> const b(array.begin(), array.begin(), array.end() - 1); in tests_convert() local
156 check_eq(a, b); in tests_convert()