Home
last modified time | relevance | path

Searched refs:posx (Results 1 – 10 of 10) sorted by relevance

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/adehaze/
H A Drk_aiq_adehaze_algo_v10.cpp25 float LinearInterp(const float* pX, const float* pY, float posx, int XSize) { in LinearInterp() argument
29 if (posx >= pX[XSize - 1]) { in LinearInterp()
31 } else if (posx <= pX[0]) { in LinearInterp()
35 while ((posx >= pX[index]) && (index < XSize)) { in LinearInterp()
39 yOut = ((pY[index + 1] - pY[index]) / (pX[index + 1] - pX[index]) * (posx - pX[index])) + in LinearInterp()
46 int LinearInterpEnable(const float* pX, const unsigned char* pY, float posx, int XSize) { in LinearInterpEnable() argument
50 if (posx >= pX[XSize - 1]) { in LinearInterpEnable()
52 } else if (posx <= pX[0]) { in LinearInterpEnable()
56 while ((posx >= pX[index]) && (index < XSize)) { in LinearInterpEnable()
60 out = ((pY[index + 1] - pY[index]) / (pX[index + 1] - pX[index]) * (posx - pX[index])) + in LinearInterpEnable()
H A Drk_aiq_adehaze_algo_v12.cpp23 void DehazeHistWrTableInterpV12(const HistWr_t* pCurveIn, mManual_curve_t* pCurveOut, float posx) { in DehazeHistWrTableInterpV12() argument
27 if (posx < pCurveIn->manual_curve[0].CtrlData) { in DehazeHistWrTableInterpV12()
32 } else if (posx >= pCurveIn->manual_curve[12].CtrlData) { in DehazeHistWrTableInterpV12()
39 if (posx >= pCurveIn->manual_curve[i].CtrlData && in DehazeHistWrTableInterpV12()
40 posx < pCurveIn->manual_curve[i + 1].CtrlData) { in DehazeHistWrTableInterpV12()
43 ratio = (posx - pCurveIn->manual_curve[i].CtrlData) / in DehazeHistWrTableInterpV12()
124 int ClipValueV12(float posx, int BitInt, int BitFloat) { in ClipValueV12() argument
129 yOutInt = LIMIT_VALUE((int)(posx * pow(2, BitFloat)), yOutIntMax, yOutIntMin); in ClipValueV12()
H A Drk_aiq_adehaze_algo_v11.cpp50 int ClipValueV11(float posx, int BitInt, int BitFloat) { in ClipValueV11() argument
55 yOutInt = LIMIT_VALUE((int)(posx * pow(2, BitFloat)), yOutIntMax, yOutIntMin); in ClipValueV11()
H A Drk_aiq_adehaze_algo_v11_duo.cpp49 int ClipValueV11Duo(float posx, int BitInt, int BitFloat) { in ClipValueV11Duo() argument
54 yOutInt = LIMIT_VALUE((int)(posx * pow(2, BitFloat)), yOutIntMax, yOutIntMin); in ClipValueV11Duo()
/OK3568_Linux_fs/u-boot/board/bluewater/gurnard/
H A Dgurnard.c130 int posx, posy; in lcd_splash() local
133 posx = x + (width - BMP_LOGO_WIDTH) / 2; in lcd_splash()
135 base_addr[posy * width + posx] = colour; in lcd_splash()
/OK3568_Linux_fs/kernel/drivers/media/platform/omap/
H A Domap_vout.c279 struct omap_overlay *ovl, int posx, int posy, int outw, in omapvid_setup_overlay() argument
317 info.pos_x = posx; in omapvid_setup_overlay()
360 int posx, posy, outw, outh; in omapvid_init() local
385 posx = win->w.top; in omapvid_init()
389 posx = (timing->x_res - win->w.width) - win->w.left; in omapvid_init()
396 posx = (timing->x_res - win->w.height) - win->w.top; in omapvid_init()
400 posx = win->w.left; in omapvid_init()
405 ret = omapvid_setup_overlay(vout, ovl, posx, posy, in omapvid_init()
/OK3568_Linux_fs/buildroot/package/frecon/
H A D0006-Fix-compile-warnings-with-libtsm-4.x.patch22 unsigned int cwidth, unsigned int posx,
H A D0008-Support-unifont.patch172 - font_render(terminal->fb, posx, posy, *ch,
173 + font_render(terminal->fb, cwidth, posx, posy, *ch,
176 font_fillchar(terminal->fb, posx, posy,
/OK3568_Linux_fs/kernel/drivers/video/fbdev/omap2/omapfb/
H A Domapfb.h124 u16 posx, u16 posy, u16 outw, u16 outh);
H A Domapfb-main.c832 u16 posx, u16 posy, u16 outw, u16 outh) in omapfb_setup_overlay() argument
858 posx, posy, outw, outh); in omapfb_setup_overlay()
907 info.pos_x = posx; in omapfb_setup_overlay()
932 u16 posx, posy; in omapfb_apply_changes() local
974 posx = 0; in omapfb_apply_changes()
979 posx = info.pos_x; in omapfb_apply_changes()
983 r = omapfb_setup_overlay(fbi, ovl, posx, posy, outw, outh); in omapfb_apply_changes()