Home
last modified time | relevance | path

Searched refs:off_y (Results 1 - 11 of 11) sorted by relevance

/third_party/ffmpeg/libavfilter/
H A Dvf_lenscorrection.c96 const int off_y = i - ycenter; \
102 const int y = ycenter + ((radius_mult * off_y + (1<<23))>>24); \
139 const int off_y = i - ycenter; \
146 const int y = ycenter + ((radius_mult * off_y + (1<<23)) >> 24); \
153 const uint64_t dv = off_y >= 0 ? (radius_mult * off_y + add) & max : max - ((radius_mult * -off_y + add) & max); \
227 const int off_y = j - ycenter; in calc_correction() local
228 const int off_y2 = off_y * off_y; in calc_correction()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dinterplayvideo.c938 int off_x, off_y; in ipvideo_format_06_secondpass() local
942 off_y = ((uint16_t)opcode - 0xC000) / frame->width; in ipvideo_format_06_secondpass()
943 copy_from(s, s->last_frame, frame, off_x, off_y); in ipvideo_format_06_secondpass()
946 off_y = ((uint16_t)opcode - 0x4000) / frame->width; in ipvideo_format_06_secondpass()
947 copy_from(s, frame, frame, off_x, off_y); in ipvideo_format_06_secondpass()
1008 int off_x, off_y; in ipvideo_format_10_secondpass() local
1012 off_y = ((uint16_t)opcode - 0xC000) / s->cur_decode_frame->width; in ipvideo_format_10_secondpass()
1013 copy_from(s, s->prev_decode_frame, s->cur_decode_frame, off_x, off_y); in ipvideo_format_10_secondpass()
1016 off_y = ((uint16_t)opcode - 0x4000) / s->cur_decode_frame->width; in ipvideo_format_10_secondpass()
1017 copy_from(s, s->cur_decode_frame, s->cur_decode_frame, off_x, off_y); in ipvideo_format_10_secondpass()
[all...]
/third_party/backends/backend/escl/
H A Descl_newjob.c131 int off_x = 0, off_y = 0; in escl_newjob() local
215 off_y = (scanner->caps[scanner->source].pos_y > scanner->caps[scanner->source].height) / 2; in escl_newjob()
273 off_y, in escl_newjob()
/third_party/mesa3d/src/gallium/drivers/freedreno/a2xx/
H A Dfd2_gmem.c626 float off_x, off_y, mul_x, mul_y; variable
639 off_y = -pipe->y * (1.0f / 8.0f) + 0.125f - mul_y * gmem->miny;
642 OUT_RING(ring, fui(off_y * (256.0f / 255.0f)));
/third_party/mesa3d/src/imgui/
H A Dimstb_truetype.h2832 static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsubsample, int off_x, int off_y, void *userdata)
2846 y = off_y * vsubsample;
2847 e[n].y0 = (off_y + result->h) * (float) vsubsample + 1;
3137 static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsubsample, int off_x, int off_y, void *userdata)
3153 y = off_y;
3154 e[n].y0 = (float) (off_y + result->h) + 1;
3184 if (j == 0 && off_y != 0) {
3330 static void stbtt__rasterize(stbtt__bitmap *result, stbtt__point *pts, int *wcount, int windings, float scale_x, float scale_y, float shift_x, float shift_y, int off_x, int off_y, int invert, void *userdata)
3382 stbtt__rasterize_sorted_edges(result, e, n, vsubsample, off_x, off_y, userdata);
/third_party/skia/third_party/externals/imgui/
H A Dimstb_truetype.h2832 static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsubsample, int off_x, int off_y, void *userdata)
2846 y = off_y * vsubsample;
2847 e[n].y0 = (off_y + result->h) * (float) vsubsample + 1;
3137 static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsubsample, int off_x, int off_y, void *userdata)
3153 y = off_y;
3154 e[n].y0 = (float) (off_y + result->h) + 1;
3184 if (j == 0 && off_y != 0) {
3330 static void stbtt__rasterize(stbtt__bitmap *result, stbtt__point *pts, int *wcount, int windings, float scale_x, float scale_y, float shift_x, float shift_y, int off_x, int off_y, int invert, void *userdata)
3382 stbtt__rasterize_sorted_edges(result, e, n, vsubsample, off_x, off_y, userdata);
H A Dimgui_draw.cpp2645 for (int off_y = 0; off_y < h; off_y++, out_pixel += atlas->TexWidth, in_str += w) in ImFontAtlasBuildRender8bppRectFromString()
2655 for (int off_y = 0; off_y < h; off_y++, out_pixel += atlas->TexWidth, in_str += w) in ImFontAtlasBuildRender32bppRectFromString()
H A Dimgui.cpp2294 float off_y = pos_y - window->DC.CursorPos.y; in SetCursorPosYAndSetupForPrevLine() local
2306 const int row_increase = (int)((off_y / line_height) + 0.5f); in SetCursorPosYAndSetupForPrevLine()
/third_party/mesa3d/src/gallium/drivers/lima/
H A Dlima_job.c485 lima_generate_pp_stream(struct lima_job *job, int off_x, int off_y, in lima_generate_pp_stream() argument
523 y += off_y; in lima_generate_pp_stream()
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_fs_nir.cpp3748 unsigned off_y = const_offset[1].u32 & 0xf;
3754 brw_imm_ud(off_x | (off_y << 4)),
/third_party/glfw/deps/
H A Dnuklear.h11862 int n, int vsubsample, int off_x, int off_y, struct nk_allocator *alloc) in nk_tt__rasterize_sorted_edges()
11879 y = off_y; in nk_tt__rasterize_sorted_edges()
11880 e[n].y0 = (float) (off_y + result->h) + 1; in nk_tt__rasterize_sorted_edges()
12046 float shift_x, float shift_y, int off_x, int off_y, int invert, in nk_tt__rasterize()
12095 nk_tt__rasterize_sorted_edges(result, e, n, vsubsample, off_x, off_y, alloc); in nk_tt__rasterize()
11861 nk_tt__rasterize_sorted_edges(struct nk_tt__bitmap *result, struct nk_tt__edge *e, int n, int vsubsample, int off_x, int off_y, struct nk_allocator *alloc) nk_tt__rasterize_sorted_edges() argument
12044 nk_tt__rasterize(struct nk_tt__bitmap *result, struct nk_tt__point *pts, int *wcount, int windings, float scale_x, float scale_y, float shift_x, float shift_y, int off_x, int off_y, int invert, struct nk_allocator *alloc) nk_tt__rasterize() argument

Completed in 108 milliseconds