Home
last modified time | relevance | path

Searched refs:CLIP3 (Results 1 - 4 of 4) sorted by relevance

/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/include/
H A Dhi_math.h55 * CLIP3(x,min,max) clip x within [min,max]
61 #define CLIP3(x, min, max) ((x) < (min) ? (min) : ((x) > (max) ? (max) :(x))) macro
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/
H A Dhi_math.h52 * CLIP3(x,min,max) clip x within [min,max]
58 #define CLIP3(x, min, max) ((x) < (min) ? (min) : ((x) > (max) ? (max) :(x))) macro
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/
H A Dhi_math.h54 * CLIP3(x,min,max) clip x within [min,max]
60 #define CLIP3(x, min, max) ((x) < (min) ? (min) : ((x) > (max) ? (max) :(x))) macro
/device/soc/hisilicon/hi3516dv300/sdk_linux/usr/sensor/omnivision_os08a10/
H A Dos08a10_cmos.c30 #ifndef CLIP3
31 #define CLIP3(x, min, max) (((x) < (min)) ? (min) : ((((x) > (max)) ? (max) : (x)))) macro
402 u32Again = CLIP3(u32Again, 0x80, 0x7FF); in cmos_gains_update()

Completed in 4 milliseconds