Home | History | Annotate | Download | only in libcopybit

Lines Matching refs:aligned_width

462     int aligned_width = 0, size = 0;
470 aligned_width = ALIGN(width, 128);
471 size = aligned_width * aligned_height;
473 yuvInfo.yStride = aligned_width;
474 yuvInfo.plane1_stride = aligned_width;
480 aligned_width = ALIGN(width, 32);
481 yuvInfo.yStride = aligned_width;
482 yuvInfo.plane1_stride = aligned_width;
485 yuvInfo.plane1_offset = ALIGN(aligned_width * height, 2048);
487 yuvInfo.plane1_offset = aligned_width * height;
550 int aligned_width = ALIGN((int)surfaceDef.width,32);
551 surfaceDef.stride = (aligned_width * c2diGetBpp(surfaceDef.format))>>3;