Lines Matching refs:func

233 	int (*func)(void *, void *, void *, void *);  in do_mathemu()  local
241 case LFS: func = lfs; type = D; break; in do_mathemu()
242 case LFSU: func = lfs; type = DU; break; in do_mathemu()
243 case LFD: func = lfd; type = D; break; in do_mathemu()
244 case LFDU: func = lfd; type = DU; break; in do_mathemu()
245 case STFS: func = stfs; type = D; break; in do_mathemu()
246 case STFSU: func = stfs; type = DU; break; in do_mathemu()
247 case STFD: func = stfd; type = D; break; in do_mathemu()
248 case STFDU: func = stfd; type = DU; break; in do_mathemu()
252 case LFSX: func = lfs; type = XE; break; in do_mathemu()
253 case LFSUX: func = lfs; type = XEU; break; in do_mathemu()
254 case LFDX: func = lfd; type = XE; break; in do_mathemu()
255 case LFDUX: func = lfd; type = XEU; break; in do_mathemu()
256 case STFSX: func = stfs; type = XE; break; in do_mathemu()
257 case STFSUX: func = stfs; type = XEU; break; in do_mathemu()
258 case STFDX: func = stfd; type = XE; break; in do_mathemu()
259 case STFDUX: func = stfd; type = XEU; break; in do_mathemu()
260 case STFIWX: func = stfiwx; type = XE; break; in do_mathemu()
268 case FDIVS: func = fdivs; type = AB; break; in do_mathemu()
269 case FSUBS: func = fsubs; type = AB; break; in do_mathemu()
270 case FADDS: func = fadds; type = AB; break; in do_mathemu()
271 case FSQRTS: func = fsqrts; type = XB; break; in do_mathemu()
272 case FRES: func = fres; type = XB; break; in do_mathemu()
273 case FMULS: func = fmuls; type = AC; break; in do_mathemu()
274 case FRSQRTES: func = frsqrtes;type = XB; break; in do_mathemu()
275 case FMSUBS: func = fmsubs; type = ABC; break; in do_mathemu()
276 case FMADDS: func = fmadds; type = ABC; break; in do_mathemu()
277 case FNMSUBS: func = fnmsubs; type = ABC; break; in do_mathemu()
278 case FNMADDS: func = fnmadds; type = ABC; break; in do_mathemu()
287 case FDIV: func = fdiv; type = AB; break; in do_mathemu()
288 case FSUB: func = fsub; type = AB; break; in do_mathemu()
289 case FADD: func = fadd; type = AB; break; in do_mathemu()
290 case FSQRT: func = fsqrt; type = XB; break; in do_mathemu()
291 case FRE: func = fre; type = XB; break; in do_mathemu()
292 case FSEL: func = fsel; type = ABC; break; in do_mathemu()
293 case FMUL: func = fmul; type = AC; break; in do_mathemu()
294 case FRSQRTE: func = frsqrte; type = XB; break; in do_mathemu()
295 case FMSUB: func = fmsub; type = ABC; break; in do_mathemu()
296 case FMADD: func = fmadd; type = ABC; break; in do_mathemu()
297 case FNMSUB: func = fnmsub; type = ABC; break; in do_mathemu()
298 case FNMADD: func = fnmadd; type = ABC; break; in do_mathemu()
306 case FCMPU: func = fcmpu; type = XCR; break; in do_mathemu()
307 case FRSP: func = frsp; type = XB; break; in do_mathemu()
308 case FCTIW: func = fctiw; type = XB; break; in do_mathemu()
309 case FCTIWZ: func = fctiwz; type = XB; break; in do_mathemu()
310 case FCMPO: func = fcmpo; type = XCR; break; in do_mathemu()
311 case MTFSB1: func = mtfsb1; type = XCRB; break; in do_mathemu()
312 case FNEG: func = fneg; type = XB; break; in do_mathemu()
313 case MCRFS: func = mcrfs; type = XCRL; break; in do_mathemu()
314 case MTFSB0: func = mtfsb0; type = XCRB; break; in do_mathemu()
315 case FMR: func = fmr; type = XB; break; in do_mathemu()
316 case MTFSFI: func = mtfsfi; type = XCRI; break; in do_mathemu()
317 case FNABS: func = fnabs; type = XB; break; in do_mathemu()
318 case FABS: func = fabs; type = XB; break; in do_mathemu()
319 case MFFS: func = mffs; type = X; break; in do_mathemu()
320 case MTFSF: func = mtfsf; type = XFLB; break; in do_mathemu()
435 eflag = func(op0, op1, op2, op3); in do_mathemu()