Home
last modified time | relevance | path

Searched refs:ref_pos (Results 1 – 6 of 6) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-buffer.cc1974 const hb_glyph_position_t *ref_pos = reference->pos; in hb_buffer_diff() local
1977 if ((unsigned int) abs (buf_pos->x_advance - ref_pos->x_advance) > position_fuzz || in hb_buffer_diff()
1978 (unsigned int) abs (buf_pos->y_advance - ref_pos->y_advance) > position_fuzz || in hb_buffer_diff()
1979 (unsigned int) abs (buf_pos->x_offset - ref_pos->x_offset) > position_fuzz || in hb_buffer_diff()
1980 (unsigned int) abs (buf_pos->y_offset - ref_pos->y_offset) > position_fuzz) in hb_buffer_diff()
1986 ref_pos++; in hb_buffer_diff()
/external/libaom/libaom/av1/encoder/
Dtpl_model.c465 static int round_floor(int ref_pos, int bsize_pix) { in round_floor() argument
467 if (ref_pos < 0) in round_floor()
468 round = -(1 + (-ref_pos - 1) / bsize_pix); in round_floor()
470 round = ref_pos / bsize_pix; in round_floor()
/external/mesa3d/src/imgui/
Dimgui.cpp7022 ImVec2 ImGui::FindBestWindowPosForPopupEx(const ImVec2& ref_pos, const ImVec2& size, ImGuiDir* last… in FindBestWindowPosForPopupEx() argument
7024 ImVec2 base_pos_clamped = ImClamp(ref_pos, r_outer.Min, r_outer.Max - size); in FindBestWindowPosForPopupEx()
7069 ImVec2 pos = ref_pos; in FindBestWindowPosForPopupEx()
7103 ImVec2 ref_pos = NavCalcPreferredRefPos(); in FindBestWindowPosForPopup() local
7106 r_avoid = ImRect(ref_pos.x - 16, ref_pos.y - 8, ref_pos.x + 16, ref_pos.y + 8); in FindBestWindowPosForPopup()
7108 …r_avoid = ImRect(ref_pos.x - 16, ref_pos.y - 8, ref_pos.x + 24 * sc, ref_pos.y + 24 * sc); // FIXM… in FindBestWindowPosForPopup()
7109 …ImVec2 pos = FindBestWindowPosForPopupEx(ref_pos, window->Size, &window->AutoPosLastDirection, r_o… in FindBestWindowPosForPopup()
7111 …pos = ref_pos + ImVec2(2, 2); // If there's not enough room, for tooltip we prefer avoiding the cu… in FindBestWindowPosForPopup()
8794 void ImGui::LogRenderedText(const ImVec2* ref_pos, const char* text, const char* text_end) in LogRenderedText() argument
8802 const bool log_new_line = ref_pos && (ref_pos->y > window->DC.LogLinePosY + 1); in LogRenderedText()
[all …]
Dimgui_internal.h1396 …IMGUI_API ImVec2 FindBestWindowPosForPopupEx(const ImVec2& ref_pos, const ImVec2& size, ImG…
1453 …IMGUI_API void LogRenderedText(const ImVec2* ref_pos, const char* text, const char* text_…
/external/libaom/libaom/av1/common/
Dav1_common_int.h1115 int ref_pos = ((mi_row & 0x01) || !(bh & 0x01) || !subsampling_y) && in is_chroma_reference() local
1117 return ref_pos; in is_chroma_reference()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c6075 static int round_floor(int ref_pos, int bsize_pix) { argument
6077 if (ref_pos < 0)
6078 round = -(1 + (-ref_pos - 1) / bsize_pix);
6080 round = ref_pos / bsize_pix;