Searched refs:dst_min (Results 1 – 3 of 3) sorted by relevance
277 dst_min = dst_channel.min()281 dst_min_native = native_to_constant(src_channel, value_to_native(src_channel, dst_min))284 if src_min < dst_min and src_max > dst_max:290 if src_min < dst_min:
822 double dst_min = lp_const_min(dst_type); in lp_build_conv() local829 if(src_min < dst_min) { in lp_build_conv()830 if(dst_min == 0.0) in lp_build_conv()833 thres = lp_build_const_vec(gallivm, src_type, dst_min); in lp_build_conv()
289 static D map(S value, S src_min, S src_max, D dst_min, D dst_max) { in map()291 SkASSERT(dst_min <= dst_max); in map()292 return C()(dst_min + (((value - src_min) * (dst_max - dst_min)) / (src_max - src_min))); in map()