Lines Matching defs:end
21 * start to end inclusive, of this form:
28 .macro OP_REGS op, width, start, end, base, offset
30 .rept (\end - \start + 1)
37 * This expands to a sequence of register clears for regs start to end
42 .macro ZEROIZE_REGS start, end
44 .rept (\end - \start + 1)
55 #define SAVE_GPRS(start, end, base) OP_REGS std, 8, start, end, base, GPR0
56 #define REST_GPRS(start, end, base) OP_REGS ld, 8, start, end, base, GPR0
60 #define SAVE_GPRS(start, end, base) OP_REGS stw, 4, start, end, base, GPR0
61 #define REST_GPRS(start, end, base) OP_REGS lwz, 4, start, end, base, GPR0
66 #define ZEROIZE_GPRS(start, end) ZEROIZE_REGS start, end
83 #define SANITIZE_GPRS(start, end) ZEROIZE_GPRS(start, end)
90 #define SANITIZE_GPRS(start, end)
272 * section, which gets emitted at the end of regular text.