Lines Matching refs:WriteWord
25 WriteWord 0x6C 0x2900 // asm: cmp r1, #0 // compare arg1
26 WriteWord 0x6E 0xD000 // asm: beq 0x72 // jump to 0x72 if equal
27 WriteWord 0x70 0xE0D6 // asm: b 0x220 // jump to 0x220
28 WriteWord 0x72 0xE0C5 // asm: b 0x200 // jump to 0x200
31 WriteWord 0x74 0x6800 // asm: ldr r0, [r0, #0]
32 WriteWord 0x76 0x4770 // asm: bx lr
39 WriteWord 0x9C 0x300F // asm: adds r0, #15 // add 15 iterations
40 WriteWord 0x9E 0x3801 // asm: subs r0, #1 // decrement number of iterations
41 WriteWord 0xA0 0x2800 // asm: cmp r0, #0 // compare with 0
42 WriteWord 0xA2 0xd1fc // asm: bne.n 0x9E // jump to 0x9E if not equal
43 WriteWord 0xA4 0x4770 // asm: bx lr // return
52 WriteWord 0x38 0x4718 // asm: bx r3
65 WriteWord 0x200 0x9800 // asm: ldr r0, [sp] // load numWords from stack
66 …WriteWord 0x202 0x0080 // asm: lsl r0, r0, #2 // multiply numWords by 4 (to get number of byt…
67 WriteWord 0x204 0x009B // asm: lsl r3, r3, #2 // multiply dst to get the actual address
68 WriteWord 0x206 0x501A // asm: str r2, [r3, r0] // store r2 to dst + numWords
69 WriteWord 0x208 0x3804 // asm: subs r0, #4 // decrease numWords
70 WriteWord 0x20A 0x2800 // asm: cmp r0, #0 // compare numWords with 0
71 WriteWord 0x20C 0xDAFB // asm: bge 0x206 // jump to 0x206 if not negative
72 WriteWord 0x20E 0x2000 // asm: movs r0, #0 // set return value to OK
73 WriteWord 0x210 0x4770 // asm: bx lr // return
76 WriteWord 0x220 0x9800 // asm: ldr r0, [sp] // load numWords from stack
77 …WriteWord 0x222 0x0080 // asm: lsl r0, r0, #2 // multiply numWords by 4 (to get number of byt…
78 WriteWord 0x224 0x009B // asm: lsl r3, r3, #2 // multiply dst to get the actual address
79 WriteWord 0x226 0x5811 // asm: ldr r1, [r2, r0] // load src + numWords to r5
80 WriteWord 0x228 0x5019 // asm: str r1, [r3, r0] // store r1 to dst + numWords
81 WriteWord 0x22A 0x3804 // asm: subs r0, #4 // decrease numWords
82 WriteWord 0x22C 0x2800 // asm: cmp r0, #0 // compare numWords with 0
83 WriteWord 0x22E 0xDAFA // asm: bge 0x226 // jump to 0x226 if not negative
84 WriteWord 0x230 0x2000 // asm: movs r0, #0 // set return value to OK
85 WriteWord 0x232 0x4770 // asm: bx lr // return