Home
last modified time | relevance | path

Searched refs:target_y (Results 1 – 3 of 3) sorted by relevance

/external/webp/src/enc/
Dpicture_csp_enc.c468 fixed_y_t* target_y = target_y_base; in PreprocessARGB() local
503 UpdateW(src1, target_y, w); in PreprocessARGB()
504 UpdateW(src2, target_y + w, w); in PreprocessARGB()
509 target_y += 2 * w; in PreprocessARGB()
524 target_y = target_y_base; in PreprocessARGB()
541 diff_y_sum += WebPSharpYUVUpdateY(target_y, best_rgb_y, best_y, 2 * w); in PreprocessARGB()
546 target_y += 2 * w; in PreprocessARGB()
/external/libvpx/libvpx/vp8/encoder/
Dpickinter.c613 unsigned char *target_y = x->src.y_buffer; in vp8_pick_inter_mode() local
621 target_y = in vp8_pick_inter_mode()
635 cpi, x, target_y, stride, plane[LAST_FRAME][0], mb_row, mb_col, 0); in vp8_pick_inter_mode()
/external/mesa3d/src/imgui/
Dimgui.cpp4630 float target_y = window->ScrollTarget.y; in CalcNextScrollFromScrollTargetAndClamp() local
4631 if (snap_on_edges && cr_y <= 0.0f && target_y <= window->WindowPadding.y) in CalcNextScrollFromScrollTargetAndClamp()
4632 target_y = 0.0f; in CalcNextScrollFromScrollTargetAndClamp()
4633 …if (snap_on_edges && cr_y >= 1.0f && target_y >= window->SizeContents.y - window->WindowPadding.y … in CalcNextScrollFromScrollTargetAndClamp()
4634 target_y = window->SizeContents.y; in CalcNextScrollFromScrollTargetAndClamp()
4635 …scroll.y = target_y - (1.0f - cr_y) * (window->TitleBarHeight() + window->MenuBarHeight()) - cr_y … in CalcNextScrollFromScrollTargetAndClamp()
6432 …float target_y = window->DC.CursorPosPrevLine.y - window->Pos.y; // Top of last item, in window sp… in SetScrollHereY() local
6433target_y += (window->DC.PrevLineSize.y * center_y_ratio) + (GImGui->Style.ItemSpacing.y * (center_… in SetScrollHereY()
6434 SetScrollFromPosY(target_y, center_y_ratio); in SetScrollHereY()