Lines Matching refs:ref
44 auto& ref = ptr += 0; in tests() local
45 _assert(&ref == &ptr); in tests()
50 auto& ref = ptr += 1; in tests() local
51 _assert(&ref == &ptr); in tests()
56 auto& ref = ptr += 2; in tests() local
57 _assert(&ref == &ptr); in tests()
62 auto& ref = ptr += 3; in tests() local
63 _assert(&ref == &ptr); in tests()
68 auto& ref = ptr += 4; in tests() local
69 _assert(&ref == &ptr); in tests()
74 auto& ref = ptr += 5; in tests() local
75 _assert(&ref == &ptr); in tests()
86 auto& ref = ptr += 0; in tests() local
87 _assert(&ref == &ptr); in tests()
92 auto& ref = ptr += -1; in tests() local
93 _assert(&ref == &ptr); in tests()
98 auto& ref = ptr += -2; in tests() local
99 _assert(&ref == &ptr); in tests()
104 auto& ref = ptr += -3; in tests() local
105 _assert(&ref == &ptr); in tests()
110 auto& ref = ptr += -4; in tests() local
111 _assert(&ref == &ptr); in tests()
116 auto& ref = ptr += -5; in tests() local
117 _assert(&ref == &ptr); in tests()