Lines Matching refs:u16
129 void CAMERA_SetTrimmingParamsCenterCore(u16 destWidth, u16 destHeight, u16 srcWidth, u16 srcHeight) in CAMERA_SetTrimmingParamsCenterCore()
156 void CAMERA_SetTrimmingParamsCore(u16 x1, u16 y1, u16 x2, u16 y2) in CAMERA_SetTrimmingParamsCore()
183 void CAMERA_GetTrimmingParamsCore(u16* x1, u16* y1, u16* x2, u16* y2) in CAMERA_GetTrimmingParamsCore()
185 *x1 = (u16)((reg_CAM_SOFS & REG_CAM_SOFS_HOFS_MASK) >> REG_CAM_SOFS_HOFS_SHIFT); in CAMERA_GetTrimmingParamsCore()
186 *y1 = (u16)((reg_CAM_SOFS & REG_CAM_SOFS_VOFS_MASK) >> REG_CAM_SOFS_VOFS_SHIFT); in CAMERA_GetTrimmingParamsCore()
187 *x2 = (u16)(((reg_CAM_EOFS & REG_CAM_EOFS_HOFS_MASK) >> REG_CAM_EOFS_HOFS_SHIFT) + 2); in CAMERA_GetTrimmingParamsCore()
188 *y2 = (u16)(((reg_CAM_EOFS & REG_CAM_EOFS_VOFS_MASK) >> REG_CAM_EOFS_VOFS_SHIFT) + 1); in CAMERA_GetTrimmingParamsCore()
203 u16 value = reg_CAM_CNT; in CAMERA_SetTrimmingCore()
204 reg_CAM_CNT = (u16)(enabled ? (value | REG_CAM_CNT_T_MASK) in CAMERA_SetTrimmingCore()
235 u16 value = reg_CAM_CNT; in CAMERA_SetOutputFormatCore()
239 reg_CAM_CNT = (u16)(value & ~REG_CAM_CNT_F_MASK); in CAMERA_SetOutputFormatCore()
242 reg_CAM_CNT = (u16)(value | REG_CAM_CNT_F_MASK); in CAMERA_SetOutputFormatCore()
304 u16 value = reg_CAM_CNT; in CAMERA_SetMasterInterruptCore()
305 reg_CAM_CNT = (u16)(enabled ? (value | REG_CAM_CNT_IREQI_MASK) in CAMERA_SetMasterInterruptCore()
336 reg_CAM_CNT = (u16)((reg_CAM_CNT & ~REG_CAM_CNT_IREQVS_MASK) | type); in CAMERA_SetVsyncInterruptCore()
366 u16 value = reg_CAM_CNT; in CAMERA_SetBufferErrorInterruptCore()
367 reg_CAM_CNT = (u16)(enabled ? (value | REG_CAM_CNT_IREQBE_MASK) in CAMERA_SetBufferErrorInterruptCore()
400 u16 bits = (u16)((lines - 1) << REG_CAM_CNT_TL_SHIFT); in CAMERA_SetTransferLinesCore()
401 reg_CAM_CNT = (u16)((reg_CAM_CNT & ~REG_CAM_CNT_TL_MASK) | bits); in CAMERA_SetTransferLinesCore()
430 int CAMERA_GetMaxLinesRoundCore(u16 width, u16 height) in CAMERA_GetMaxLinesRoundCore()
453 u32 CAMERA_GetBytesAtOnceCore(u16 width) in CAMERA_GetBytesAtOnceCore()