• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/mm/

Lines Matching refs:op

271 	u32 op;
282 op = ip->match;
284 if (ip->fields & RS) op |= build_rs(va_arg(ap, u32));
285 if (ip->fields & RT) op |= build_rt(va_arg(ap, u32));
286 if (ip->fields & RD) op |= build_rd(va_arg(ap, u32));
287 if (ip->fields & RE) op |= build_re(va_arg(ap, u32));
288 if (ip->fields & SIMM) op |= build_simm(va_arg(ap, s32));
289 if (ip->fields & UIMM) op |= build_uimm(va_arg(ap, u32));
290 if (ip->fields & BIMM) op |= build_bimm(va_arg(ap, s32));
291 if (ip->fields & JIMM) op |= build_jimm(va_arg(ap, u32));
292 if (ip->fields & FUNC) op |= build_func(va_arg(ap, u32));
293 if (ip->fields & SET) op |= build_set(va_arg(ap, u32));
296 **buf = op;
300 #define I_u1u2u3(op) \
301 static inline void __init i##op(u32 **buf, unsigned int a, \
304 build_insn(buf, insn##op, a, b, c); \
307 #define I_u2u1u3(op) \
308 static inline void __init i##op(u32 **buf, unsigned int a, \
311 build_insn(buf, insn##op, b, a, c); \
314 #define I_u3u1u2(op) \
315 static inline void __init i##op(u32 **buf, unsigned int a, \
318 build_insn(buf, insn##op, b, c, a); \
321 #define I_u1u2s3(op) \
322 static inline void __init i##op(u32 **buf, unsigned int a, \
325 build_insn(buf, insn##op, a, b, c); \
328 #define I_u2s3u1(op) \
329 static inline void __init i##op(u32 **buf, unsigned int a, \
332 build_insn(buf, insn##op, c, a, b); \
335 #define I_u2u1s3(op) \
336 static inline void __init i##op(u32 **buf, unsigned int a, \
339 build_insn(buf, insn##op, b, a, c); \
342 #define I_u1u2(op) \
343 static inline void __init i##op(u32 **buf, unsigned int a, \
346 build_insn(buf, insn##op, a, b); \
349 #define I_u1s2(op) \
350 static inline void __init i##op(u32 **buf, unsigned int a, \
353 build_insn(buf, insn##op, a, b); \
356 #define I_u1(op) \
357 static inline void __init i##op(u32 **buf, unsigned int a) \
359 build_insn(buf, insn##op, a); \
362 #define I_0(op) \
363 static inline void __init i##op(u32 **buf) \
365 build_insn(buf, insn##op); \