Home
last modified time | relevance | path

Searched refs:rounded_int (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/mips64/
Dsimulator-mips64.h213 int32_t& rounded_int, double fs);
215 int64_t& rounded_int, double fs);
217 int32_t& rounded_int, float fs);
219 int64_t& rounded_int, float fs);
222 T_int& rounded_int);
Dsimulator-mips64.cc1342 int32_t& rounded_int, double fs) { in round_according_to_fcsr() argument
1359 rounded_int = static_cast<int32_t>(rounded); in round_according_to_fcsr()
1360 if ((rounded_int & 1) != 0 && rounded_int - fs == 0.5) { in round_according_to_fcsr()
1363 rounded_int--; in round_according_to_fcsr()
1369 rounded_int = static_cast<int32_t>(rounded); in round_according_to_fcsr()
1373 rounded_int = static_cast<int32_t>(rounded); in round_according_to_fcsr()
1377 rounded_int = static_cast<int32_t>(rounded); in round_according_to_fcsr()
1384 int64_t& rounded_int, double fs) { in round64_according_to_fcsr() argument
1401 rounded_int = static_cast<int64_t>(rounded); in round64_according_to_fcsr()
1402 if ((rounded_int & 1) != 0 && rounded_int - fs == 0.5) { in round64_according_to_fcsr()
[all …]
/external/v8/src/mips/
Dsimulator-mips.h216 int32_t& rounded_int, double fs);
218 int32_t& rounded_int, float fs);
220 void round_according_to_msacsr(Tfp toRound, Tfp& rounded, Tint& rounded_int);
222 int64_t& rounded_int, double fs);
224 int64_t& rounded_int, float fs);
Dsimulator-mips.cc1424 int32_t& rounded_int, double fs) { in round_according_to_fcsr() argument
1441 rounded_int = static_cast<int32_t>(rounded); in round_according_to_fcsr()
1442 if ((rounded_int & 1) != 0 && rounded_int - fs == 0.5) { in round_according_to_fcsr()
1445 rounded_int--; in round_according_to_fcsr()
1451 rounded_int = static_cast<int32_t>(rounded); in round_according_to_fcsr()
1455 rounded_int = static_cast<int32_t>(rounded); in round_according_to_fcsr()
1459 rounded_int = static_cast<int32_t>(rounded); in round_according_to_fcsr()
1466 int32_t& rounded_int, float fs) { in round_according_to_fcsr() argument
1483 rounded_int = static_cast<int32_t>(rounded); in round_according_to_fcsr()
1484 if ((rounded_int & 1) != 0 && rounded_int - fs == 0.5) { in round_according_to_fcsr()
[all …]