Lines Matching refs:FPRoundInt
2346 value = FPRoundInt(value, rmode); in FPToInt32()
2357 value = FPRoundInt(value, rmode); in FPToInt64()
2368 value = FPRoundInt(value, rmode); in FPToUInt32()
2379 value = FPRoundInt(value, rmode); in FPToUInt64()
2463 case FRINTA_s: set_sreg(fd, FPRoundInt(sreg(fn), FPTieAway)); break; in VisitFPDataProcessing1Source()
2464 case FRINTA_d: set_dreg(fd, FPRoundInt(dreg(fn), FPTieAway)); break; in VisitFPDataProcessing1Source()
2466 set_sreg(fd, FPRoundInt(sreg(fn), FPNegativeInfinity)); break; in VisitFPDataProcessing1Source()
2468 set_dreg(fd, FPRoundInt(dreg(fn), FPNegativeInfinity)); break; in VisitFPDataProcessing1Source()
2470 set_sreg(fd, FPRoundInt(sreg(fn), FPPositiveInfinity)); in VisitFPDataProcessing1Source()
2473 set_dreg(fd, FPRoundInt(dreg(fn), FPPositiveInfinity)); in VisitFPDataProcessing1Source()
2475 case FRINTN_s: set_sreg(fd, FPRoundInt(sreg(fn), FPTieEven)); break; in VisitFPDataProcessing1Source()
2476 case FRINTN_d: set_dreg(fd, FPRoundInt(dreg(fn), FPTieEven)); break; in VisitFPDataProcessing1Source()
2477 case FRINTZ_s: set_sreg(fd, FPRoundInt(sreg(fn), FPZero)); break; in VisitFPDataProcessing1Source()
2478 case FRINTZ_d: set_dreg(fd, FPRoundInt(dreg(fn), FPZero)); break; in VisitFPDataProcessing1Source()
2729 double Simulator::FPRoundInt(double value, FPRounding round_mode) { in FPRoundInt() function in v8::internal::Simulator