Lines Matching refs:b

29 		test_bounded_ptr<Right> const b(array.begin(), array.begin(), array.end());  in tests()  local
30 std::ptrdiff_t diff = a - b; in tests()
35 test_bounded_ptr<Right> const b(array.begin(), array.begin(), array.end()); in tests() local
36 std::ptrdiff_t diff = a - b; in tests()
41 test_bounded_ptr<Right> const b(array.begin(), array.begin(), array.end()); in tests() local
42 std::ptrdiff_t diff = a - b; in tests()
47 test_bounded_ptr<Right> const b(array.begin(), array.begin(), array.end()); in tests() local
48 std::ptrdiff_t diff = a - b; in tests()
53 test_bounded_ptr<Right> const b(array.begin(), array.begin(), array.end()); in tests() local
54 std::ptrdiff_t diff = a - b; in tests()
59 test_bounded_ptr<Right> const b(array.begin(), array.begin(), array.end()); in tests() local
60 std::ptrdiff_t diff = a - b; in tests()
67 test_bounded_ptr<Right> const b(array.begin() + 1, array.begin(), array.end()); in tests() local
68 std::ptrdiff_t diff = a - b; in tests()
73 test_bounded_ptr<Right> const b(array.begin() + 2, array.begin(), array.end()); in tests() local
74 std::ptrdiff_t diff = a - b; in tests()
79 test_bounded_ptr<Right> const b(array.begin() + 3, array.begin(), array.end()); in tests() local
80 std::ptrdiff_t diff = a - b; in tests()
85 test_bounded_ptr<Right> const b(array.begin() + 4, array.begin(), array.end()); in tests() local
86 std::ptrdiff_t diff = a - b; in tests()
91 test_bounded_ptr<Right> const b(array.begin() + 5, array.begin(), array.end()); in tests() local
92 std::ptrdiff_t diff = a - b; in tests()
99 test_bounded_ptr<Right> const b(array.begin() + 4, array.begin() + 3, array.end()); in tests() local
100 _assert(a - b == -2); in tests()
101 _assert(b - a == 2); in tests()
107 Right* b = array.begin() + 4; in tests() local
108 _assert(a - b == -2); in tests()
112 test_bounded_ptr<Right> const b(array.begin() + 2, array.begin() + 1, array.end() - 1); in tests() local
113 _assert(a - b == 2); in tests()