Home
last modified time | relevance | path

Searched refs:pitch (Results 1 – 25 of 25) sorted by relevance

/utopia/UTPA2-700.0.x/modules/graphic/drv/ge/
H A DdrvGE.c2193 …x, GE_BufFmt src_fmt, MS_U16 pix_width, MS_U16 pix_height, MS_PHY addr, MS_U16 pitch, MS_U32 flags) in MDrv_GE_SetSrcBuffer() argument
2222 if (pitch != ((pitch + (caps.u8PitchAlign-1)) & ~(caps.u8PitchAlign-1))) in MDrv_GE_SetSrcBuffer()
2306 GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_SRC_PITCH, pitch); in MDrv_GE_SetSrcBuffer()
2366 …x, GE_BufFmt dst_fmt, MS_U16 pix_width, MS_U16 pix_height, MS_PHY addr, MS_U16 pitch, MS_U32 flags) in MDrv_GE_SetDstBuffer() argument
2397 if (pitch != ((pitch + (caps.u8PitchAlign-1)) & ~(caps.u8PitchAlign-1))) in MDrv_GE_SetDstBuffer()
2477 GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_DST_PITCH, pitch); in MDrv_GE_SetDstBuffer()
2507 …t *pSrc0Rect, GE_Rect *pSrc1Rect, GE_Rect *pDestRect, MS_PHY addr, MS_U16 pitch, MS_U32 flags, GE_… in MDrv_GE_BitBltByTwoSourceBuffer() argument
2537 if (pitch != ((pitch + (caps.u8PitchAlign-1)) & ~(caps.u8PitchAlign-1))) in MDrv_GE_BitBltByTwoSourceBuffer()
2592 GEWD_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_DST_PITCH, pitch); in MDrv_GE_BitBltByTwoSourceBuffer()
5267 MS_U16 pitch=0; in MDrv_GE_BitbltPerformance() local
[all …]
H A DdrvGE_private.h131 MS_U32 pitch; member
147 MS_U32 pitch; member
H A DdrvGE.h1145 …, GE_BufFmt src_fmt, MS_U16 pix_width, MS_U16 pix_height, MS_PHY addr, MS_U16 pitch, MS_U32 flags);
1146 …, GE_BufFmt dst_fmt, MS_U16 pix_width, MS_U16 pix_height, MS_PHY addr, MS_U16 pitch, MS_U32 flags);
1154 …t *pSrc0Rect, GE_Rect *pSrc1Rect, GE_Rect *pDestRect, MS_PHY addr, MS_U16 pitch, MS_U32 flags, GE_…
/utopia/UTPA2-700.0.x/modules/graphic/api/gfx/
H A DapiGFX.c186 #define _GFX_CHECK_BUFFER_ALIGN1(addr, width, height, pitch, color_fmt) \ argument
207 …GFX_ASSERT(!(0x1 & (pitch)), GFX_FATAL("[GE DRV][%06d] Bad buffer pitch (%d, %d)\n", (pitch), (col…
208 …GFX_ASSERT(((pitch)>>1)== (width), GFX_FATAL("[GE DRV][%06d] Bad buffer pitch/width (%d, %d)\n", (
215 …GFX_ASSERT(!(0x3 & (pitch)), GFX_FATAL("[GE DRV][%06d] Bad buffer pitch (%d, %d)\n", (pitch), (col…
216 …GFX_ASSERT(((pitch)>>2)== (width), GFX_FATAL("[GE DRV][%06d] Bad buffer pitch/width (%d, %d)\n", (
229 #define _GFX_CHECK_BUFFER_ALIGN1(addr, width, height, pitch, color_fmt) while (0); argument
696 fonttable.pitch = osd_fonttable.pitch; in MApi_GFX_QueryTextDispLength()
870 srcinfo.u32Pitch = bmpinfo.pitch; in MApi_GFX_DrawBitmap()
H A DmapiGFX.c1804 MS_U32 pitch; in GFX_TextOutEx() local
1854 pitch = pFonttable->pitch; in GFX_TextOutEx()
1894 …Buffer(g_apiGFXLocal.g_pGEContext, fmt, src.width, src.height, (addr + char_idx*offset), pitch, 0); in GFX_TextOutEx()
2069 Char.pitch = pFont->pitch; in MApi_GFX_TextOut_U02()
2162 …v_GE_SetSrcBuffer(g_apiGFXLocal.g_pGEContext, (GE_BufFmt)Char.fmt, 0, 0, Char.addr, Char.pitch, 0); in MApi_GFX_TextOut_U02()
2261 …etSrcBuffer(g_apiGFXLocal.g_pGEContext, (GE_BufFmt)pChar->fmt, 0, 0, pChar->addr, pChar->pitch, 0); in MApi_GFX_CharacterOut_U02()
/utopia/UTPA2-700.0.x/modules/graphic/api/gop/
H A DapiGOP.c344 MS_U16 pitch=0; in GOP_CalcPitch() local
349 pitch = (width) >> 3; in GOP_CalcPitch()
352 pitch = (width<<1) >> 3; in GOP_CalcPitch()
355 pitch = (width<<2) >> 3; in GOP_CalcPitch()
358 pitch = width; in GOP_CalcPitch()
374 pitch = width << 1; in GOP_CalcPitch()
381 pitch = width << 2; in GOP_CalcPitch()
385 pitch = 0; in GOP_CalcPitch()
388 return pitch; in GOP_CalcPitch()
572 pinfo->u16RBlkHRblkSize = win_info.pitch; in MApi_GOP_GWIN_GetWinInfo()
[all …]
H A DmapiGOP.c865 MS_U16 pitch=0; in _GOP_CalcPitch() local
870 pitch = (width) >> 3; in _GOP_CalcPitch()
873 pitch = (width<<1) >> 3; in _GOP_CalcPitch()
876 pitch = (width<<2) >> 3; in _GOP_CalcPitch()
879 pitch = width; in _GOP_CalcPitch()
895 pitch = width << 1; in _GOP_CalcPitch()
902 pitch = width << 2; in _GOP_CalcPitch()
906 pitch = 0; in _GOP_CalcPitch()
909 return pitch; in _GOP_CalcPitch()
2524 pwinFB->pitch = _GOP_CalcPitch(pInstance,fbFmt, width); in _GOP_GWIN_CreatePoolFB()
[all …]
H A DapiGOP_priv.h502 MS_U32 pitch; member
595 MS_U32 pitch; member
/utopia/UTPA2-700.0.x/modules/gpd/drv/gpd/
H A Dpngprocess.c977 MS_U32 pitch; in PngProcess() local
1233 pitch = (interesting_width * pixelbytes + 7) >> 3; in PngProcess()
1238 pitch = (infoptr->png_width + 1) >> 1; in PngProcess()
1240 pitch = (infoptr->png_width + 7) >> 3; in PngProcess()
1242 pitch = (infoptr->png_width + 3) >> 2; in PngProcess()
1249 drv_gpd_set_pitch(pitch); in PngProcess()
H A Ddrvgpd.c481 void drv_gpd_set_pitch(MS_U32 pitch)
484 GPDreg.h832c |=(pitch<<GPD_PITCH_SHF);
558 void drv_gpd_set_pitch(MS_U32 pitch) in drv_gpd_set_pitch() argument
560 GPD_SET_MS_U32REG(reg_gpd_pitch, pitch); in drv_gpd_set_pitch()
H A Ddrvgpd.h136 void drv_gpd_set_pitch(MS_U32 pitch);
H A Ddgif_lib.c253 MS_U32 width, MS_U32 height, MS_U32 pitch) in FillBkColor() argument
343 memcpy(framebuff + pitch * i, framebuff, width * pixelbytes); in FillBkColor()
/utopia/UTPA2-700.0.x/mxlib/include/
H A DapiGOP.h543 MS_U16 pitch; member
2737 …dSurf(MS_U16 width, MS_U16 height, MS_U16 fbFmt, MS_U32 u32FbAddr, MS_U16 pitch, MS_U8* ret_FBId);
2739 …dSurf(MS_U16 width, MS_U16 height, MS_U16 fbFmt, MS_PHY phyFbAddr, MS_U16 pitch, MS_U8* ret_FBId);
2754 …Surf(MS_U16 width, MS_U16 height, MS_U16 fbFmt, MS_U32 u32FbAddr, MS_U16 pitch, MS_U32* u32ret_FB…
2756 …Surf(MS_U16 width, MS_U16 height, MS_U16 fbFmt, MS_PHY phyFbAddr, MS_U16 pitch, MS_U32* u32ret_FB…
3289 DLL_PUBLIC E_GOP_API_Result MApi_GOP_RegisterFBFmtCB(MS_U32 (*fpGOP_CB)(MS_U16 pitch,MS_U32 addr , …
3291 DLL_PUBLIC E_GOP_API_Result MApi_GOP_RegisterFBFmtCB(MS_U32 (*fpGOP_CB)(MS_U16 pitch,MS_PHY addr , …
H A DapiGFX.h1069 MS_U32 pitch; member
1092 MS_U32 pitch; member
1113 MS_U32 pitch; member
1993 …Result MApi_GFX_GetFrameBufferInfo(MS_U32 *width, MS_U32 *height, MS_U32 *pitch, MS_U32 *fbFmt, MS…
/utopia/UTPA2-700.0.x/projects/tmplib/include/
H A DapiGFX.h1059 MS_U32 pitch; member
1082 MS_U32 pitch; member
1103 MS_U32 pitch; member
H A DapiGOP.h511 MS_U16 pitch; member
2594 …dSurf(MS_U16 width, MS_U16 height, MS_U16 fbFmt, MS_PHY phyFbAddr, MS_U16 pitch, MS_U8* ret_FBId);
2607 …Surf(MS_U16 width, MS_U16 height, MS_U16 fbFmt, MS_PHY phyFbAddr, MS_U16 pitch, MS_U32* u32ret_FB…
3110 DLL_PUBLIC E_GOP_API_Result MApi_GOP_RegisterFBFmtCB(MS_U32 (*fpGOP_CB)(MS_U16 pitch,MS_PHY addr , …
/utopia/UTPA2-700.0.x/modules/vdec_v3/hal/maserati/vpu_v3/
H A DFieldDetection.h35 int pitch; member
H A DFilm.c287 if (g_pitch != fod->pitch) { in setHeight_Width()
H A DhalVPU_EX.c1509 stFod.pitch=pFrmInfo->u16Pitch; in _HAL_VPU_EX_Field_Detecor_Task_HVD()
/utopia/UTPA2-700.0.x/modules/vdec_v3/hal/maxim/vpu_v3/
H A DFieldDetection.h35 int pitch; member
H A DFilm.c287 if (g_pitch != fod->pitch) { in setHeight_Width()
H A DhalVPU_EX.c1490 stFod.pitch=pFrmInfo->u16Pitch; in _HAL_VPU_EX_Field_Detecor_Task_HVD()
/utopia/UTPA2-700.0.x/modules/graphic/drv/gop/
H A DdrvGOP.h625 MS_U16 pitch; ///< MS_U16 member
1005 MS_U16 pitch; ///< MS_U16 member
/utopia/UTPA2-700.0.x/modules/dms/drv/dms_dipgop/
H A DdrvDMS.c5563 MS_U16 pitch = 0; in _MDrv_DMS_OSD_Init() local
5617pitch = _DMS_DIP_CalcPitch((EN_XC_DIP_DATA_FMT)eDIPWColorFmt, RES_DMS._stXC_DIPMemInfo[E_DMS_DIP_C… in _MDrv_DMS_OSD_Init()
5634 …MS._stXC_DIPMemInfo[E_DMS_DIP_CLIENT_GOP].u32PanelHeight, fbFmt, Address, pitch, &fbID) != GOP_API… in _MDrv_DMS_OSD_Init()
5663pitch = _DMS_DIP_CalcPitch((EN_XC_DIP_DATA_FMT)eDIPWColorFmt, RES_DMS._stXC_DIPMemInfo[E_DMS_DIP_C… in _MDrv_DMS_OSD_Init()
5678 …MS._stXC_DIPMemInfo[E_DMS_DIP_CLIENT_GOP].u32PanelHeight, fbFmt, Address, pitch, &fbID) != GOP_API… in _MDrv_DMS_OSD_Init()
/utopia/UTPA2-700.0.x/projects/build/
H A Dpreprocess.txt9764 MS_U32 pitch;
9787 MS_U32 pitch;
9808 MS_U32 pitch;
10288 …Result MApi_GFX_GetFrameBufferInfo(MS_U32 *width, MS_U32 *height, MS_U32 *pitch, MS_U32 *fbFmt, MS…
11268 MS_U16 pitch;
12642 …rdSurf(MS_U16 width, MS_U16 height, MS_U16 fbFmt, MS_U32 u32FbAddr, MS_U16 pitch, MS_U8* ret_FBId);
12644 …rdSurf(MS_U16 width, MS_U16 height, MS_U16 fbFmt, MS_PHY phyFbAddr, MS_U16 pitch, MS_U8* ret_FBId);
12648 …dSurf(MS_U16 width, MS_U16 height, MS_U16 fbFmt, MS_U32 u32FbAddr, MS_U16 pitch, MS_U32* u32ret_FB…
12650 …dSurf(MS_U16 width, MS_U16 height, MS_U16 fbFmt, MS_PHY phyFbAddr, MS_U16 pitch, MS_U32* u32ret_FB…
12999 DLL_PUBLIC E_GOP_API_Result MApi_GOP_RegisterFBFmtCB(MS_U32 (*fpGOP_CB)(MS_U16 pitch,MS_U32 addr , …
[all …]