Searched refs:frames_count (Results 1 – 8 of 8) sorted by relevance
/third_party/boost/boost/stacktrace/detail/ |
D | collect_unwind.ipp | 67 std::size_t frames_count = 0; 69 return frames_count; 76 …frames_count = static_cast<size_t>(::backtrace(const_cast<void **>(out_frames), static_cast<int>(m… 80 if (frames_count && skip) { 81 if (skip >= frames_count) { 82 frames_count = 0; 84 std::copy(out_frames + skip, out_frames + frames_count, out_frames); 85 frames_count -= skip; 91 frames_count = state.current - out_frames; 94 if (frames_count && out_frames[frames_count - 1] == 0) { [all …]
|
D | safe_dump_win.ipp | 26 std::size_t dump(void* /*fd*/, const native_frame_ptr_t* /*frames*/, std::size_t /*frames_count*/) … 30 sizeof(native_frame_ptr_t) * frames_count 36 return frames_count; 41 …t char* /*file*/, const native_frame_ptr_t* /*frames*/, std::size_t /*frames_count*/) BOOST_NOEXCE… 57 const std::size_t size = boost::stacktrace::detail::dump(fd, frames, frames_count);
|
D | safe_dump_posix.ipp | 24 std::size_t dump(int fd, const native_frame_ptr_t* frames, std::size_t frames_count) BOOST_NOEXCEPT… 29 if (::write(fd, frames, sizeof(native_frame_ptr_t) * frames_count) == -1) { 33 return frames_count; 36 std::size_t dump(const char* file, const native_frame_ptr_t* frames, std::size_t frames_count) BOOS… 52 const std::size_t size = boost::stacktrace::detail::dump(fd, frames, frames_count);
|
D | safe_dump_noop.ipp | 21 std::size_t dump(void* /*fd*/, const native_frame_ptr_t* /*frames*/, std::size_t /*frames_count*/) … 25 std::size_t dump(int /*fd*/, const native_frame_ptr_t* /*frames*/, std::size_t /*frames_count*/) BO… 31 …t char* /*file*/, const native_frame_ptr_t* /*frames*/, std::size_t /*frames_count*/) BOOST_NOEXCE…
|
/third_party/boost/boost/stacktrace/ |
D | stacktrace.hpp | 76 …const std::size_t frames_count = boost::stacktrace::detail::this_thread_frames::collect(buffer, bu… in init() 77 if (buffer_size > frames_count || frames_count == max_depth) { in init() 78 fill(buffer, frames_count); in init() 91 …const std::size_t frames_count = boost::stacktrace::detail::this_thread_frames::collect(&buf[0], b… in init() 92 if (buf.size() > frames_count || frames_count == max_depth) { in init() 93 fill(&buf[0], frames_count); in init() 300 …const std::size_t frames_count = frames_count_from_buffer_size(static_cast<std::size_t>(in.tellg()… in from_dump() local 303 if (!frames_count) { in from_dump() 308 ret.impl_.reserve(frames_count); in from_dump() 330 const std::size_t frames_count = frames_count_from_buffer_size(buffer_size_in_bytes); in from_dump() local [all …]
|
D | safe_dump_to.hpp | 38 … dump(const char* file, const native_frame_ptr_t* frames, std::size_t frames_count) BOOST_NOEXCEPT; 40 …::size_t dump(void* fd, const native_frame_ptr_t* frames, std::size_t frames_count) BOOST_NOEXCEPT; 43 …td::size_t dump(int fd, const native_frame_ptr_t* frames, std::size_t frames_count) BOOST_NOEXCEPT; 58 …const std::size_t frames_count = boost::stacktrace::detail::this_thread_frames::collect(mem, size … in safe_dump_to_impl() local 59 mem[frames_count] = 0; in safe_dump_to_impl() 60 return frames_count + 1; in safe_dump_to_impl() 72 …const std::size_t frames_count = boost::stacktrace::detail::this_thread_frames::collect(buffer, ma… in safe_dump_to_impl() local 73 buffer[frames_count] = 0; in safe_dump_to_impl() 74 return boost::stacktrace::detail::dump(file, buffer, frames_count + 1); in safe_dump_to_impl()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_fps.c | 63 int frames_count; ///< number of buffered frames member 112 av_assert1(s->frames_count > 0); in shift_frame() 117 s->frames_count--; in shift_frame() 141 while (s->frames_count > 0) { in uninit() 187 av_assert1(s->frames_count < 2); in read_frame() 206 s->frames[s->frames_count++] = frame; in read_frame() 217 av_assert1(s->frames_count == 2 || (s->status && s->frames_count == 1)); in write_frame() 239 if ((s->frames_count == 2 && s->frames[1]->pts <= s->next_pts) || in write_frame() 290 while (s->frames_count < 2 && ff_inlink_check_available_frame(inlink)) { in activate() 297 if (s->frames_count < 2) { in activate() [all …]
|
/third_party/ffmpeg/libavformat/ |
D | mvi.c | 46 unsigned int version, frames_count, msecs_per_frame, player_version; in read_header() local 64 frames_count = avio_rl32(pb); in read_header() 76 if (frames_count == 0 || audio_data_size <= 0) in read_header() 99 mvi->audio_frame_size = ((uint64_t)audio_data_size << MVI_FRAC_BITS) / frames_count; in read_header() 103 audio_data_size, frames_count); in read_header()
|