/third_party/node/deps/v8/src/execution/mips64/ |
H A D | simulator-mips64.h | 276 void round_according_to_fcsr(double toRound, double* rounded, 278 void round64_according_to_fcsr(double toRound, double* rounded, 280 void round_according_to_fcsr(float toRound, float* rounded, 282 void round64_according_to_fcsr(float toRound, float* rounded, 285 void round_according_to_msacsr(T_fp toRound, T_fp* rounded,
|
H A D | simulator-mips64.cc | 1331 void Simulator::round_according_to_fcsr(double toRound, double* rounded, in round_according_to_fcsr() argument 1372 void Simulator::round64_according_to_fcsr(double toRound, double* rounded, in round64_according_to_fcsr() argument 1414 void Simulator::round_according_to_fcsr(float toRound, float* rounded, in round_according_to_fcsr() argument 1455 void Simulator::round64_according_to_fcsr(float toRound, float* rounded, in round64_according_to_fcsr() argument 1497 void Simulator::round_according_to_msacsr(T_fp toRound, T_fp* rounded, in round_according_to_msacsr() argument 1514 *rounded = std::floor(toRound + 0.5); in round_according_to_msacsr() 1516 if ((*rounded_int & 1) != 0 && *rounded_int - toRound == 0.5) { in round_according_to_msacsr() 1524 *rounded = trunc(toRound); in round_according_to_msacsr() 1528 *rounded = std::ceil(toRound); in round_according_to_msacsr() 1532 *rounded = std::floor(toRound); in round_according_to_msacsr() [all...] |
/third_party/node/deps/v8/src/execution/mips/ |
H A D | simulator-mips.h | 280 void round_according_to_fcsr(double toRound, double* rounded, 282 void round_according_to_fcsr(float toRound, float* rounded, 285 void round_according_to_msacsr(Tfp toRound, Tfp* rounded, Tint* rounded_int); 286 void round64_according_to_fcsr(double toRound, double* rounded, 288 void round64_according_to_fcsr(float toRound, float* rounded,
|
H A D | simulator-mips.cc | 1401 void Simulator::round_according_to_fcsr(double toRound, double* rounded, in round_according_to_fcsr() argument 1442 void Simulator::round_according_to_fcsr(float toRound, float* rounded, in round_according_to_fcsr() argument 1484 void Simulator::round_according_to_msacsr(T_fp toRound, T_fp* rounded, in round_according_to_msacsr() argument 1501 *rounded = std::floor(toRound + 0.5); in round_according_to_msacsr() 1503 if ((*rounded_int & 1) != 0 && *rounded_int - toRound == 0.5) { in round_according_to_msacsr() 1511 *rounded = trunc(toRound); in round_according_to_msacsr() 1515 *rounded = std::ceil(toRound); in round_according_to_msacsr() 1519 *rounded = std::floor(toRound); in round_according_to_msacsr() 1525 void Simulator::round64_according_to_fcsr(double toRound, double* rounded, in round64_according_to_fcsr() argument 1566 void Simulator::round64_according_to_fcsr(float toRound, floa argument [all...] |
/third_party/skia/docs/examples/ |
H A D | IRect_MakeSize.cpp | 8 SkIRect rect = SkIRect::MakeSize(size.toRound()); in REG_FIDDLE()
|
/third_party/node/deps/v8/src/execution/loong64/ |
H A D | simulator-loong64.h | 248 void round_according_to_fcsr(double toRound, double* rounded, 250 void round64_according_to_fcsr(double toRound, double* rounded, 252 void round_according_to_fcsr(float toRound, float* rounded, 254 void round64_according_to_fcsr(float toRound, float* rounded,
|
H A D | simulator-loong64.cc | 1274 void Simulator::round_according_to_fcsr(double toRound, double* rounded, in round_according_to_fcsr() argument 1292 *rounded = std::floor(toRound + 0.5); in round_according_to_fcsr() 1294 if ((*rounded_int & 1) != 0 && *rounded_int - toRound == 0.5) { in round_according_to_fcsr() 1302 *rounded = trunc(toRound); in round_according_to_fcsr() 1306 *rounded = std::ceil(toRound); in round_according_to_fcsr() 1310 *rounded = std::floor(toRound); in round_according_to_fcsr() 1316 void Simulator::round64_according_to_fcsr(double toRound, double* rounded, in round64_according_to_fcsr() argument 1333 *rounded = std::floor(toRound + 0.5); in round64_according_to_fcsr() 1335 if ((*rounded_int & 1) != 0 && *rounded_int - toRound == 0.5) { in round64_according_to_fcsr() 1343 *rounded = std::trunc(toRound); in round64_according_to_fcsr() 1357 round_according_to_fcsr(float toRound, float* rounded, int32_t* rounded_int) round_according_to_fcsr() argument 1398 round64_according_to_fcsr(float toRound, float* rounded, int64_t* rounded_int) round64_according_to_fcsr() argument [all...] |
/third_party/skia/tests/ |
H A D | SizeTest.cpp | 62 REPORTER_ASSERT(reporter, a.toRound() == ia); in DEF_TEST()
|
/third_party/skia/include/core/ |
H A D | SkSize.h | 78 SkISize toRound() const { return {SkScalarRoundToInt(fWidth), SkScalarRoundToInt(fHeight)}; } in toRound() function
|
/third_party/skia/tools/ |
H A D | skottie2movie.cpp | 75 SkISize dim = animation->size().toRound(); in main()
|
/third_party/skia/src/core/ |
H A D | SkImageFilterTypes.h | 332 LayerSpace<SkISize> round() const { return LayerSpace<SkISize>(fData.toRound()); } in round()
|
/third_party/skia/src/pdf/ |
H A D | SkPDFDocument.cpp | 274 SkISize pageSize = (SkSize{width, height} * fRasterScale).toRound(); in onBeginPage()
|
/third_party/skia/dm/ |
H A D | DMSrcSink.cpp | 1372 .toRound(); in size()
|