Home | History | Annotate | Download | only in libcopybit

Lines Matching refs:aligned_width

456     int aligned_width = 0, size = 0;
464 aligned_width = ALIGN(width, 128);
465 size = aligned_width * aligned_height;
467 yuvInfo.yStride = aligned_width;
468 yuvInfo.plane1_stride = aligned_width;
474 aligned_width = ALIGN(width, 32);
475 yuvInfo.yStride = aligned_width;
476 yuvInfo.plane1_stride = aligned_width;
479 yuvInfo.plane1_offset = ALIGN(aligned_width * height, 2048);
481 yuvInfo.plane1_offset = aligned_width * height;
544 int aligned_width = ALIGN((int)surfaceDef.width,32);
545 surfaceDef.stride = (aligned_width * c2diGetBpp(surfaceDef.format))>>3;