Home
last modified time | relevance | path

Searched defs:CLIP3 (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/libs/ultrahdr/include/ultrahdr/
Dgainmapmath.h27 #define CLIP3(x, min, max) ((x) < (min)) ? (min) : ((x) > (max)) ? (max) : (x) macro
/frameworks/av/media/codec2/sfplugin/utils/
DCodec2BufferUtils.cpp623 #define CLIP3(min,v,max) (((v) < (min)) ? (min) : (((max) > (v)) ? (v) : (max))) in ConvertRGBToPlanarYUV() macro
/frameworks/av/media/codec2/components/base/
DSimpleC2Component.cpp237 #define CLIP3(min, v, max) (((v) < (min)) ? (min) : (((max) > (v)) ? (v) : (max))) macro