Home
last modified time | relevance | path

Searched refs:v_offset (Results 1 – 11 of 11) sorted by relevance

/third_party/gstreamer/gstplugins_good/gst/videofilter/
Dgstvideoflip.c785 gint v_offset; in gst_video_flip_y422() local
796 v_offset = GST_VIDEO_FRAME_COMP_OFFSET (src, 2); in gst_video_flip_y422()
813 v = s[(sh - 1 - x) * src_stride + even_y * bpp + v_offset]; in gst_video_flip_y422()
815 v = (s[(sh - 1 - (x + 1)) * src_stride + even_y * bpp + v_offset] in gst_video_flip_y422()
819 d[y * dest_stride + x * bpp + v_offset] = v; in gst_video_flip_y422()
839 v = s[x * src_stride + even_y * bpp + v_offset]; in gst_video_flip_y422()
841 v = (s[(x + 1) * src_stride + even_y * bpp + v_offset] + v) >> 1; in gst_video_flip_y422()
844 d[y * dest_stride + x * bpp + v_offset] = v; in gst_video_flip_y422()
863 v = (s[(sh - 1 - y) * src_stride + even_x * bpp + v_offset] + in gst_video_flip_y422()
864 s[(sh - 1 - y) * src_stride + even_x * bpp + v_offset]) / 2; in gst_video_flip_y422()
[all …]
/third_party/flutter/skia/modules/skottie/src/text/
DSkottieShaper.cpp178 float v_offset = 0; in finalize() local
181 v_offset = -ascent; in finalize()
187 v_offset = fBox.fTop - extent_box().fTop; in finalize()
191 v_offset = fBox.centerY() - ebox.centerY(); in finalize()
197 v_offset = fBox.fBottom - extent_box().fBottom; in finalize()
204 if (v_offset) { in finalize()
206 fragment.fPos.fY += v_offset; in finalize()
/third_party/skia/modules/skottie/src/text/
DSkottieShaper.cpp178 float v_offset = -fDesc.fLineShift; in finalize() local
182 v_offset -= ascent; in finalize()
189 v_offset += fBox.fTop - ebox->fTop; in finalize()
193 v_offset += fBox.centerY() - ebox->centerY(); in finalize()
197 v_offset += fBox.fBottom - ebox->fBottom; in finalize()
208 if (v_offset) { in finalize()
210 fragment.fPos.fY += v_offset; in finalize()
/third_party/ffmpeg/libavcodec/
Dindeo3.c900 int y_offset, u_offset, v_offset; in decode_frame_headers() local
963 v_offset = bytestream2_get_le32(&gb); in decode_frame_headers()
970 starts[1] = v_offset; in decode_frame_headers()
983 if (FFMIN3(y_offset, v_offset, u_offset) < 0 || in decode_frame_headers()
984 FFMAX3(y_offset, v_offset, u_offset) >= ctx->data_size - 16 || in decode_frame_headers()
985 FFMIN3(y_offset, v_offset, u_offset) < gb.buffer - bs_hdr + 16 || in decode_frame_headers()
992 ctx->v_data_ptr = bs_hdr + v_offset; in decode_frame_headers()
/third_party/ffmpeg/libswscale/x86/
Dyuv_2_rgb.asm96 %define v_offset [pointer_c_ditherq + 10 * 8]
118 %define v_offset m10
134 VBROADCASTSD v_offset, [pointer_c_ditherq + 10 * 8]
178 psubsw m1, v_offset ; V = V - 128
/third_party/gstreamer/gstplugins_bad/ext/closedcaption/
Dgstceaccoverlay.c1349 window->v_offset = v_anchor; in gst_cea_cc_overlay_create_and_push_buffer()
1355 window->v_offset = v_anchor - window->image_height / 2; in gst_cea_cc_overlay_create_and_push_buffer()
1361 window->v_offset = v_anchor - window->image_height; in gst_cea_cc_overlay_create_and_push_buffer()
1377 window->image_width, window->v_offset, window->h_offset, in gst_cea_cc_overlay_create_and_push_buffer()
1381 window->v_offset, window->image_width, window->image_height, 0); in gst_cea_cc_overlay_create_and_push_buffer()
Dgstcea708decoder.h432 guint v_offset; member
Dgstcea708decoder.c915 window->v_offset, window->h_offset, v_anchor, h_anchor); in gst_cea708dec_define_window()
1384 window->v_offset = 0; in gst_cea708dec_init_window()
1439 decoder->cc_windows[i]->v_offset, decoder->cc_windows[i]->h_offset); in gst_cea708dec_for_each_window()
/third_party/ffmpeg/libavfilter/
Dvf_v360.c3513 int v_offset = 0; in xyz_to_barrelsplit() local
3525 v_offset = -eh; in xyz_to_barrelsplit()
3535 v_offset = -eh; in xyz_to_barrelsplit()
3543 vf = height * 0.25f * (vf * scaleh + 1.f) + v_offset; in xyz_to_barrelsplit()
/third_party/mesa3d/src/amd/compiler/
Daco_instruction_selection.cpp7208 Temp v_offset = as_vgpr(ctx, get_ssa_temp(ctx, intrin->src[1].ssa)); in visit_load_buffer() local
7223 load_vmem_mubuf(ctx, dst, descriptor, v_offset, s_offset, const_offset, elem_size_bytes, in visit_load_buffer()
7232 Temp v_offset = get_ssa_temp(ctx, intrin->src[2].ssa); in visit_store_buffer() local
7245 store_vmem_mubuf(ctx, store_src, descriptor, v_offset, s_offset, const_offset, elem_size_bytes, in visit_store_buffer()
/third_party/chromium/patch/
D0001-cve.patch29048 + uint32_t v_offset = i << ELT_BITS_LOG_2;
29053 + hb_codepoint_t value = base | v_offset | j;