Searched refs:bestsad (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 829 if (thissad < bestsad)\ 832 if (thissad < bestsad)\ 834 bestsad = thissad;\ 877 unsigned int bestsad; in vp8_hex_search() local 901 bestsad = vfp->sdf(what, what_stride, this_offset, in_what_stride, UINT_MAX) in vp8_hex_search() 926 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad); in vp8_hex_search() 937 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad); in vp8_hex_search() 963 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad); in vp8_hex_search() 974 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad); in vp8_hex_search() 1005 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad); in vp8_hex_search() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 383 if (thissad < bestsad) {\ 386 if (thissad < bestsad) {\ 387 bestsad = thissad;\ 420 int bestsad = INT_MAX; in vp9_pattern_search() local 431 bestsad = vfp->sdf(what->buf, what->stride, in vp9_pattern_search() 596 return bestsad; in vp9_pattern_search() 866 unsigned int bestsad = INT_MAX; in vp9_diamond_search_sad_c() local 894 bestsad = fn_ptr->sdf(what, what_stride, in_what, in_what_stride) in vp9_diamond_search_sad_c() 925 if (sad_array[t] < bestsad) { in vp9_diamond_search_sad_c() 930 if (sad_array[t] < bestsad) { in vp9_diamond_search_sad_c() [all …]
|