Searched refs:s1x (Results 1 - 5 of 5) sorted by relevance
/third_party/ffmpeg/tests/checkasm/ |
H A D | vf_nlmeans.c | 66 const int s1x = e; in checkasm_check_nlmeans() local 70 const int startx_safe = FFMAX(s1x, s2x); in checkasm_check_nlmeans() 72 const int u_endx_safe = FFMIN(s1x + w, s2x + w); in checkasm_check_nlmeans() 78 av_assert0(startx_safe - s1x >= 0); av_assert0(startx_safe - s1x < w); in checkasm_check_nlmeans() 87 src + (starty_safe - s1y) * src_lz + (startx_safe - s1x), src_lz, in checkasm_check_nlmeans() 91 src + (starty_safe - s1y) * src_lz + (startx_safe - s1x), src_lz, in checkasm_check_nlmeans() 100 src + (starty_safe - s1y) * src_lz + (startx_safe - s1x), src_lz, in checkasm_check_nlmeans()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_nlmeans.c | 124 const int s1x = av_clip(x - r, 0, sw - 1); in compute_unsafe_ssd_integral_image() local 126 const uint8_t v1 = src[s1y*linesize + s1x]; in compute_unsafe_ssd_integral_image() 162 const int s1x = e; in compute_ssd_integral_image() local 171 const int startx_safe = FFMAX(s1x, s2x); in compute_ssd_integral_image() 173 const int u_endx_safe = FFMIN(s1x + w, s2x + w); // unaligned in compute_ssd_integral_image() 199 av_assert1(startx_safe - s1x >= 0); av_assert1(startx_safe - s1x < w); in compute_ssd_integral_image() 205 src + (starty_safe - s1y) * linesize + (startx_safe - s1x), linesize, in compute_ssd_integral_image()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_state_msaa.c | 28 #define FILL_SREG(s0x, s0y, s1x, s1y, s2x, s2y, s3x, s3y) \ 29 ((((unsigned)(s0x)&0xf) << 0) | (((unsigned)(s0y)&0xf) << 4) | (((unsigned)(s1x)&0xf) << 8) | \
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_pipe_common.h | 932 #define FILL_SREG(s0x, s0y, s1x, s1y, s2x, s2y, s3x, s3y) \ 934 (((unsigned)(s1x) & 0xf) << 8) | (((unsigned)(s1y) & 0xf) << 12) | \
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | si_cmd_buffer.c | 1844 #define FILL_SREG(s0x, s0y, s1x, s1y, s2x, s2y, s3x, s3y) \ 1845 ((((unsigned)(s0x)&0xf) << 0) | (((unsigned)(s0y)&0xf) << 4) | (((unsigned)(s1x)&0xf) << 8) | \
|
Completed in 7 milliseconds