Searched defs:linoff (Results 1 - 3 of 3) sorted by relevance

/hardware/intel/img/hwcomposer/merrifield/ips/tangier/
H A DTngSpritePlane.cpp44 uint32_t linoff; local
68 linoff = (mapper.getCrop().h + srcY - 1) * stride + (srcX + mapper.getCrop().w - 1) * bpp;
70 linoff = srcY * stride + srcX * bpp;
81 // unlikely happen, but still we need make sure linoff is valid
82 if (linoff > (stride * mapper.getHeight())) {
97 mContext.ctx.sp_ctx.linoff = linoff;
109 VTRACE("cntr = %#x, linoff = %#x, stride = %#x,"
112 mContext.ctx.sp_ctx.linoff,
/hardware/intel/img/hwcomposer/merrifield/ips/anniedale/
H A DAnnRGBPlane.cpp95 uint32_t linoff; local
123 linoff = srcY * stride + srcX * bpp + (mapper.getCrop().h - 1) * stride + (mapper.getCrop().w - 1) * bpp;
125 linoff = srcY * stride + srcX * bpp;
127 // unlikely happen, but still we need make sure linoff is valid
128 if (linoff > (stride * mapper.getHeight())) {
150 mContext.ctx.sp_ctx.linoff = linoff;
163 mContext.ctx.sp_ctx.linoff = (align_to(srcW, 32) * srcH / 64) - 1;
185 VTRACE("type = %d, index = %d, cntr = %#x, linoff = %#x, stride = %#x,"
188 mContext.ctx.sp_ctx.linoff,
[all...]
/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/
H A DAnnRGBPlane.cpp154 uint32_t linoff; local
182 linoff = srcY * stride + srcX * bpp + (mapper.getCrop().h - 1) * stride + (mapper.getCrop().w - 1) * bpp;
184 linoff = srcY * stride + srcX * bpp;
186 // unlikely happen, but still we need make sure linoff is valid
187 if (linoff > (stride * mapper.getHeight())) {
209 mContext.ctx.sp_ctx.linoff = linoff;
222 mContext.ctx.sp_ctx.linoff = (align_to(srcW, 32) * srcH / 64) - 1;
243 VLOGTRACE("type = %d, index = %d, cntr = %#x, linoff = %#x, stride = %#x,"
246 mContext.ctx.sp_ctx.linoff,
[all...]

Completed in 455 milliseconds