Lines Matching refs:ref
41 auto& ref = ptr -= 0; in tests() local
42 _assert(&ref == &ptr); in tests()
47 auto& ref = ptr -= 1; in tests() local
48 _assert(&ref == &ptr); in tests()
53 auto& ref = ptr -= 2; in tests() local
54 _assert(&ref == &ptr); in tests()
59 auto& ref = ptr -= 3; in tests() local
60 _assert(&ref == &ptr); in tests()
65 auto& ref = ptr -= 4; in tests() local
66 _assert(&ref == &ptr); in tests()
71 auto& ref = ptr -= 5; in tests() local
72 _assert(&ref == &ptr); in tests()
83 auto& ref = ptr -= 0; in tests() local
84 _assert(&ref == &ptr); in tests()
89 auto& ref = ptr -= -1; in tests() local
90 _assert(&ref == &ptr); in tests()
95 auto& ref = ptr -= -2; in tests() local
96 _assert(&ref == &ptr); in tests()
101 auto& ref = ptr -= -3; in tests() local
102 _assert(&ref == &ptr); in tests()
107 auto& ref = ptr -= -4; in tests() local
108 _assert(&ref == &ptr); in tests()
113 auto& ref = ptr -= -5; in tests() local
114 _assert(&ref == &ptr); in tests()