Lines Matching full:aligned
42 * Copy first bytes until dst is aligned to word boundary.
44 * t1 - start of aligned dst
48 /* dst is already aligned, skip */
56 bltu a0, t1, 1b /* t1 - start of aligned dst */
60 * Now dst is aligned.
62 * Use word-copy if both src and dst are aligned because
71 * Both src and dst are aligned, unrolled word copy
73 * a0 - start of aligned dst
74 * a1 - start of aligned src
75 * t0 - end of aligned dst
106 * For misaligned copy we still perform aligned word copy, but
111 * a0 - start of aligned dst
115 * t1 - end of aligned dst
117 /* calculating aligned word boundary for dst */
119 /* Converting unaligned src to aligned src */
137 * a0 - start of aligned dst
138 * a1 - start of aligned src
139 * t1 - end of aligned dst
194 * t0: lowest doubleword-aligned address in target region
195 * t1: highest doubleword-aligned address in target region