Searched refs:rlast (Results 1 – 5 of 5) sorted by relevance
/third_party/boost/libs/algorithm/minmax/test/ |
D | minmax_element_test.cpp | 123 RCIterator rfirst(last), rlast(first), rmin, rmax; in test_minmax() local 145 rmin = (rmin == rfirst) ? rlast : --rmin; in test_minmax() 146 CHECK_EQUAL_ITERATORS( rmin, std::min_element(rfirst, rlast), rfirst ); in test_minmax() 149 rmax = (rmax == rfirst) ? rlast : --rmax; in test_minmax() 150 CHECK_EQUAL_ITERATORS( rmax, std::max_element(rfirst, rlast), rfirst ); in test_minmax() 168 rmin = (rmin == rfirst) ? rlast : --rmin; in test_minmax() 170 CHECK_EQUAL_ITERATORS( rmin, std::min_element(rfirst, rlast, lc), rfirst ); in test_minmax() 177 rmax = (rmax == rfirst) ? rlast : --rmax; in test_minmax() 179 CHECK_EQUAL_ITERATORS( rmax, std::max_element(rfirst, rlast, lc), rfirst ); in test_minmax()
|
/third_party/boost/libs/algorithm/doc/ |
D | find_backward.qbk | 30 auto rlast = std::make_reverse_iterator(first); 31 auto it = std::find(rfirst, rlast, x);
|
/third_party/boost/libs/geometry/test/iterators/ |
D | point_iterator.cpp | 448 point_reverse_iterator rlast(rend); in apply() local 449 --rlast; in apply() 450 BOOST_CHECK(bg::equals(*begin, *rlast)); in apply()
|
/third_party/ntfs-3g/libntfs-3g/ |
D | acls.c | 365 u32 rlast; in findimplicit() local 376 rlast = le32_to_cpu(leauth); in findimplicit() 378 if ((xlast > rlast) && !((xlast ^ rlast ^ parity) & 1)) { in findimplicit() 381 xid = ((xlast - rlast) >> 1) & 0x3fffffff; in findimplicit() 396 xid = (((xlast - rlast) >> 1) in findimplicit()
|
/third_party/boost/libs/poly_collection/doc/ |
D | reference.qbk | 1500 (1) `std::`[' `alg`]`(rfirst,rlast,args...)`,[br] 1503 (4) `std::rotate_copy(rfirst,rmiddle,rlast,args...)`,[br] 1504 and `rfirst`, `rmiddle` and `rlast` are iterator-like objects behaving like
|