/third_party/ffmpeg/libavformat/ |
H A D | seek.c | 287 int64_t pos_min = 0, pos_max = 0, pos, pos_limit; in ff_seek_frame_binary() local 316 pos_min = e->pos; in ff_seek_frame_binary() 318 av_log(s, AV_LOG_TRACE, "using cached pos_min=0x%"PRIx64" dts_min=%s\n", in ff_seek_frame_binary() 319 pos_min, av_ts2str(ts_min)); in ff_seek_frame_binary() 338 pos = ff_gen_search(s, stream_index, target_ts, pos_min, pos_max, pos_limit, in ff_seek_frame_binary() 392 int64_t pos_min, int64_t pos_max, int64_t pos_limit, in ff_gen_search() 407 pos_min = si->data_offset; in ff_gen_search() 408 ts_min = read_timestamp(s, stream_index, &pos_min, INT64_MAX, read_timestamp_func); in ff_gen_search() 415 return pos_min; in ff_gen_search() 432 while (pos_min < pos_limi in ff_gen_search() 391 ff_gen_search(AVFormatContext *s, int stream_index, int64_t target_ts, int64_t pos_min, int64_t pos_max, int64_t pos_limit, int64_t ts_min, int64_t ts_max, int flags, int64_t *ts_ret, int64_t (*read_timestamp_func)(struct AVFormatContext *, int, int64_t *, int64_t)) ff_gen_search() argument 502 int64_t pos_min, pos_max; seek_frame_byte() local [all...] |
H A D | yop.c | 184 int64_t frame_pos, pos_min, pos_max; in yop_read_seek() local 190 pos_min = ffformatcontext(s)->data_offset; in yop_read_seek() 192 frame_count = (pos_max - pos_min) / yop->frame_size; in yop_read_seek() 196 frame_pos = timestamp * yop->frame_size + pos_min; in yop_read_seek()
|
H A D | demux.h | 121 int64_t target_ts, int64_t pos_min,
|
H A D | avidec.c | 1852 int64_t pos, pos_min; in avi_read_seek() local 1906 pos_min = pos; in avi_read_seek() 1935 pos_min = FFMIN(pos_min,ast2->seek_pos); in avi_read_seek() 1951 while (!avi->non_interleaved && index > 0 && sti2->index_entries[index-1].pos >= pos_min) in avi_read_seek() 1957 if (avio_seek(s->pb, pos_min, SEEK_SET) < 0) { in avi_read_seek()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui.cpp | 2748 // Default clip_rect uses (pos_min,pos_max) 2750 void ImGui::RenderTextClippedEx(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_display_end, const ImVec2* text_size_if_known, const ImVec2& align, const ImRect* clip_rect) in RenderTextClippedEx() argument 2753 ImVec2 pos = pos_min; in RenderTextClippedEx() 2756 const ImVec2* clip_min = clip_rect ? &clip_rect->Min : &pos_min; in RenderTextClippedEx() 2778 void ImGui::RenderTextClipped(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align, const ImRect* clip_rect) in RenderTextClipped() argument 2788 RenderTextClippedEx(window->DrawList, pos_min, pos_max, text, text_display_end, text_size_if_known, align, clip_rect); in RenderTextClipped() 2790 LogRenderedText(&pos_min, text, text_display_end); in RenderTextClipped() 2795 // This is made more complex because we have dissociated the layout rectangle (pos_min..pos_max) which define _where_ the ellipsis is, from actual clipping of text and limit of the ellipsis display. 2797 void ImGui::RenderTextEllipsis(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, float clip_max_x, float ellipsis_max_x, const char* text, const char* text_end_full, const ImVec2* text_size_if_known) in RenderTextEllipsis() argument 2804 //draw_list->AddLine(ImVec2(pos_max.x, pos_min in RenderTextEllipsis() 5330 ImVec2 pos_min = ImLerp(corner_target, window->Pos, corner_norm); // Expected window upper-left CalcResizePosSizeFromAnyCorner() local [all...] |
H A D | imgui_internal.h | 2643 IMGUI_API void RenderTextClipped(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align = ImVec2(0, 0), const ImRect* clip_rect = NULL); 2644 IMGUI_API void RenderTextClippedEx(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align = ImVec2(0, 0), const ImRect* clip_rect = NULL); 2645 IMGUI_API void RenderTextEllipsis(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, float clip_max_x, float ellipsis_max_x, const char* text, const char* text_end, const ImVec2* text_size_if_known);
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_internal.h | 1443 IMGUI_API void RenderTextClipped(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align = ImVec2(0,0), const ImRect* clip_rect = NULL); 1444 IMGUI_API void RenderTextClippedEx(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align = ImVec2(0, 0), const ImRect* clip_rect = NULL);
|
H A D | imgui.cpp | 2327 // Default clip_rect uses (pos_min,pos_max) 2329 void ImGui::RenderTextClippedEx(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_display_end, const ImVec2* text_size_if_known, const ImVec2& align, const ImRect* clip_rect) in RenderTextClippedEx() argument 2332 ImVec2 pos = pos_min; in RenderTextClippedEx() 2335 const ImVec2* clip_min = clip_rect ? &clip_rect->Min : &pos_min; in RenderTextClippedEx() 2357 void ImGui::RenderTextClipped(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align, const ImRect* clip_rect) in RenderTextClipped() argument 2367 RenderTextClippedEx(window->DrawList, pos_min, pos_max, text, text_display_end, text_size_if_known, align, clip_rect); in RenderTextClipped() 2369 LogRenderedText(&pos_min, text, text_display_end); in RenderTextClipped() 4657 ImVec2 pos_min = ImLerp(corner_target, window->Pos, corner_norm); // Expected window upper-left in CalcResizePosSizeFromAnyCorner() local 4659 ImVec2 size_expected = pos_max - pos_min; in CalcResizePosSizeFromAnyCorner() 4661 *out_pos = pos_min; in CalcResizePosSizeFromAnyCorner() [all...] |