Lines Matching refs:FPRoundInt
2385 value = FPRoundInt(value, rmode); in FPToInt32()
2396 value = FPRoundInt(value, rmode); in FPToInt64()
2407 value = FPRoundInt(value, rmode); in FPToUInt32()
2418 value = FPRoundInt(value, rmode); in FPToUInt64()
2502 case FRINTA_s: set_sreg(fd, FPRoundInt(sreg(fn), FPTieAway)); break; in VisitFPDataProcessing1Source()
2503 case FRINTA_d: set_dreg(fd, FPRoundInt(dreg(fn), FPTieAway)); break; in VisitFPDataProcessing1Source()
2505 set_sreg(fd, FPRoundInt(sreg(fn), FPNegativeInfinity)); break; in VisitFPDataProcessing1Source()
2507 set_dreg(fd, FPRoundInt(dreg(fn), FPNegativeInfinity)); break; in VisitFPDataProcessing1Source()
2509 set_sreg(fd, FPRoundInt(sreg(fn), FPPositiveInfinity)); in VisitFPDataProcessing1Source()
2512 set_dreg(fd, FPRoundInt(dreg(fn), FPPositiveInfinity)); in VisitFPDataProcessing1Source()
2514 case FRINTN_s: set_sreg(fd, FPRoundInt(sreg(fn), FPTieEven)); break; in VisitFPDataProcessing1Source()
2515 case FRINTN_d: set_dreg(fd, FPRoundInt(dreg(fn), FPTieEven)); break; in VisitFPDataProcessing1Source()
2516 case FRINTZ_s: set_sreg(fd, FPRoundInt(sreg(fn), FPZero)); break; in VisitFPDataProcessing1Source()
2517 case FRINTZ_d: set_dreg(fd, FPRoundInt(dreg(fn), FPZero)); break; in VisitFPDataProcessing1Source()
2768 double Simulator::FPRoundInt(double value, FPRounding round_mode) { in FPRoundInt() function in v8::internal::Simulator