Lines Matching full:n

129   __asm__ volatile ("                                                   \n\  in strcpy()
130 or r9, r0, r0 /* Index register */ \n\ in strcpy()
131 check_alignment: \n\ in strcpy()
132 andi r3, r5, 3 \n\ in strcpy()
133 andi r4, r6, 3 \n\ in strcpy()
134 bnei r3, try_align_args \n\ in strcpy()
135 bnei r4, regular_strcpy /* At this point we dont have a choice */ \n\ in strcpy()
136 cpy_loop: \n" in strcpy()
138 " \n\ in strcpy()
139 pcmpbf r4, r0, r3 \n\ in strcpy()
140 bnei r4, cpy_bytes /* If r4 != 0, then null present within string */\n" in strcpy()
142 " \n\ in strcpy()
143 brid cpy_loop \n\ in strcpy()
144 addik r9, r9, 4 \n\ in strcpy()
145 cpy_bytes: \n\ in strcpy()
146 lbu r3, r6, r9 \n\ in strcpy()
147 sb r3, r5, r9 \n\ in strcpy()
148 addik r4, r4, -1 \n\ in strcpy()
149 bneid r4, cpy_bytes \n\ in strcpy()
150 addik r9, r9, 1 /* delay slot */\n\ in strcpy()
151 cpy_null: \n\ in strcpy()
152 rtsd r15, 8 \n\ in strcpy()
153 or r3, r0, r5 /* Return strcpy result */\n\ in strcpy()
154 try_align_args: \n\ in strcpy()
155 xor r7, r4, r3 \n\ in strcpy()
156 bnei r7, regular_strcpy /* cannot align args */\n\ in strcpy()
157 rsubik r10, r3, 4 /* Number of initial bytes to align */\n\ in strcpy()
158 align_loop: \n\ in strcpy()
159 lbu r3, r6, r9 \n\ in strcpy()
160 sb r3, r5, r9 \n\ in strcpy()
161 beqid r3, end_cpy /* Break if we have seen null character */\n\ in strcpy()
162 addik r10, r10, -1 \n\ in strcpy()
163 bneid r10, align_loop \n\ in strcpy()
164 addik r9, r9, 1 \n\ in strcpy()
165 bri cpy_loop \n\ in strcpy()
166 regular_strcpy: \n\ in strcpy()
167 lbu r3, r6, r9 \n\ in strcpy()
168 sb r3, r5, r9 \n\ in strcpy()
169 bneid r3, regular_strcpy \n\ in strcpy()
170 addik r9, r9, 1 \n\ in strcpy()
171 end_cpy: \n\ in strcpy()
172 rtsd r15, 8 \n\ in strcpy()