Lines Matching refs:globalBuff
25 static int globalBuff[8]; variable
139 constexpr int *rbegin() const { return globalBuff; } in rbegin()
168 assert(std::ranges::rbegin(c) == globalBuff); in testRBeginMember()
169 assert(std::ranges::crbegin(c) == globalBuff); in testRBeginMember()
170 assert(std::ranges::rbegin(std::move(c)) == globalBuff); in testRBeginMember()
171 assert(std::ranges::crbegin(std::move(c)) == globalBuff); in testRBeginMember()
218 friend constexpr int *rbegin(RBeginFunctionByValue) { return globalBuff + 1; } in rbegin()
223 friend constexpr int *rbegin(RBeginFunctionEnabledBorrowing) { return globalBuff + 2; } in rbegin()
257 assert(std::ranges::rbegin(b) == globalBuff + 1); in testRBeginFunction()
258 assert(std::ranges::crbegin(b) == globalBuff + 1); in testRBeginFunction()
259 assert(std::ranges::rbegin(bb) == globalBuff + 1); in testRBeginFunction()
260 assert(std::ranges::crbegin(bb) == globalBuff + 1); in testRBeginFunction()
264 assert(std::ranges::rbegin(std::move(c)) == globalBuff + 2); in testRBeginFunction()
265 assert(std::ranges::crbegin(std::move(c)) == globalBuff + 2); in testRBeginFunction()
266 assert(std::ranges::rbegin(std::move(cc)) == globalBuff + 2); in testRBeginFunction()
267 assert(std::ranges::crbegin(std::move(cc)) == globalBuff + 2); in testRBeginFunction()