Home
last modified time | relevance | path

Searched refs:dst_min (Results 1 – 3 of 3) sorted by relevance

/third_party/mesa3d/src/util/format/
Du_format_pack.py277 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:
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_conv.c822 double dst_min = lp_const_min(dst_type); in lp_build_conv() local
829 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()
/third_party/skia/src/ports/
DSkTypeface_mac_ct.cpp289 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()