Lines Matching refs:n

35 #define BANK(n)	(n^(FPSCR_FR?16:0))  argument
38 #define FRn (FR[BANK(n)])
41 #define DRn (DR[BANK(n)/2])
44 #define XREG(n) (n^16) argument
45 #define XFn (FR[BANK(XREG(n))])
47 #define XDn (DR[BANK(XREG(n))/2])
51 #define Rn (regs->regs[n])
79 fcmp_gt(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fcmp_gt() argument
90 fcmp_eq(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fcmp_eq() argument
106 fadd(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fadd() argument
113 fsub(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fsub() argument
120 fmul(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fmul() argument
127 fdiv(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fdiv() argument
134 fmac(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fmac() argument
156 int n) in fmov_idx_reg() argument
159 FMOV_EXT(n); in fmov_idx_reg()
161 n++; in fmov_idx_reg()
172 int n) in fmov_mem_reg() argument
175 FMOV_EXT(n); in fmov_mem_reg()
177 n++; in fmov_mem_reg()
188 int n) in fmov_inc_reg() argument
191 FMOV_EXT(n); in fmov_inc_reg()
193 n++; in fmov_inc_reg()
206 int n) in fmov_reg_idx() argument
222 int n) in fmov_reg_mem() argument
238 int n) in fmov_reg_dec() argument
256 int n) in fmov_reg_reg() argument
260 FMOV_EXT(n); in fmov_reg_reg()
270 fnop_mn(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fnop_mn() argument
276 #define NOTYETn(i) static int i(struct sh_fpu_soft_struct *fregs, int n) \
289 static int ffloat(struct sh_fpu_soft_struct *fregs, int n)
305 static int ftrc(struct sh_fpu_soft_struct *fregs, int n) in ftrc() argument
317 static int fcnvsd(struct sh_fpu_soft_struct *fregs, int n) in fcnvsd() argument
328 static int fcnvds(struct sh_fpu_soft_struct *fregs, int n) in fcnvds() argument
345 static int fsts(struct sh_fpu_soft_struct *fregs, int n) in fsts() argument
351 static int flds(struct sh_fpu_soft_struct *fregs, int n) in flds() argument
357 static int fneg(struct sh_fpu_soft_struct *fregs, int n) in fneg() argument
363 static int fabs(struct sh_fpu_soft_struct *fregs, int n) in fabs() argument
369 static int fld0(struct sh_fpu_soft_struct *fregs, int n) in fld0() argument
375 static int fld1(struct sh_fpu_soft_struct *fregs, int n) in fld1() argument
381 static int fnop_n(struct sh_fpu_soft_struct *fregs, int n) in fnop_n() argument
418 id_fnxd(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int x, int n) in id_fnxd() argument
420 return (fnxd[x])(fregs, n); in id_fnxd()
426 int n = (code >> 8) & 0xf, m = (code >> 4) & 0xf, x = code & 0xf; in id_fnmx() local
427 return (fnmx[x])(fregs, regs, m, n); in id_fnmx()
433 int n = ((code >> 8) & 0xf); in id_sys() local
477 static void denormal_to_double(struct sh_fpu_soft_struct *fpu, int n) in denormal_to_double() argument
493 fpu->fp_regs[n] = du; in denormal_to_double()
494 fpu->fp_regs[n+1] = dl; in denormal_to_double()