Lines Matching full:aligned
51 * Copy first bytes until dst is aligned to word boundary.
53 * t1 - start of aligned dst
57 /* dst is already aligned, skip */
65 bltu a0, t1, 1b /* t1 - start of aligned dst */
69 * Now dst is aligned.
71 * Use word-copy if both src and dst are aligned because
80 * Both src and dst are aligned, unrolled word copy
82 * a0 - start of aligned dst
83 * a1 - start of aligned src
84 * t0 - end of aligned dst
115 * For misaligned copy we still perform aligned word copy, but
120 * a0 - start of aligned dst
124 * t1 - end of aligned dst
126 /* calculating aligned word boundary for dst */
128 /* Converting unaligned src to aligned src */
146 * a0 - start of aligned dst
147 * a1 - start of aligned src
148 * t1 - end of aligned dst
211 * t0: lowest doubleword-aligned address in target region
212 * t1: highest doubleword-aligned address in target region