Searched refs:CLIP3 (Results 1 - 4 of 4) sorted by relevance
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/include/ |
H A D | hi_math.h | 55 * 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 D | hi_math.h | 52 * 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 D | hi_math.h | 54 * 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 D | os08a10_cmos.c | 30 #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