Searched refs:s2x (Results 1 - 6 of 6) sorted by relevance
/third_party/ffmpeg/tests/checkasm/ |
H A D | vf_nlmeans.c | 68 const int s2x = e + offx; 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() 80 av_assert0(startx_safe - s2x >= 0); av_assert0(startx_safe - s2x < w); in checkasm_check_nlmeans() 88 src + (starty_safe - s2y) * src_lz + (startx_safe - s2x), src_lz, in checkasm_check_nlmeans() 92 src + (starty_safe - s2y) * src_lz + (startx_safe - s2x), src_lz, in checkasm_check_nlmeans() 101 src + (starty_safe - s2y) * src_lz + (startx_safe - s2x), src_lz, in checkasm_check_nlmeans()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_nlmeans.c | 125 const int s2x = av_clip(x - (r + offx), 0, sw - 1); in compute_unsafe_ssd_integral_image() local 127 const uint8_t v2 = src[s2y*linesize + s2x]; in compute_unsafe_ssd_integral_image() 166 const int s2x = e + offx; 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() 201 av_assert1(startx_safe - s2x >= 0); av_assert1(startx_safe - s2x < w); in compute_ssd_integral_image() 206 src + (starty_safe - s2y) * linesize + (startx_safe - s2x), 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) \ 30 (((unsigned)(s1y)&0xf) << 12) | (((unsigned)(s2x)&0xf) << 16) | \
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/tests/ |
H A D | sfn_liverange_test.cpp | 173 auto s2x = vf.dest_from_string("S2.x"); in TEST_F() local 189 expect.set_life_range(*s2x, 4, 5); in TEST_F()
|
/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) \ 935 (((unsigned)(s2x) & 0xf) << 16) | (((unsigned)(s2y) & 0xf) << 20) | \
|
/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) \ 1846 (((unsigned)(s1y)&0xf) << 12) | (((unsigned)(s2x)&0xf) << 16) | \
|
Completed in 14 milliseconds