Home
last modified time | relevance | path

Searched refs:y_off (Results 1 - 17 of 17) sorted by relevance

/third_party/backends/backend/escl/
H A Descl_crop.c43 int y_off = 0, y = 0; in escl_crop_surface() local
62 y_off = (int)((double)scanner->caps[scanner->source].pos_y * ratio); in escl_crop_surface()
63 real_h = scanner->caps[scanner->source].height - y_off; in escl_crop_surface()
72 y_off > 0 || real_h < scanner->caps[scanner->source].height) { in escl_crop_surface()
86 surface[((y + y_off) * w * bps) + ((x + x_off) * bps)]; in escl_crop_surface()
88 surface[((y + y_off) * w * bps) + ((x + x_off) * bps) + 1]; in escl_crop_surface()
90 surface[((y + y_off) * w * bps) + ((x + x_off) * bps) + 2]; in escl_crop_surface()
H A Descl_jpeg.c165 JDIMENSION y_off = 0; in get_JPEG_data() local
223 y_off = ry; in get_JPEG_data()
224 if(y_off > (unsigned int)rh) { in get_JPEG_data()
226 y_off = 0; in get_JPEG_data()
229 h = rh - y_off; in get_JPEG_data()
232 y_off, in get_JPEG_data()
249 if (y_off > 0) in get_JPEG_data()
250 jpeg_skip_scanlines(&cinfo, y_off); in get_JPEG_data()
/third_party/ffmpeg/libavcodec/
H A Dvp8.c1804 * @param y_off vertical position of block from origin (0, 0)
1815 int x_off, int y_off, int block_w, int block_h, in vp8_mc_luma()
1828 y_off += mv->y >> 2; in vp8_mc_luma()
1831 ff_thread_await_progress(ref, (3 + y_off + block_h + subpel_idx[2][my]) >> 4, 0); in vp8_mc_luma()
1832 src += y_off * linesize + x_off; in vp8_mc_luma()
1834 y_off < my_idx || y_off >= height - block_h - subpel_idx[2][my]) { in vp8_mc_luma()
1840 x_off - mx_idx, y_off - my_idx, in vp8_mc_luma()
1847 ff_thread_await_progress(ref, (3 + y_off + block_h) >> 4, 0); in vp8_mc_luma()
1848 mc_func[0][0](dst, linesize, src + y_off * linesiz in vp8_mc_luma()
1813 vp8_mc_luma(VP8Context *s, VP8ThreadData *td, uint8_t *dst, ThreadFrame *ref, const VP56mv *mv, int x_off, int y_off, int block_w, int block_h, int width, int height, ptrdiff_t linesize, vp8_mc_func mc_func[3][3]) vp8_mc_luma() argument
1871 vp8_mc_chroma(VP8Context *s, VP8ThreadData *td, uint8_t *dst1, uint8_t *dst2, ThreadFrame *ref, const VP56mv *mv, int x_off, int y_off, int block_w, int block_h, int width, int height, ptrdiff_t linesize, vp8_mc_func mc_func[3][3]) vp8_mc_chroma() argument
1921 vp8_mc_part(VP8Context *s, VP8ThreadData *td, uint8_t *dst[3], ThreadFrame *ref_frame, int x_off, int y_off, int bx_off, int by_off, int block_w, int block_h, int width, int height, VP56mv *mv) vp8_mc_part() argument
1964 int x_off = mb_x << 4, y_off = mb_y << 4; prefetch_motion() local
1985 int x_off = mb_x << 4, y_off = mb_y << 4; inter_predict() local
[all...]
H A Dfic.c38 int y_off; member
180 int y_off = tctx->y_off; in fic_decode_slice() local
189 uint8_t* dst = ctx->frame->data[p] + (y_off >> !!p) * stride; in fic_decode_slice()
378 int y_off = ctx->slice_h * slice; in fic_decode_frame() local
402 ctx->slice_data[slice].y_off = y_off; in fic_decode_frame()
H A Dvp9dec.h252 ptrdiff_t y_off, ptrdiff_t uv_off);
254 ptrdiff_t y_off, ptrdiff_t uv_off);
H A Dvmdvideo.c61 int x_off, y_off; member
210 s->y_off = frame_y; in vmd_decode()
213 frame_y -= s->y_off; in vmd_decode()
H A Dvp9recon.c218 static av_always_inline void intra_recon(VP9TileData *td, ptrdiff_t y_off, in intra_recon() argument
230 uint8_t *dst = td->dst[0], *dst_r = s->s.frames[CUR_FRAME].tf.f->data[0] + y_off; in intra_recon()
288 void ff_vp9_intra_recon_8bpp(VP9TileData *td, ptrdiff_t y_off, ptrdiff_t uv_off) in ff_vp9_intra_recon_8bpp() argument
290 intra_recon(td, y_off, uv_off, 1); in ff_vp9_intra_recon_8bpp()
293 void ff_vp9_intra_recon_16bpp(VP9TileData *td, ptrdiff_t y_off, ptrdiff_t uv_off) in ff_vp9_intra_recon_16bpp() argument
295 intra_recon(td, y_off, uv_off, 2); in ff_vp9_intra_recon_16bpp()
H A Dhevcdec.c1493 * @param y_off vertical position of block from origin (0, 0)
1501 AVFrame *ref, const Mv *mv, int x_off, int y_off, in luma_mc_uni()
1516 y_off += mv->y >> 2; in luma_mc_uni()
1517 src += y_off * srcstride + (x_off * (1 << s->ps.sps->pixel_shift)); in luma_mc_uni()
1519 if (x_off < QPEL_EXTRA_BEFORE || y_off < QPEL_EXTRA_AFTER || in luma_mc_uni()
1521 y_off >= pic_height - block_h - QPEL_EXTRA_AFTER || in luma_mc_uni()
1531 x_off - QPEL_EXTRA_BEFORE, y_off - QPEL_EXTRA_BEFORE, in luma_mc_uni()
1555 * @param y_off vertical position of block from origin (0, 0)
1563 AVFrame *ref0, const Mv *mv0, int x_off, int y_off, in luma_mc_bi()
1578 int y_off0 = y_off in luma_mc_bi()
1500 luma_mc_uni(HEVCContext *s, uint8_t *dst, ptrdiff_t dststride, AVFrame *ref, const Mv *mv, int x_off, int y_off, int block_w, int block_h, int luma_weight, int luma_offset) luma_mc_uni() argument
1562 luma_mc_bi(HEVCContext *s, uint8_t *dst, ptrdiff_t dststride, AVFrame *ref0, const Mv *mv0, int x_off, int y_off, int block_w, int block_h, AVFrame *ref1, const Mv *mv1, struct MvField *current_mv) luma_mc_bi() argument
1653 chroma_mc_uni(HEVCContext *s, uint8_t *dst0, ptrdiff_t dststride, uint8_t *src0, ptrdiff_t srcstride, int reflist, int x_off, int y_off, int block_w, int block_h, struct MvField *current_mv, int chroma_weight, int chroma_offset) chroma_mc_uni() argument
1720 chroma_mc_bi(HEVCContext *s, uint8_t *dst0, ptrdiff_t dststride, AVFrame *ref0, AVFrame *ref1, int x_off, int y_off, int block_w, int block_h, struct MvField *current_mv, int cidx) chroma_mc_bi() argument
[all...]
H A Dvp56.c474 int y_off = b==2 || b==3 ? 8 : 0; in vp56_render_mb() local
477 16*col+x_off, 16*row+y_off); in vp56_render_mb()
/third_party/icu/tools/unicodetools/com/ibm/rbm/gui/
H A DRBUntranslatedPanel.java114 int y_off = 50; in printTable()
118 pg.drawString("Untranslated Items: Page 1", x_off, y_off); in printTable()
122 if (y_off < page_dim.height - 50) { in printTable()
123 y_off += 15; in printTable()
126 pg.drawString(key + " -> " + translation, x_off, y_off); in printTable()
/third_party/backends/backend/
H A Dxerox_mfp.c1255 (y + dev->y_off) < dev->para.lines) { in copy_plain_trim()
1274 const int y_off = dev->dataindex / linesize; in copy_mix_bands_trim() local
1288 const int y = k / linesize - y_off; /* y relative to buffer head */ in copy_mix_bands_trim()
1289 const int y_rly = y + y_off + dev->y_off; /* global y */ in copy_mix_bands_trim()
1300 return (k / linesize - y_off) * linesize; in copy_mix_bands_trim()
1373 dev->y_off = dev->ulines - dev->vertical; in sane_read()
1428 dev->dataindex / dev->bytes_per_line + dev->y_off, in sane_read()
1429 dev->y_off, dev->para.lines); in sane_read()
1432 if (dev->dataindex / dev->bytes_per_line + dev->y_off > in sane_read()
[all...]
H A Dxerox_mfp.h117 int y_off; /* up to this block excluding*/ member
/third_party/python/Lib/tkinter/
H A Ddnd.py244 self.y_off = event.y
263 return x - self.x_off, y - self.y_off
/third_party/mesa3d/src/imgui/
H A Dimstb_truetype.h920 int x_off, int y_off, // another translation applied to input
3535 STBTT_DEF void stbtt_Rasterize(stbtt__bitmap *result, float flatness_in_pixels, stbtt_vertex *vertices, int num_verts, float scale_x, float scale_y, float shift_x, float shift_y, int x_off, int y_off, int invert, void *userdata)
3542 stbtt__rasterize(result, windings, winding_lengths, winding_count, scale_x, scale_y, shift_x, shift_y, x_off, y_off, invert, userdata);
/third_party/skia/third_party/externals/imgui/
H A Dimstb_truetype.h920 int x_off, int y_off, // another translation applied to input
3535 STBTT_DEF void stbtt_Rasterize(stbtt__bitmap *result, float flatness_in_pixels, stbtt_vertex *vertices, int num_verts, float scale_x, float scale_y, float shift_x, float shift_y, int x_off, int y_off, int invert, void *userdata)
3542 stbtt__rasterize(result, windings, winding_lengths, winding_count, scale_x, scale_y, shift_x, shift_y, x_off, y_off, invert, userdata);
/third_party/glfw/deps/
H A Dnuklear.h12215 int x_off, int y_off, int invert, struct nk_allocator *alloc) in nk_tt_Rasterize()
12225 scale_x, scale_y, shift_x, shift_y, x_off, y_off, invert, alloc); in nk_tt_Rasterize()
12212 nk_tt_Rasterize(struct nk_tt__bitmap *result, float flatness_in_pixels, struct nk_tt_vertex *vertices, int num_verts, float scale_x, float scale_y, float shift_x, float shift_y, int x_off, int y_off, int invert, struct nk_allocator *alloc) nk_tt_Rasterize() argument
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp[all...]

Completed in 92 milliseconds