Lines Matching refs:RADEON_ALIGN
284 aligned_height = RADEON_ALIGN(dst_height, h_align);
289 srcPitch = RADEON_ALIGN(width, 4);
290 srcPitch2 = RADEON_ALIGN(width >> 1, 4);
292 dstPitch = RADEON_ALIGN(dst_width << 1, pPriv->hw_align);
295 dstPitch = RADEON_ALIGN(dst_width, pPriv->hw_align);
296 dstPitch2 = RADEON_ALIGN(dstPitch >> 1, pPriv->hw_align);
302 dstPitch = RADEON_ALIGN(dst_width << 1, pPriv->hw_align);
308 size = dstPitch * aligned_height + 2 * dstPitch2 * RADEON_ALIGN(((aligned_height + 1) >> 1), h_align);
309 size = RADEON_ALIGN(size, pPriv->hw_align);
362 pPriv->planeu_offset = RADEON_ALIGN(pPriv->planeu_offset, pPriv->hw_align);
363 pPriv->planev_offset = pPriv->planeu_offset + dstPitch2 * RADEON_ALIGN(((aligned_height + 1) >> 1), h_align);
364 pPriv->planev_offset = RADEON_ALIGN(pPriv->planev_offset, pPriv->hw_align);
372 s2offset = srcPitch * (RADEON_ALIGN(height, 2));
776 *w = RADEON_ALIGN(*w, 2);
782 *h = RADEON_ALIGN(*h, 2);
783 size = RADEON_ALIGN(*w, 4);
787 tmp = RADEON_ALIGN(*w >> 1, 4);