Home
last modified time | relevance | path

Searched refs:ref_dst (Results 1 – 25 of 72) sorted by relevance

123

/dports/graphics/piglit/piglit-136a7f5fa0703603be1ffb338abe4865e76a8058/tests/spec/ext_framebuffer_multisample/
H A Dclip-and-scissor-blit.cpp191 ref_dst[coord][1] -= cut; in do_test()
196 ref_dst[coord][0] += cut; in do_test()
205 ref_dst[coord][0] = 0; in do_test()
206 ref_dst[coord][1] = test_dst[coord][1]; in do_test()
213 ref_dst[coord][1] = dst_size[coord]; in do_test()
221 ref_dst[coord][0] += cut; in do_test()
226 ref_dst[coord][1] -= cut; in do_test()
247 ref_dst[coord][0] = dst_size[coord] - ref_dst[coord][0]; in do_test()
248 ref_dst[coord][1] = dst_size[coord] - ref_dst[coord][1]; in do_test()
297 ref_dst[0][0], ref_dst[1][0], in do_test()
[all …]
/dports/multimedia/handbrake/ffmpeg-4.4/tests/checkasm/
H A Dflacdsp.c44 static void check_decorrelate(uint8_t **ref_dst, uint8_t **ref_src, uint8_t **new_dst, uint8_t **ne… in check_decorrelate() argument
49 call_ref(ref_dst, (int32_t **)ref_src, channels, BUF_SIZE / sizeof(int32_t), 8); in check_decorrelate()
51 if (memcmp(*ref_dst, *new_dst, bits == 16 ? BUF_SIZE * (channels/2) : BUF_SIZE * channels) || in check_decorrelate()
59 LOCAL_ALIGNED_16(uint8_t, ref_dst, [BUF_SIZE*MAX_CHANNELS]); in checkasm_check_flacdsp()
82 check_decorrelate(&ref_dst, ref_src, &new_dst, new_src, 2, fmts[i].bits); in checkasm_check_flacdsp()
86 check_decorrelate(&ref_dst, ref_src, &new_dst, new_src, j, fmts[i].bits); in checkasm_check_flacdsp()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/tests/checkasm/
H A Dflacdsp.c43 static void check_decorrelate(uint8_t **ref_dst, uint8_t **ref_src, uint8_t **new_dst, uint8_t **ne… in check_decorrelate() argument
48 call_ref(ref_dst, (int32_t **)ref_src, channels, BUF_SIZE / sizeof(int32_t), 8); in check_decorrelate()
50 if (memcmp(*ref_dst, *new_dst, bits == 16 ? BUF_SIZE * (channels/2) : BUF_SIZE * channels) || in check_decorrelate()
58 LOCAL_ALIGNED_16(uint8_t, ref_dst, [BUF_SIZE*MAX_CHANNELS]); in checkasm_check_flacdsp()
81 check_decorrelate(&ref_dst, ref_src, &new_dst, new_src, 2, fmts[i].bits); in checkasm_check_flacdsp()
85 check_decorrelate(&ref_dst, ref_src, &new_dst, new_src, j, fmts[i].bits); in checkasm_check_flacdsp()
/dports/multimedia/gstreamer1-libav/gst-libav-1.16.2/gst-libs/ext/libav/tests/checkasm/
H A Dflacdsp.c43 static void check_decorrelate(uint8_t **ref_dst, uint8_t **ref_src, uint8_t **new_dst, uint8_t **ne… in check_decorrelate() argument
48 call_ref(ref_dst, (int32_t **)ref_src, channels, BUF_SIZE / sizeof(int32_t), 8); in check_decorrelate()
50 if (memcmp(*ref_dst, *new_dst, bits == 16 ? BUF_SIZE * (channels/2) : BUF_SIZE * channels) || in check_decorrelate()
58 LOCAL_ALIGNED_16(uint8_t, ref_dst, [BUF_SIZE*MAX_CHANNELS]); in checkasm_check_flacdsp()
81 check_decorrelate(&ref_dst, ref_src, &new_dst, new_src, 2, fmts[i].bits); in checkasm_check_flacdsp()
85 check_decorrelate(&ref_dst, ref_src, &new_dst, new_src, j, fmts[i].bits); in checkasm_check_flacdsp()
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/tests/checkasm/
H A Dflacdsp.c44 static void check_decorrelate(uint8_t **ref_dst, uint8_t **ref_src, uint8_t **new_dst, uint8_t **ne… in check_decorrelate() argument
49 call_ref(ref_dst, (int32_t **)ref_src, channels, BUF_SIZE / sizeof(int32_t), 8); in check_decorrelate()
51 if (memcmp(*ref_dst, *new_dst, bits == 16 ? BUF_SIZE * (channels/2) : BUF_SIZE * channels) || in check_decorrelate()
59 LOCAL_ALIGNED_16(uint8_t, ref_dst, [BUF_SIZE*MAX_CHANNELS]); in checkasm_check_flacdsp()
82 check_decorrelate(&ref_dst, ref_src, &new_dst, new_src, 2, fmts[i].bits); in checkasm_check_flacdsp()
86 check_decorrelate(&ref_dst, ref_src, &new_dst, new_src, j, fmts[i].bits); in checkasm_check_flacdsp()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libaom/source/libaom/test/
H A Dintrapred_test.cc70 void RunTest(Pixel *left_col, Pixel *above_data, Pixel *dst, Pixel *ref_dst) { in RunTest() argument
77 ref_dst_ = ref_dst; in RunTest()
101 Pixel *ref_dst) { in RunSpeedTest() argument
108 ref_dst_ = ref_dst; in RunSpeedTest()
250 DECLARE_ALIGNED(16, uint16_t, ref_dst[3 * 64 * 64]); in TEST_P()
253 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
262 DECLARE_ALIGNED(16, uint8_t, ref_dst[3 * 64 * 64]); in TEST_P()
265 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
272 DECLARE_ALIGNED(16, uint8_t, ref_dst[3 * 64 * 64]); in TEST_P()
275 RunSpeedTest(left_col, above_data, dst, ref_dst); in TEST_P()
H A Dav1_horz_only_frame_superres_test.cc139 const Pixel *ref_dst = &dst_data_[0]; in Check() local
143 if (0 == memcmp(ref_dst, tst_dst, sizeof(*ref_dst) * num_pixels)) return; in Check()
150 const int32_t ref_value = ref_dst[r * stride + c]; in Check()
/dports/multimedia/aom/aom-3.2.0/test/
H A Dintrapred_test.cc69 void RunTest(Pixel *left_col, Pixel *above_data, Pixel *dst, Pixel *ref_dst) { in RunTest() argument
76 ref_dst_ = ref_dst; in RunTest()
100 Pixel *ref_dst) { in RunSpeedTest() argument
107 ref_dst_ = ref_dst; in RunSpeedTest()
249 DECLARE_ALIGNED(16, uint16_t, ref_dst[3 * 64 * 64]); in TEST_P()
252 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
261 DECLARE_ALIGNED(16, uint8_t, ref_dst[3 * 64 * 64]); in TEST_P()
264 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
271 DECLARE_ALIGNED(16, uint8_t, ref_dst[3 * 64 * 64]); in TEST_P()
274 RunSpeedTest(left_col, above_data, dst, ref_dst); in TEST_P()
/dports/www/firefox-esr/firefox-91.8.0/third_party/aom/test/
H A Dintrapred_test.cc70 void RunTest(Pixel *left_col, Pixel *above_data, Pixel *dst, Pixel *ref_dst) { in RunTest() argument
77 ref_dst_ = ref_dst; in RunTest()
162 DECLARE_ALIGNED(16, uint16_t, ref_dst[3 * 64 * 64]); in TEST_P()
165 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
175 DECLARE_ALIGNED(16, uint8_t, ref_dst[3 * 32 * 32]); in TEST_P()
178 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
H A Dav1_horz_only_frame_superres_test.cc138 const Pixel *ref_dst = &dst_data_[0]; in Check() local
142 if (0 == memcmp(ref_dst, tst_dst, sizeof(*ref_dst) * num_pixels)) return; in Check()
149 const int32_t ref_value = ref_dst[r * stride + c]; in Check()
/dports/www/firefox/firefox-99.0/third_party/aom/test/
H A Dintrapred_test.cc70 void RunTest(Pixel *left_col, Pixel *above_data, Pixel *dst, Pixel *ref_dst) { in RunTest() argument
77 ref_dst_ = ref_dst; in RunTest()
162 DECLARE_ALIGNED(16, uint16_t, ref_dst[3 * 64 * 64]); in TEST_P()
165 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
175 DECLARE_ALIGNED(16, uint8_t, ref_dst[3 * 32 * 32]); in TEST_P()
178 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
H A Dav1_horz_only_frame_superres_test.cc138 const Pixel *ref_dst = &dst_data_[0]; in Check() local
142 if (0 == memcmp(ref_dst, tst_dst, sizeof(*ref_dst) * num_pixels)) return; in Check()
149 const int32_t ref_value = ref_dst[r * stride + c]; in Check()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/aom/test/
H A Dintrapred_test.cc70 void RunTest(Pixel *left_col, Pixel *above_data, Pixel *dst, Pixel *ref_dst) { in RunTest() argument
77 ref_dst_ = ref_dst; in RunTest()
162 DECLARE_ALIGNED(16, uint16_t, ref_dst[3 * 64 * 64]); in TEST_P()
165 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
175 DECLARE_ALIGNED(16, uint8_t, ref_dst[3 * 32 * 32]); in TEST_P()
178 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
H A Dav1_horz_only_frame_superres_test.cc138 const Pixel *ref_dst = &dst_data_[0]; in Check() local
142 if (0 == memcmp(ref_dst, tst_dst, sizeof(*ref_dst) * num_pixels)) return; in Check()
149 const int32_t ref_value = ref_dst[r * stride + c]; in Check()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/aom/test/
H A Dintrapred_test.cc70 void RunTest(Pixel *left_col, Pixel *above_data, Pixel *dst, Pixel *ref_dst) { in RunTest() argument
77 ref_dst_ = ref_dst; in RunTest()
162 DECLARE_ALIGNED(16, uint16_t, ref_dst[3 * 64 * 64]); in TEST_P()
165 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
175 DECLARE_ALIGNED(16, uint8_t, ref_dst[3 * 32 * 32]); in TEST_P()
178 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
/dports/multimedia/handbrake/ffmpeg-4.4/libavcodec/
H A Dgsmdec_template.c127 int16_t *ref_dst = ctx->ref_buf + 120; in gsm_decode_block() local
143 long_term_synth(ref_dst, lag, gain_idx); in gsm_decode_block()
144 apcm_dequant_add(gb, ref_dst + offset, ff_gsm_apcm_bits[mode][i]); in gsm_decode_block()
145 ref_dst += 40; in gsm_decode_block()
/dports/emulators/vice/vice-3.5/src/lib/libffmpeg/libavcodec/
H A Dgsmdec_template.c134 int16_t *ref_dst = ctx->ref_buf + 120; in gsm_decode_block() local
150 long_term_synth(ref_dst, lag, gain_idx); in gsm_decode_block()
151 apcm_dequant_add(gb, ref_dst + offset, ff_gsm_apcm_bits[mode][i]); in gsm_decode_block()
152 ref_dst += 40; in gsm_decode_block()
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavcodec/
H A Dgsmdec_template.c127 int16_t *ref_dst = ctx->ref_buf + 120; in gsm_decode_block() local
143 long_term_synth(ref_dst, lag, gain_idx); in gsm_decode_block()
144 apcm_dequant_add(gb, ref_dst + offset, ff_gsm_apcm_bits[mode][i]); in gsm_decode_block()
145 ref_dst += 40; in gsm_decode_block()
/dports/multimedia/gstreamer1-libav/gst-libav-1.16.2/gst-libs/ext/libav/libavcodec/
H A Dgsmdec_template.c127 int16_t *ref_dst = ctx->ref_buf + 120; in gsm_decode_block() local
143 long_term_synth(ref_dst, lag, gain_idx); in gsm_decode_block()
144 apcm_dequant_add(gb, ref_dst + offset, ff_gsm_apcm_bits[mode][i]); in gsm_decode_block()
145 ref_dst += 40; in gsm_decode_block()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/libavcodec/
H A Dgsmdec_template.c127 int16_t *ref_dst = ctx->ref_buf + 120; in gsm_decode_block() local
143 long_term_synth(ref_dst, lag, gain_idx); in gsm_decode_block()
144 apcm_dequant_add(gb, ref_dst + offset, ff_gsm_apcm_bits[mode][i]); in gsm_decode_block()
145 ref_dst += 40; in gsm_decode_block()
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/lib/libffmpeg/libavcodec/
H A Dgsmdec_template.c134 int16_t *ref_dst = ctx->ref_buf + 120; in gsm_decode_block() local
150 long_term_synth(ref_dst, lag, gain_idx); in gsm_decode_block()
151 apcm_dequant_add(gb, ref_dst + offset, ff_gsm_apcm_bits[mode][i]); in gsm_decode_block()
152 ref_dst += 40; in gsm_decode_block()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavcodec/
H A Dgsmdec_template.c127 int16_t *ref_dst = ctx->ref_buf + 120; in gsm_decode_block() local
143 long_term_synth(ref_dst, lag, gain_idx); in gsm_decode_block()
144 apcm_dequant_add(gb, ref_dst + offset, ff_gsm_apcm_bits[mode][i]); in gsm_decode_block()
145 ref_dst += 40; in gsm_decode_block()
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/aom/test/
H A Dintrapred_test.cc57 void RunTest(Pixel *left_col, Pixel *above_data, Pixel *dst, Pixel *ref_dst) { in RunTest() argument
64 ref_dst_ = ref_dst; in RunTest()
147 DECLARE_ALIGNED(16, uint16_t, ref_dst[3 * 32 * 32]); in TEST_P()
148 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
156 DECLARE_ALIGNED(16, uint8_t, ref_dst[3 * 32 * 32]); in TEST_P()
157 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
/dports/comms/gnuradio/gnuradio-3.8.4.0/gr-blocks/python/blocks/
H A Dqa_moving_average.py110 ref_dst = blocks.vector_sink_i(vlen=vlen)
114 tb.connect(many_to_vector, ref_dst)
121 ref_data = ref_dst.data()
/dports/x11/pixman/pixman-0.40.0/test/
H A Dcover-test.c169 pixman_fixed_t ref_src, ref_dst, scaled_dst; in calc_translate() local
174 ref_dst = pixman_fixed_1 / 2; in calc_translate()
180 ref_dst = pixman_int_to_fixed (dst_size) - pixman_fixed_1 / 2; in calc_translate()
183 scaled_dst = ((uint64_t) ref_dst * scale + pixman_fixed_1 / 2) / in calc_translate()

123