Searched refs:rend (Results 1 - 25 of 117) sorted by relevance

12345

/macosx-10.10/bind9-45.101/bind9/lib/isccc/
H A Dbase64.c56 sr.length = source->rend - source->rstart;
57 isc_buffer_init(&tb, target->rstart, target->rend - target->rstart);
62 source->rstart = source->rend;
72 isc_buffer_init(&b, target->rstart, target->rend - target->rstart);
/macosx-10.10/bind9-45.101/bind9/lib/isccc/include/isccc/
H A Dtypes.h56 unsigned char * rend; member in struct:isccc_region
H A Dutil.h203 #define REGION_SIZE(r) ((unsigned int)((r).rend - (r).rstart))
204 #define REGION_EMPTY(r) ((r).rstart == (r).rend)
207 (r).rend = (r).rstart + strlen(s); \
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/pat_trie_/
H A Diterators_fn_imps.hpp77 return rend();
87 return rend();
94 rend() function in class:PB_DS_CLASS_C_DEC
100 rend() const function in class:PB_DS_CLASS_C_DEC
H A Ddebug_fn_imps.hpp93 for (const_reverse_iterator it = rbegin(); it != rend(); ++it)
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Analysis/
H A DTrace.h98 reverse_iterator rend () { return BasicBlocks.rend(); } function in class:llvm::Trace
99 const_reverse_iterator rend () const { return BasicBlocks.rend(); } function in class:llvm::Trace
H A DLoopInfo.h134 reverse_iterator rend() const { return SubLoops.rend(); } function in class:llvm::LoopBase
442 reverse_iterator rend() const { return TopLevelLoops.rend(); } function in class:llvm::LoopInfoBase
571 inline reverse_iterator rend() const { return LI.rend(); } function in class:llvm::LoopInfo
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/examples/canvas/
H A Dcitygrid.tcl16 variable rend [block 5]
107 variable rend
117 if {$cx} { $tile copy $parcel -to $rstart $rstart $rend $rend } ; # center
119 if {$olx} { $tile copy $parcel -to 0 $rstart $cstart $rend } ; # ou left
120 if {$orx} { $tile copy $parcel -to $cend $rstart $tessel $rend } ; # ou right
121 if {$oux} { $tile copy $parcel -to $rstart 0 $rend $cstart } ; # ou up
122 if {$odx} { $tile copy $parcel -to $rstart $cend $rend $tessel } ; # ou down
124 if {$ilx} { $tile copy $parcel -to $cstart $rstart $rstart $rend } ; # in left
125 if {$irx} { $tile copy $parcel -to $rend
[all...]
/macosx-10.10/WebCore-7600.1.25/Modules/mediasource/
H A DSampleMap.h51 reverse_iterator rend() { return m_samples.rend(); } function in class:WebCore::PresentationOrderSampleMap
78 reverse_iterator rend() { return m_samples.rend(); } function in class:WebCore::DecodeOrderSampleMap
H A DSampleMap.cpp167 auto range = std::equal_range(rbegin(), rend(), time, SampleIsGreaterThanMediaTimeComparator<MapType>());
169 return rend();
175 return std::lower_bound(rbegin(), rend(), time, SampleIsGreaterThanMediaTimeComparator<MapType>());
182 return rend();
189 if (reverseCurrentSamplePTS == m_presentationOrder.rend())
190 return rend();
196 if (foundSample == rend())
197 return rend();
199 return rend();
205 return std::find_if(iterator, rend(), SampleIsRandomAcces
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/bin_search_tree_/
H A Diterators_fn_imps.hpp98 rend() function in class:PB_DS_CLASS_C_DEC
106 rend() const function in class:PB_DS_CLASS_C_DEC
H A Ddebug_fn_imps.hpp230 const_reverse_iterator reverse_prev_it = rend();
231 for (const_reverse_iterator reverse_it = rbegin(); reverse_it != rend();
241 if (reverse_prev_it != rend())
/macosx-10.10/swig-12/Lib/ruby/
H A Drubystdautodoc.swg18 AUTODOC(rend, "Return a reverse iterator to past the end (past the beginning) of the $class");
/macosx-10.10/llvmCore-3425.0.34/utils/TableGen/
H A DSequenceToOffsetTable.h43 return std::lexicographical_compare(A.rbegin(), A.rend(),
44 B.rbegin(), B.rend(), L);
60 return A.size() <= B.size() && std::equal(A.rbegin(), A.rend(), B.rbegin());
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/trie_policy/
H A Dstring_trie_e_access_traits_imp.hpp104 return (r_key.rend());
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-run/
H A Dio_test.cpp197 file_handle rend(pfd[0]);
200 ATF_REQUIRE(rend.get() != 10);
207 ATF_REQUIRE_EQ(::read(rend.get(), buf, sizeof(buf)), 16);
220 ATF_REQUIRE_EQ(::read(rend.get(), buf, sizeof(buf)), 16);
292 pistream rend(fds[0]);
302 rend >> tmp;
304 rend >> tmp;
/macosx-10.10/emacs-93/emacs/lisp/
H A Dreplace.el535 (defun keep-lines (regexp &optional rstart rend interactive)
565 (goto-char (min rstart rend))
566 (setq rend
569 (goto-char (max rstart rend))
575 rend (progn
581 rend (point-max-marker)))
588 (while (< (point) rend)
590 (if (not (re-search-forward regexp rend 'move))
591 (delete-region start rend)
601 (and (< (point) rend)
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/
H A DDeadMachineInstructionElim.cpp95 for (MachineFunction::reverse_iterator I = MF.rbegin(), E = MF.rend();
123 MIE = MBB->rend(); MII != MIE; ) {
154 MIE = MBB->rend();
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Bitcode/
H A DArchive.h235 inline reverse_iterator rend () { return members.rend(); } function in class:llvm::Archive
236 inline const_reverse_iterator rend () const { return members.rend(); } function in class:llvm::Archive
/macosx-10.10/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DMachineBasicBlock.h230 reverse_instr_iterator instr_rend () { return Insts.rend(); }
231 const_reverse_instr_iterator instr_rend () const { return Insts.rend(); }
239 reverse_iterator rend () { return instr_rend(); } function in class:llvm::MachineBasicBlock
240 const_reverse_iterator rend () const { return instr_rend(); } function in class:llvm::MachineBasicBlock
266 { return Predecessors.rend(); }
268 { return Predecessors.rend(); }
282 { return Successors.rend(); }
284 { return Successors.rend(); }
H A DMachineFunction.h304 reverse_iterator rend () { return BasicBlocks.rend(); }
305 const_reverse_iterator rend () const { return BasicBlocks.rend(); }
/macosx-10.10/swig-12/Lib/std/
H A Dstd_set.i30 reverse_iterator rend();
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/bits/
H A Dstl_multimap.h297 rend() function in class:multimap
298 { return _M_t.rend(); }
306 rend() const function in class:multimap
307 { return _M_t.rend(); }
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DFlowThreadController.cpp209 for (auto iter = m_renderNamedFlowThreadList->rbegin(), end = m_renderNamedFlowThreadList->rend(); iter != end; ++iter) {
224 for (auto iter = m_renderNamedFlowThreadList->rbegin(), end = m_renderNamedFlowThreadList->rend(); iter != end; ++iter) {
251 for (auto iter = m_renderNamedFlowThreadList->rbegin(), end = m_renderNamedFlowThreadList->rend(); iter != end; ++iter) {
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/
H A DPageOverlayController.cpp243 for (auto it = m_pageOverlays.rbegin(), end = m_pageOverlays.rend(); it != end; ++it) {
256 for (auto it = m_pageOverlays.rbegin(), end = m_pageOverlays.rend(); it != end; ++it) {
269 for (auto it = m_pageOverlays.rbegin(), end = m_pageOverlays.rend(); it != end; ++it) {

Completed in 149 milliseconds

12345