Lines Matching full:inc
372 .macro usraccoff, instr, reg, ptr, inc, off, cond, abort, t=TUSER()
374 .if \inc == 1
376 .elseif \inc == 4
379 .error "Unsupported inc macro argument"
388 .macro usracc, instr, reg, ptr, inc, cond, rept, abort
402 usraccoff \instr, \reg, \ptr, \inc, 0, \cond, \abort
404 usraccoff \instr, \reg, \ptr, \inc, \inc, \cond, \abort
407 add\cond \ptr, #\rept * \inc
412 .macro usracc, instr, reg, ptr, inc, cond, rept, abort, t=TUSER()
415 .if \inc == 1
416 \instr\()b\t\cond \reg, [\ptr], #\inc
417 .elseif \inc == 4
418 \instr\t\cond \reg, [\ptr], #\inc
420 .error "Unsupported inc macro argument"
432 .macro strusr, reg, ptr, inc, cond=al, rept=1, abort=9001f
433 usracc str, \reg, \ptr, \inc, \cond, \rept, \abort
436 .macro ldrusr, reg, ptr, inc, cond=al, rept=1, abort=9001f
437 usracc ldr, \reg, \ptr, \inc, \cond, \rept, \abort