Lines Matching refs:inc
380 .macro usraccoff, instr, reg, ptr, inc, off, cond, abort, t=TUSER()
382 .if \inc == 1
384 .elseif \inc == 4
387 .error "Unsupported inc macro argument"
393 .macro usracc, instr, reg, ptr, inc, cond, rept, abort
407 usraccoff \instr, \reg, \ptr, \inc, 0, \cond, \abort
409 usraccoff \instr, \reg, \ptr, \inc, \inc, \cond, \abort
412 add\cond \ptr, #\rept * \inc
417 .macro usracc, instr, reg, ptr, inc, cond, rept, abort, t=TUSER()
420 .if \inc == 1
421 \instr\()b\t\cond \reg, [\ptr], #\inc
422 .elseif \inc == 4
423 \instr\t\cond \reg, [\ptr], #\inc
425 .error "Unsupported inc macro argument"
434 .macro strusr, reg, ptr, inc, cond=al, rept=1, abort=9001f
435 usracc str, \reg, \ptr, \inc, \cond, \rept, \abort
438 .macro ldrusr, reg, ptr, inc, cond=al, rept=1, abort=9001f
439 usracc ldr, \reg, \ptr, \inc, \cond, \rept, \abort