Searched refs:int_x (Results 1 – 6 of 6) sorted by relevance
/third_party/ffmpeg/tests/ |
D | rotozoom.c | 67 int int_x = x >> 16; in ipol() local 71 int s00 = src[( int_x & 255) + 256 * ( int_y & 255)]; in ipol() 72 int s01 = src[((int_x + 1) & 255) + 256 * ( int_y & 255)]; in ipol() 73 int s10 = src[( int_x & 255) + 256 * ((int_y + 1) & 255)]; in ipol() 74 int s11 = src[((int_x + 1) & 255) + 256 * ((int_y + 1) & 255)]; in ipol()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_rotate.c | 237 int int_x = av_clip(x>>16, 0, max_x); in interpolate_bilinear8() local 242 int int_x1 = FFMIN(int_x+1, max_x); in interpolate_bilinear8() 246 int s00 = src[src_linestep * int_x + i + src_linesize * int_y ]; in interpolate_bilinear8() 248 int s10 = src[src_linestep * int_x + i + src_linesize * int_y1]; in interpolate_bilinear8() 267 int int_x = av_clip(x>>16, 0, max_x); in interpolate_bilinear16() local 272 int int_x1 = FFMIN(int_x+1, max_x); in interpolate_bilinear16() 276 int s00 = AV_RL16(&src[src_linestep * int_x + i + src_linesize * int_y ]); in interpolate_bilinear16() 278 int s10 = AV_RL16(&src[src_linestep * int_x + i + src_linesize * int_y1]); in interpolate_bilinear16()
|
/third_party/weston/libweston/ |
D | tde-render-part.cpp | 191 float int_x = floorf(min_x); in weston_view_compute_global_region() local 193 pixman_region32_init_rect(outr, int_x, int_y, in weston_view_compute_global_region() 194 ceilf(max_x) - int_x, ceilf(max_y) - int_y); in weston_view_compute_global_region()
|
D | compositor.c | 1402 float int_x, int_y; in view_compute_bbox() local 1424 int_x = floorf(min_x); in view_compute_bbox() 1426 pixman_region32_init_rect(bbox, int_x, int_y, in view_compute_bbox() 1427 ceilf(max_x) - int_x, ceilf(max_y) - int_y); in view_compute_bbox()
|
/third_party/weston/clients/ |
D | dnd.c | 647 int32_t int_x, int_y; in dnd_touch_down_handler() local 652 int_x = (int32_t)x; in dnd_touch_down_handler() 654 if (create_drag_source(dnd, input, time, int_x, int_y) == 0) in dnd_touch_down_handler()
|
/third_party/weston/libweston/backend-hdi/ |
D | hdi_renderer.cpp | 390 float int_x = floorf(min_x); in weston_view_compute_global_region() local 392 pixman_region32_init_rect(outr, int_x, int_y, in weston_view_compute_global_region() 393 ceilf(max_x) - int_x, ceilf(max_y) - int_y); in weston_view_compute_global_region()
|