Lines Matching defs:vdst
2162 void TurboAssembler::Ceil_f(VRegister vdst, VRegister vsrc, Register scratch,
2164 RoundHelper<float>(vdst, vsrc, scratch, v_scratch, RUP);
2167 void TurboAssembler::Ceil_d(VRegister vdst, VRegister vsrc, Register scratch,
2169 RoundHelper<double>(vdst, vsrc, scratch, v_scratch, RUP);
2172 void TurboAssembler::Floor_f(VRegister vdst, VRegister vsrc, Register scratch,
2174 RoundHelper<float>(vdst, vsrc, scratch, v_scratch, RDN);
2177 void TurboAssembler::Floor_d(VRegister vdst, VRegister vsrc, Register scratch,
2179 RoundHelper<double>(vdst, vsrc, scratch, v_scratch, RDN);
2182 void TurboAssembler::Trunc_d(VRegister vdst, VRegister vsrc, Register scratch,
2184 RoundHelper<double>(vdst, vsrc, scratch, v_scratch, RTZ);
2187 void TurboAssembler::Trunc_f(VRegister vdst, VRegister vsrc, Register scratch,
2189 RoundHelper<float>(vdst, vsrc, scratch, v_scratch, RTZ);
2192 void TurboAssembler::Round_f(VRegister vdst, VRegister vsrc, Register scratch,
2194 RoundHelper<float>(vdst, vsrc, scratch, v_scratch, RNE);
2197 void TurboAssembler::Round_d(VRegister vdst, VRegister vsrc, Register scratch,
2199 RoundHelper<double>(vdst, vsrc, scratch, v_scratch, RNE);