Lines Matching full:inc
469 .macro usraccoff, instr, reg, ptr, inc, off, cond, abort, t=TUSER()
471 .if \inc == 1
473 .elseif \inc == 4
476 .error "Unsupported inc macro argument"
485 .macro usracc, instr, reg, ptr, inc, cond, rept, abort
499 usraccoff \instr, \reg, \ptr, \inc, 0, \cond, \abort
501 usraccoff \instr, \reg, \ptr, \inc, \inc, \cond, \abort
504 add\cond \ptr, #\rept * \inc
509 .macro usracc, instr, reg, ptr, inc, cond, rept, abort, t=TUSER()
512 .if \inc == 1
513 \instr\()b\t\cond \reg, [\ptr], #\inc
514 .elseif \inc == 4
515 \instr\t\cond \reg, [\ptr], #\inc
517 .error "Unsupported inc macro argument"
529 .macro strusr, reg, ptr, inc, cond=al, rept=1, abort=9001f
530 usracc str, \reg, \ptr, \inc, \cond, \rept, \abort
533 .macro ldrusr, reg, ptr, inc, cond=al, rept=1, abort=9001f
534 usracc ldr, \reg, \ptr, \inc, \cond, \rept, \abort