Home
last modified time | relevance | path

Searched refs:cursor (Results 1 – 4 of 4) sorted by relevance

/rk3399_ARM-atf/lib/aarch64/
H A Dmisc_helpers.S147 cursor .req x0 /* Start address and then current address */
173 add stop_address, cursor, length
225 tst cursor, block_mask
233 orr tmp1, cursor, block_mask
254 tst cursor, #0xf
258 orr tmp2, cursor, #0xf
269 strb wzr, [cursor], #1
270 cmp cursor, tmp2
279 cmp cursor, tmp1
282 stp xzr, xzr, [cursor], #16
[all …]
/rk3399_ARM-atf/lib/libc/
H A Dstrlen.c11 const char *cursor = s; in strlen() local
13 while (*cursor) in strlen()
14 cursor++; in strlen()
16 return cursor - s; in strlen()
/rk3399_ARM-atf/lib/aarch32/
H A Dmisc_helpers.S50 cursor .req r0 /* Start address and then current address */
64 add stop_address, cursor, length
75 tst cursor, #(8-1)
79 orr tmp, cursor, #(8-1)
89 strb zeroreg1, [cursor], #1
90 cmp cursor, tmp
99 cmp cursor, tmp
104 stmia cursor!, {zeroreg1, zeroreg2}
105 cmp cursor, tmp
111 cmp cursor, stop_address
[all …]
/rk3399_ARM-atf/lib/debugfs/
H A Ddev.c98 const char *cursor; in next() local
105 cursor = path; in next()
107 while (*cursor != '/' && *cursor != '\0') { in next()
111 token[index++] = *cursor++; in next()
116 return cursor; in next()