Lines Matching refs:RADEON_ALIGN
312 aligned_height = RADEON_ALIGN(dst_height, h_align);
317 srcPitch = RADEON_ALIGN(width, 4);
318 srcPitch2 = RADEON_ALIGN(width >> 1, 4);
320 dstPitch = RADEON_ALIGN(dst_width << 1, pPriv->hw_align);
323 dstPitch = RADEON_ALIGN(dst_width, pPriv->hw_align);
324 dstPitch2 = RADEON_ALIGN(dstPitch >> 1, pPriv->hw_align);
330 dstPitch = RADEON_ALIGN(dst_width << 1, pPriv->hw_align);
336 size = dstPitch * aligned_height + 2 * dstPitch2 * RADEON_ALIGN(((aligned_height + 1) >> 1), h_align);
337 size = RADEON_ALIGN(size, pPriv->hw_align);
415 pPriv->planeu_offset = RADEON_ALIGN(pPriv->planeu_offset, pPriv->hw_align);
416 pPriv->planev_offset = pPriv->planeu_offset + dstPitch2 * RADEON_ALIGN(((aligned_height + 1) >> 1), h_align);
417 pPriv->planev_offset = RADEON_ALIGN(pPriv->planev_offset, pPriv->hw_align);
425 s2offset = srcPitch * (RADEON_ALIGN(height, 2));