Home
last modified time | relevance | path

Searched refs:stop_here (Results 1 – 7 of 7) sorted by relevance

/third_party/ffmpeg/libavfilter/
Daf_atempo.c431 int64_t stop_here) in yae_load_data() argument
435 const int read_size = stop_here - atempo->position[0]; in yae_load_data()
437 if (stop_here <= atempo->position[0]) { in yae_load_data()
444 while (atempo->position[0] < stop_here && src < src_end) { in yae_load_data()
491 av_assert0(atempo->position[0] <= stop_here); in yae_load_data()
493 return atempo->position[0] == stop_here ? 0 : AVERROR(EAGAIN); in yae_load_data()
515 int64_t stop_here = frag->position[0] + atempo->window; in yae_load_frag() local
516 if (src_ref && yae_load_data(atempo, src_ref, src_end, stop_here) != 0) { in yae_load_frag()
522 stop_here > atempo->position[0] ? in yae_load_frag()
523 stop_here - atempo->position[0] : 0; in yae_load_frag()
[all …]
/third_party/python/Lib/
Dbdb.py113 if self.stop_here(frame) or self.break_here(frame):
130 if not (self.stop_here(frame) or self.break_anywhere(frame)):
147 if self.stop_here(frame) or frame == self.returnframe:
169 if self.stop_here(frame):
202 def stop_here(self, frame): member in Bdb
Dpdb.py250 if self.stop_here(frame):
/third_party/python/Doc/library/
Dbdb.rst169 .. method:: stop_here(frame)
197 :meth:`stop_here` or :meth:`break_here` yields ``True``.
201 This method is called from :meth:`dispatch_return` when :meth:`stop_here`
207 :meth:`stop_here` yields ``True``.
/third_party/lwip/src/core/
Dtcp_in.c1869 int stop_here = 0; local
1873 stop_here = 1;
1879 stop_here = 1;
1882 if (stop_here) {
/third_party/python/Lib/test/
Dtest_bdb.py203 if not self.stop_here(frame):
Dtest_inspect.py4263 func2.stop_here = 1