Lines Matching full:aligned
40 * Copy first bytes until dst is aligned to word boundary.
42 * t1 - start of aligned dst
46 /* dst is already aligned, skip */
54 bltu a0, t1, 1b /* t1 - start of aligned dst */
58 * Now dst is aligned.
60 * Use word-copy if both src and dst are aligned because
69 * Both src and dst are aligned, unrolled word copy
71 * a0 - start of aligned dst
72 * a1 - start of aligned src
73 * t0 - end of aligned dst
104 * For misaligned copy we still perform aligned word copy, but
109 * a0 - start of aligned dst
113 * t1 - end of aligned dst
115 /* calculating aligned word boundary for dst */
117 /* Converting unaligned src to aligned src */
135 * a0 - start of aligned dst
136 * a1 - start of aligned src
137 * t1 - end of aligned dst
199 * t0: lowest doubleword-aligned address in target region
200 * t1: highest doubleword-aligned address in target region