Home | History | Annotate | Download | only in libcopybit

Lines Matching refs:aligned_width

446     int aligned_width = 0, size = 0;
454 aligned_width = ALIGN(width, 128);
455 size = aligned_width * aligned_height;
457 yuvInfo.yStride = aligned_width;
458 yuvInfo.plane1_stride = aligned_width;
464 aligned_width = ALIGN(width, 32);
465 yuvInfo.yStride = aligned_width;
466 yuvInfo.plane1_stride = aligned_width;
469 yuvInfo.plane1_offset = ALIGN(aligned_width * height, 2048);
471 yuvInfo.plane1_offset = aligned_width * height;
534 int aligned_width = ALIGN(surfaceDef.width,32);
535 surfaceDef.stride = (aligned_width * c2diGetBpp(surfaceDef.format))>>3;