| /openbsd-src/gnu/llvm/libcxx/include/__ranges/ |
| H A D | rend.h | 42 { _LIBCPP_AUTO_CAST(__t.rend()) } -> sentinel_for<decltype(ranges::rbegin(__t))>; in requires() 45 void rend(auto&) = delete; 46 void rend(const auto&) = delete; 55 { _LIBCPP_AUTO_CAST(rend(__t)) } -> sentinel_for<decltype(ranges::rbegin(__t))>; 73 noexcept(noexcept(_LIBCPP_AUTO_CAST(__t.rend()))) in operator() 75 return _LIBCPP_AUTO_CAST(__t.rend()); in operator() 81 noexcept(noexcept(_LIBCPP_AUTO_CAST(rend(__t)))) in operator() 83 return _LIBCPP_AUTO_CAST(rend(__t)); in operator() 99 inline constexpr auto rend = __rend::__fn{}; 112 noexcept(noexcept(ranges::rend(static_cast<const remove_reference_t<_Tp>&>(__t)))) [all …]
|
| /openbsd-src/gnu/llvm/libcxx/include/__iterator/ |
| H A D | reverse_access.h | 35 reverse_iterator<_Tp*> rend(_Tp (&__array)[_Np]) in rend() function 49 reverse_iterator<const _Ep*> rend(initializer_list<_Ep> __il) in rend() function 70 auto rend(_Cp& __c) -> decltype(__c.rend()) 72 return __c.rend(); 77 auto rend(const _Cp& __c) -> decltype(__c.rend()) 79 return __c.rend(); 91 auto crend(const _Cp& __c) -> decltype(_VSTD::rend(__c)) 93 return _VSTD::rend(__c);
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/pat_trie_/ |
| H A D | iterators_fn_imps.hpp | 77 return rend(); in rbegin() 87 return rend(); in rbegin() 94 rend() in rend() function in PB_DS_CLASS_C_DEC 100 rend() const in rend() function in PB_DS_CLASS_C_DEC
|
| /openbsd-src/libexec/ld.so/hppa/ |
| H A D | boot_md.c | 59 const RELOC_TYPE *rend; in _dl_boot_bind() local 122 rend = (RELOC_TYPE *)((char *)dt_jmprel + dt_pltrelsz); in _dl_boot_bind() 123 for (; dt_jmprel < rend; dt_jmprel++) { in _dl_boot_bind() 133 rend = (RELOC_TYPE *)((char *)dt_reloc + dt_relocsz); in _dl_boot_bind() 134 for (; dt_reloc < rend; dt_reloc++) { in _dl_boot_bind()
|
| /openbsd-src/lib/csu/hppa/ |
| H A D | boot_md.h | 80 const RELOC_TYPE *rend; in _dl_boot_bind() local 144 rend = (RELOC_TYPE *)((char *)dt_jmprel + dt_pltrelsz); in _dl_boot_bind() 145 for (; dt_jmprel < rend; dt_jmprel++) { in _dl_boot_bind() 155 rend = (RELOC_TYPE *)((char *)dt_reloc + dt_relocsz); in _dl_boot_bind() 156 for (; dt_reloc < rend; dt_reloc++) { in _dl_boot_bind()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/ |
| H A D | Trace.h | 92 reverse_iterator rend () { return BasicBlocks.rend(); } in rend() function 93 const_reverse_iterator rend () const { return BasicBlocks.rend(); } in rend() function
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Option/ |
| H A D | ArgList.h | 194 reverse_iterator rbegin() { return {Args.rbegin(), Args.rend()}; } in rbegin() 195 reverse_iterator rend() { return {Args.rend(), Args.rend()}; } in rend() function 200 const_reverse_iterator rbegin() const { return {Args.rbegin(), Args.rend()}; } in rbegin() 201 const_reverse_iterator rend() const { return {Args.rend(), Args.rend()}; } in rend() function 218 auto B = Args.rend() - Range.second; in filtered_reverse() 219 auto E = Args.rend() - Range.first; in filtered_reverse()
|
| /openbsd-src/usr.bin/yacc/ |
| H A D | warshall.c | 45 unsigned int *rowj, *rp, *rend, *ccol, *relend, *cword, *rowi; in transitive_closure() local 60 rend = rowj + rowsize; in transitive_closure() 61 while (rowj < rend) in transitive_closure()
|
| /openbsd-src/gnu/llvm/lld/MachO/ |
| H A D | Symbols.cpp | 71 for (auto it = isec->symbols.rbegin(), rend = isec->symbols.rend(); in Defined() local 72 it != rend; ++it) { in Defined() 74 if (next == rend) in Defined()
|
| /openbsd-src/libexec/ld.so/ |
| H A D | boot.c | 69 RELOC_TYPE *rend; in _dl_boot_bind() local 114 rend = (RELOC_TYPE *)((char *)dt_reloc + dt_relocsz); in _dl_boot_bind() 115 for (; dt_reloc < rend; dt_reloc++) { in _dl_boot_bind()
|
| /openbsd-src/libexec/ld.so/mips64/ |
| H A D | boot_md.c | 62 const RELOC_TYPE *rend; in _dl_boot_bind() local 125 rend = (RELOC_TYPE *)((char *)dt_reloc + dt_relocsz); in _dl_boot_bind() 126 for (; dt_reloc < rend; dt_reloc++) { in _dl_boot_bind()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Analysis/ |
| H A D | CFG.h | 602 iterator end() { return Impl.rend(); } in end() 604 const_iterator end() const { return Impl.rend(); } in end() 606 reverse_iterator rend() { return Impl.end(); } in rend() function 608 const_reverse_iterator rend() const { return Impl.end(); } in rend() function 881 reverse_iterator rend() { return Elements.rend(); } in rend() function 883 const_reverse_iterator rend() const { return Elements.rend(); } in rend() function 906 reverse_ref_iterator rref_end() { return {this, rend()}; } in rref_end() 908 const_reverse_ref_iterator rref_end() const { return {this, rend()}; } in rref_end() 943 pred_reverse_iterator pred_rend() { return Preds.rend(); } in pred_rend() 945 const_pred_reverse_iterator pred_rend() const { return Preds.rend(); } in pred_rend() [all …]
|
| /openbsd-src/lib/csu/ |
| H A D | boot.h | 86 RELOC_TYPE *dt_reloc, *rend; /* DT_RELA or DT_REL */ in _dl_boot_bind() local 140 rend = (RELOC_TYPE *)((char *)dt_reloc + dt_relocsz); in _dl_boot_bind() 141 for (; dt_reloc < rend; dt_reloc++) { in _dl_boot_bind()
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | SequenceToOffsetTable.h | 56 return std::lexicographical_compare(A.rbegin(), A.rend(), in operator() 57 B.rbegin(), B.rend(), L); in operator() 73 return A.size() <= B.size() && std::equal(A.rbegin(), A.rend(), B.rbegin()); in isSuffix()
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/bin_search_tree_/ |
| H A D | iterators_fn_imps.hpp | 98 rend() in rend() function in PB_DS_CLASS_C_DEC 106 rend() const in rend() function in PB_DS_CLASS_C_DEC
|
| H A D | debug_fn_imps.hpp | 230 const_reverse_iterator reverse_prev_it = rend(); in assert_iterators() 231 for (const_reverse_iterator reverse_it = rbegin(); reverse_it != rend(); in assert_iterators() 241 if (reverse_prev_it != rend()) in assert_iterators()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | SetVector.h | 112 reverse_iterator rend() { in rend() function 113 return vector_.rend(); in rend() 117 const_reverse_iterator rend() const { in rend() function 118 return vector_.rend(); in rend()
|
| H A D | AllocatorList.h | 166 reverse_iterator rend() { return reverse_iterator(List.rend()); } in rend() function 170 const_reverse_iterator rend() const { in rend() function 171 return const_reverse_iterator(List.rend()); in rend()
|
| H A D | MapVector.h | 77 reverse_iterator rend() { return Vector.rend(); } in rend() function 78 const_reverse_iterator rend() const { return Vector.rend(); } in rend() function
|
| H A D | EnumeratedArray.h | 76 reverse_iterator rend() { return reverse_iterator(begin()); } in rend() function 77 const_reverse_iterator rend() const { in rend() function
|
| /openbsd-src/gnu/llvm/lldb/source/Breakpoint/ |
| H A D | BreakpointResolverFileRegex.cpp | 133 std::vector<size_t>::reverse_iterator rend = sc_to_remove.rend(); in SearchCallback() local 134 for (iter = sc_to_remove.rbegin(); iter != rend; iter++) { in SearchCallback()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Analysis/Analyses/ |
| H A D | PostOrderCFGView.h | 88 iterator end() { return Blocks.rend(); } in end() 91 const_iterator end() const { return Blocks.rend(); } in end()
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/bits/ |
| H A D | stl_multimap.h | 297 rend() in _GLIBCXX_BEGIN_NESTED_NAMESPACE() 298 { return _M_t.rend(); } in _GLIBCXX_BEGIN_NESTED_NAMESPACE() 306 rend() const in _GLIBCXX_BEGIN_NESTED_NAMESPACE() 307 { return _M_t.rend(); } in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/ |
| H A D | stl_multimap.h | 289 rend() { return _M_t.rend(); } in rend() function 297 rend() const { return _M_t.rend(); } in rend() function
|
| H A D | stl_map.h | 274 rend() { return _M_t.rend(); } in rend() function 282 rend() const { return _M_t.rend(); } in rend() function
|