/third_party/ffmpeg/tests/checkasm/ |
D | flacdsp.c | 60 LOCAL_ALIGNED_16(uint8_t, ref_buf, [BUF_SIZE*MAX_CHANNELS]); in checkasm_check_flacdsp() 63 …uint8_t *ref_src[] = { &ref_buf[BUF_SIZE*0], &ref_buf[BUF_SIZE*1], &ref_buf[BUF_SIZE*2], &ref_buf[… in checkasm_check_flacdsp() 64 … &ref_buf[BUF_SIZE*4], &ref_buf[BUF_SIZE*5], &ref_buf[BUF_SIZE*6], &ref_buf[BUF_SIZE*7] }; in checkasm_check_flacdsp()
|
D | alacdsp.c | 37 ref_buf[i] = r; \ 44 LOCAL_ALIGNED_16(int32_t, ref_buf, [BUF_SIZE*MAX_CHANNELS]); in check_decorrelate_stereo() 46 int32_t *ref[2] = { &ref_buf[BUF_SIZE*0], &ref_buf[BUF_SIZE*1] }; in check_decorrelate_stereo() 87 LOCAL_ALIGNED_16(int32_t, ref_buf, [BUF_SIZE*MAX_CHANNELS*2]); in check_append_extra_bits() 89 int32_t *ref[2] = { &ref_buf[BUF_SIZE*0], &ref_buf[BUF_SIZE*1] }; in check_append_extra_bits() 91 int32_t *ref_ebb[2] = { &ref_buf[BUF_SIZE*2], &ref_buf[BUF_SIZE*3] }; in check_append_extra_bits()
|
/third_party/ffmpeg/libavcodec/ |
D | ivi_dsp.h | 268 void ff_ivi_mc_8x8_delta(int16_t *buf, const int16_t *ref_buf, ptrdiff_t pitch, int mc_type); 278 void ff_ivi_mc_4x4_delta(int16_t *buf, const int16_t *ref_buf, ptrdiff_t pitch, int mc_type); 288 void ff_ivi_mc_8x8_no_delta(int16_t *buf, const int16_t *ref_buf, ptrdiff_t pitch, int mc_type); 298 void ff_ivi_mc_4x4_no_delta(int16_t *buf, const int16_t *ref_buf, ptrdiff_t pitch, int mc_type); 310 void ff_ivi_mc_avg_8x8_delta(int16_t *buf, const int16_t *ref_buf, const int16_t *ref_buf2, ptrdiff… 322 void ff_ivi_mc_avg_4x4_delta(int16_t *buf, const int16_t *ref_buf, const int16_t *ref_buf2, ptrdiff… 334 void ff_ivi_mc_avg_8x8_no_delta(int16_t *buf, const int16_t *ref_buf, const int16_t *ref_buf2, ptrd… 346 void ff_ivi_mc_avg_4x4_no_delta(int16_t *buf, const int16_t *ref_buf, const int16_t *ref_buf2, ptrd…
|
D | gsmdec_template.c | 127 int16_t *ref_dst = ctx->ref_buf + 120; in gsm_decode_block() 147 memcpy(ctx->ref_buf, ctx->ref_buf + 160, 120 * sizeof(*ctx->ref_buf)); in gsm_decode_block() 148 short_term_synth(ctx, samples, ctx->ref_buf + 120); in gsm_decode_block()
|
D | ivi_dsp.c | 777 const int16_t *ref_buf, \ 785 for (i = 0; i < size; i++, buf += dpitch, ref_buf += pitch) { \ 787 OP(buf[j], ref_buf[j]); \ 792 for (i = 0; i < size; i++, buf += dpitch, ref_buf += pitch) \ 794 OP(buf[j], (ref_buf[j] + ref_buf[j+1]) >> 1); \ 797 wptr = ref_buf + pitch; \ 798 for (i = 0; i < size; i++, buf += dpitch, wptr += pitch, ref_buf += pitch) \ 800 OP(buf[j], (ref_buf[j] + wptr[j]) >> 1); \ 803 wptr = ref_buf + pitch; \ 804 for (i = 0; i < size; i++, buf += dpitch, wptr += pitch, ref_buf += pitch) \ [all …]
|
D | ivi.c | 75 typedef void (*ivi_mc_func) (int16_t *buf, const int16_t *ref_buf, 91 av_assert0(offs >= 0 && ref_offs >= 0 && band->ref_buf); in ivi_mc() 97 mc(band->buf + offs, band->ref_buf + ref_offs, band->pitch, mc_type); in ivi_mc() 110 mc_avg(band->buf + offs, band->ref_buf + ref_offs, in ivi_mc() 858 src = band->ref_buf + tile->ypos * pitch + tile->xpos; in ivi_process_empty_tile() 951 band->ref_buf = prepare_buf(ctx, band, ctx->b_ref_buf); in decode_band() 952 band->b_ref_buf = prepare_buf(ctx, band, ctx->ref_buf); in decode_band() 956 band->ref_buf = prepare_buf(ctx, band, ctx->ref_buf); in decode_band() 959 if (!band->ref_buf) in decode_band()
|
D | gsmdec_data.h | 33 int16_t ref_buf[280]; member
|
D | ivi.h | 153 …int16_t *ref_buf; ///< pointer to the reference frame buffer (for motion compensatio… member 234 int ref_buf; ///< inter frame reference buffer index member
|
D | indeo4.c | 656 FFSWAP(int, ctx->dst_buf, ctx->ref_buf); in switch_buffers() 658 FFSWAP(int, ctx->ref_buf, ctx->b_ref_buf); in switch_buffers() 659 FFSWAP(int, ctx->dst_buf, ctx->ref_buf); in switch_buffers() 696 ctx->ref_buf = 1; in decode_init()
|
D | indeo5.c | 601 ctx->ref_buf = ctx->buf_switch ^ 1; in switch_buffers() 609 ctx->ref_buf = ctx->ref2_buf; in switch_buffers() 622 ctx->ref_buf = ctx->buf_switch ^ 1; in switch_buffers()
|
/third_party/mbedtls/programs/test/ |
D | selftest.c | 154 static int test_snprintf( size_t n, const char *ref_buf, int ref_ret ) in test_snprintf() argument 164 if( strncmp( ref_buf, buf, sizeof( buf ) ) != 0 || in test_snprintf()
|
/third_party/mbedtls/tests/suites/ |
D | host_test.function | 330 * \param ref_buf Expected buffer. 338 static int test_snprintf( size_t n, const char *ref_buf, int ref_ret ) 350 if( strncmp( ref_buf, buf, sizeof( buf ) ) != 0 ||
|