Searched refs:bestsad (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 832 if (thissad < bestsad)\ 835 if (thissad < bestsad)\ 837 bestsad = thissad;\ 880 unsigned int bestsad; in vp8_hex_search() local 906 bestsad = vfp->sdf(what, what_stride, this_offset, in_what_stride) in vp8_hex_search() 1040 return bestsad; in vp8_hex_search() 1074 unsigned int bestsad; in vp8_diamond_search_sad_c() local 1107 bestsad = fn_ptr->sdf(what, what_stride, in_what, in_what_stride) in vp8_diamond_search_sad_c() 1134 if (thissad < bestsad) in vp8_diamond_search_sad_c() 1141 if (thissad < bestsad) in vp8_diamond_search_sad_c() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 811 if (thissad < bestsad) {\ 814 if (thissad < bestsad) {\ 815 bestsad = thissad;\ 902 int bestsad = INT_MAX; in vp9_pattern_search() local 913 bestsad = vfp->sdf(what->buf, what->stride, in vp9_pattern_search() 1049 return bestsad; in vp9_pattern_search() 1077 int bestsad = INT_MAX; in vp9_pattern_search_sad() local 1092 bestsad = vfp->sdf(what->buf, what->stride, in vp9_pattern_search_sad() 1217 cost_list[0] = bestsad; in vp9_pattern_search_sad() 1257 cost_list[0] = bestsad; in vp9_pattern_search_sad() [all …]
|