Lines Matching refs:globalBuff
24 static int globalBuff[8]; variable
143 constexpr int *begin() const { return &globalBuff[0]; } in begin()
172 assert(std::ranges::begin(c) == &globalBuff[0]); in testBeginMember()
173 assert(std::ranges::cbegin(c) == &globalBuff[0]); in testBeginMember()
174 assert(std::ranges::begin(std::move(c)) == &globalBuff[0]); in testBeginMember()
175 assert(std::ranges::cbegin(std::move(c)) == &globalBuff[0]); in testBeginMember()
216 friend constexpr int *begin(BeginFunctionByValue) { return &globalBuff[1]; } in begin()
221 friend constexpr int *begin(BeginFunctionEnabledBorrowing) { return &globalBuff[2]; } in begin()
255 assert(std::ranges::begin(b) == &globalBuff[1]); in testBeginFunction()
256 assert(std::ranges::cbegin(b) == &globalBuff[1]); in testBeginFunction()
257 assert(std::ranges::begin(bb) == &globalBuff[1]); in testBeginFunction()
258 assert(std::ranges::cbegin(bb) == &globalBuff[1]); in testBeginFunction()
262 assert(std::ranges::begin(std::move(c)) == &globalBuff[2]); in testBeginFunction()
263 assert(std::ranges::cbegin(std::move(c)) == &globalBuff[2]); in testBeginFunction()
264 assert(std::ranges::begin(std::move(cc)) == &globalBuff[2]); in testBeginFunction()
265 assert(std::ranges::cbegin(std::move(cc)) == &globalBuff[2]); in testBeginFunction()