Lines Matching defs:xt1
822 * Divide the region given by X range [xt1, xt2) and Y range [yt1, yt2) into
828 * 'src' is the address of (xt1, yt1) in the source linear texture.
831 linear_to_tiled(uint32_t xt1, uint32_t xt2,
861 xt0 = ALIGN_DOWN(xt1, tw);
877 uint32_t x0 = MAX2(xt1, xt);
902 src + (ptrdiff_t)xt - xt1 + ((ptrdiff_t)yt - yt1) * src_pitch,
913 * Divide the region given by X range [xt1, xt2) and Y range [yt1, yt2) into
918 * 'dst' is the address of (xt1, yt1) in the destination linear texture.
922 tiled_to_linear(uint32_t xt1, uint32_t xt2,
961 xt0 = ALIGN_DOWN(xt1, tw);
977 uint32_t x0 = MAX2(xt1, xt);
1001 dst + (ptrdiff_t)xt - xt1 + ((ptrdiff_t)yt - yt1) * dst_pitch,