Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/encoder/
Dmcomp.c1041 int ref_col; in vp8_diamond_search_sad_c() local
1059 ref_col = ref_mv->as_mv.col; in vp8_diamond_search_sad_c()
1062 best_mv->as_mv.col = ref_col; in vp8_diamond_search_sad_c()
1066 ref_col); in vp8_diamond_search_sad_c()
1154 int ref_col; in vp8_diamond_search_sadx4() local
1172 ref_col = ref_mv->as_mv.col; in vp8_diamond_search_sadx4()
1175 best_mv->as_mv.col = ref_col; in vp8_diamond_search_sadx4()
1179 ref_col); in vp8_diamond_search_sadx4()
1302 int ref_col = ref_mv->as_mv.col; in vp8_full_search_sad_c() local
1306 int col_min = ref_col - distance; in vp8_full_search_sad_c()
[all …]
/external/libvpx/libvpx/vp9/encoder/x86/
Dvp9_diamond_search_sad_avx.c102 const int ref_col = clamp(ref_mv->col, minmv.as_mv.col, maxmv.as_mv.col); in vp9_diamond_search_sad_avx() local
104 int_mv bmv = pack_int_mv(ref_row, ref_col); in vp9_diamond_search_sad_avx()
112 x->e_mbd.plane[0].pre[0].buf + ref_row * in_what_stride + ref_col; in vp9_diamond_search_sad_avx()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.c2104 int ref_col; in vp9_diamond_search_sad_c() local
2120 ref_col = ref_mv->col; in vp9_diamond_search_sad_c()
2123 best_mv->col = ref_col; in vp9_diamond_search_sad_c()
2126 in_what = xd->plane[0].pre[0].buf + ref_row * in_what_stride + ref_col; in vp9_diamond_search_sad_c()
/external/mesa3d/src/imgui/
Dimgui_widgets.cpp4102 …Gui::ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags, const float* ref_col) in ColorPicker4() argument
4254 if (ref_col != NULL) in ColorPicker4()
4257 …ImVec4 ref_col_v4(ref_col[0], ref_col[1], ref_col[2], (flags & ImGuiColorEditFlags_NoAlpha) ? 1.0f… in ColorPicker4()
4260 memcpy(col, ref_col, components * sizeof(float)); in ColorPicker4()
4573 void ImGui::ColorPickerOptionsPopup(const float* ref_col, ImGuiColorEditFlags flags) in ColorPickerOptionsPopup() argument
4597 …memcpy(&dummy_ref_col, ref_col, sizeof(float) * ((picker_flags & ImGuiColorEditFlags_NoAlpha) ? 3 … in ColorPickerOptionsPopup()
Dimgui_internal.h1494 … IMGUI_API void ColorPickerOptionsPopup(const float* ref_col, ImGuiColorEditFlags flags);
Dimgui.h466 …cker4(const char* label, float col[4], ImGuiColorEditFlags flags = 0, const float* ref_col = NULL);