Home
last modified time | relevance | path

Searched refs:dst_ref (Results 1 – 7 of 7) sorted by relevance

/third_party/ffmpeg/tests/checkasm/
Dexrdsp.c42 LOCAL_ALIGNED_32(uint8_t, dst_ref, [PADDED_BUF_SIZE]); in check_reorder_pixels()
48 memset(dst_ref, 0, PADDED_BUF_SIZE); in check_reorder_pixels()
51 call_ref(dst_ref, src, BUF_SIZE); in check_reorder_pixels()
53 if (memcmp(dst_ref, dst_new, BUF_SIZE)) in check_reorder_pixels()
60 LOCAL_ALIGNED_32(uint8_t, dst_ref, [PADDED_BUF_SIZE]); in check_predictor()
67 memcpy(dst_ref, src, PADDED_BUF_SIZE); in check_predictor()
69 call_ref(dst_ref, BUF_SIZE); in check_predictor()
71 if (memcmp(dst_ref, dst_new, BUF_SIZE)) in check_predictor()
Dvf_gblur.c38 float *dst_ref = av_malloc(BUF_SIZE); in checkasm_check_vf_gblur() local
49 randomize_buffers(dst_ref, PIXELS); in checkasm_check_vf_gblur()
50 memcpy(dst_new, dst_ref, BUF_SIZE); in checkasm_check_vf_gblur()
55 call_ref(dst_ref, w, h, steps, nu, bscale); in checkasm_check_vf_gblur()
58 if (!float_near_abs_eps_array(dst_ref, dst_new, 0.01f, PIXELS)) { in checkasm_check_vf_gblur()
64 av_freep(&dst_ref); in checkasm_check_vf_gblur()
Dvf_hflip.c37 LOCAL_ALIGNED_32(uint8_t, dst_ref, [WIDTH_PADDED]); in check_hflip()
47 memset(dst_ref, 0, WIDTH_PADDED); in check_hflip()
61 call_ref(src + (w - 1) * step, dst_ref, i); in check_hflip()
63 if (memcmp(dst_ref, dst_new, i * step)) in check_hflip()
Dvf_eq.c43 LOCAL_ALIGNED_32(uint8_t, dst_ref, [PIXELS]); in check_eq()
61 memset(dst_ref, 0, PIXELS); in check_eq()
67 call_ref(&pa, dst_ref, dst_stride, src, src_stride, w, h); in check_eq()
69 if (memcmp(dst_ref, dst_new, PIXELS)) in check_eq()
/third_party/ffmpeg/libavutil/
Dhwcontext.c651 AVBufferRef *dst_ref = NULL, *tmp_ref; in av_hwdevice_ctx_create_derived_opts() local
659 dst_ref = av_buffer_ref(tmp_ref); in av_hwdevice_ctx_create_derived_opts()
660 if (!dst_ref) { in av_hwdevice_ctx_create_derived_opts()
669 dst_ref = av_hwdevice_ctx_alloc(type); in av_hwdevice_ctx_create_derived_opts()
670 if (!dst_ref) { in av_hwdevice_ctx_create_derived_opts()
674 dst_ctx = (AVHWDeviceContext*)dst_ref->data; in av_hwdevice_ctx_create_derived_opts()
690 ret = av_hwdevice_ctx_init(dst_ref); in av_hwdevice_ctx_create_derived_opts()
705 *dst_ref_ptr = dst_ref; in av_hwdevice_ctx_create_derived_opts()
709 av_buffer_unref(&dst_ref); in av_hwdevice_ctx_create_derived_opts()
853 AVBufferRef *dst_ref = NULL; in av_hwframe_ctx_create_derived() local
[all …]
/third_party/mbedtls/tests/suites/
Dtest_suite_base64.function111 void base64_decode_hex_src( data_t * src, char * dst_ref, int result )
119 TEST_ASSERT( len == strlen( dst_ref ) );
120 TEST_ASSERT( memcmp( dst, dst_ref, len ) == 0 );
/third_party/ffmpeg/libavfilter/
Daf_atempo.c765 uint8_t **dst_ref, in yae_overlap_add() argument
789 uint8_t *dst = *dst_ref; in yae_overlap_add()
808 *dst_ref = dst; in yae_overlap_add()
822 uint8_t **dst_ref, in yae_apply() argument
875 if (yae_overlap_add(atempo, dst_ref, dst_end) != 0) { in yae_apply()
894 uint8_t **dst_ref, in yae_flush() argument
947 if (yae_overlap_add(atempo, dst_ref, dst_end) != 0) { in yae_flush()
965 dst = (uint8_t *)*dst_ref; in yae_flush()
977 *dst_ref = (uint8_t *)dst; in yae_flush()