Home | History | Annotate | Download | only in string

Lines Matching refs:ip

41 	mov	ip, r0			/* need to preserve r0 */
48 ands r2, ip, #7 /* are we dword aligned? */
52 tst ip, #1 /* halfword aligned? */
53 strneb r3, [ip], #1 /* nope, write a byte */
54 tst ip, #2 /* word aligned? */
55 strneh r3, [ip], #2 /* nope, write a halfword */
56 tst ip, #4 /* dword aligned? */
57 strne r3, [ip], #4 /* nope, write a word */
63 stmhsia ip!, {r2,r3} /* yes, write the first 8 of them */
64 stmhsia ip!, {r2,r3} /* yes, write the second 8 of them */
72 stmneia ip!, {r2,r3} /* so do it */
74 strne r3, [ip], #4 /* so do it */
76 strneh r3, [ip], #2 /* so do it */
78 strneb r3, [ip], #1 /* so do it */
84 strb r3, [ip], #1 /* write a byte */