HomeSort by relevance Sort by last modified time
    Searched refs:art_d2i (Results 1 - 5 of 5) sorted by null

  /art/runtime/entrypoints/
math_entrypoints_test.cc 52 EXPECT_EQ(std::numeric_limits<int32_t>::max(), art_d2i(4.3e9));
53 EXPECT_EQ(std::numeric_limits<int32_t>::min(), art_d2i(-4.3e9));
54 EXPECT_EQ(0L, art_d2i(0));
55 EXPECT_EQ(1L, art_d2i(1.0));
56 EXPECT_EQ(10L, art_d2i(10.0));
57 EXPECT_EQ(100L, art_d2i(100.0));
58 EXPECT_EQ(-1L, art_d2i(-1.0));
59 EXPECT_EQ(-10L, art_d2i(-10.0));
60 EXPECT_EQ(-100L, art_d2i(-100.0));
math_entrypoints.h 25 extern "C" int32_t art_d2i(double d);
math_entrypoints.cc 43 extern "C" int32_t art_d2i(double d) { function in namespace:art
  /art/runtime/arch/mips64/
entrypoints_init_mips64.cc 150 qpoints->pD2iz = art_d2i;
  /art/runtime/arch/mips/
entrypoints_init_mips.cc 317 qpoints->pD2iz = art_d2i;

Completed in 79 milliseconds