Lines Matching full:loop
54 "cmp %[count8], #0 \n\t" // compare loop counter with 0
55 "beq 2f \n\t" // if loop counter == 0, exit
58 "subs %[count8], %[count8], #1 \n\t" // decrement loop counter
96 "bgt 1b \n\t" // loop if counter > 0
136 "1: \n\t" // eights loop
162 "subs %[count], %[count], #8 \n\t" // decrement loop counter
164 "bge 1b \n\t" // loop if counter >= 0
168 "3: \n\t" // singles loop
170 "subs %[count], %[count], #1 \n\t" // decrement loop counter
174 "bne 3b \n\t" // loop if counter != 0