Lines Matching full:aligned
43 * Copy first bytes until dst is aligned to word boundary.
45 * t1 - start of aligned dst
49 /* dst is already aligned, skip */
57 bltu a0, t1, 1b /* t1 - start of aligned dst */
61 * Now dst is aligned.
63 * Use word-copy if both src and dst are aligned because
72 * Both src and dst are aligned, unrolled word copy
74 * a0 - start of aligned dst
75 * a1 - start of aligned src
76 * t0 - end of aligned dst
107 * For misaligned copy we still perform aligned word copy, but
112 * a0 - start of aligned dst
116 * t1 - end of aligned dst
118 /* calculating aligned word boundary for dst */
120 /* Converting unaligned src to aligned src */
138 * a0 - start of aligned dst
139 * a1 - start of aligned src
140 * t1 - end of aligned dst
202 * t0: lowest doubleword-aligned address in target region
203 * t1: highest doubleword-aligned address in target region