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

  /art/runtime/entrypoints/
math_entrypoints_test.cc 28 EXPECT_EQ(std::numeric_limits<int64_t>::max(), art_d2l(1.85e19));
29 EXPECT_EQ(std::numeric_limits<int64_t>::min(), art_d2l(-1.85e19));
30 EXPECT_EQ(INT64_C(0), art_d2l(0));
31 EXPECT_EQ(INT64_C(1), art_d2l(1.0));
32 EXPECT_EQ(INT64_C(10), art_d2l(10.0));
33 EXPECT_EQ(INT64_C(100), art_d2l(100.0));
34 EXPECT_EQ(INT64_C(-1), art_d2l(-1.0));
35 EXPECT_EQ(INT64_C(-10), art_d2l(-10.0));
36 EXPECT_EQ(INT64_C(-100), art_d2l(-100.0));
math_entrypoints.h 24 extern "C" int64_t art_d2l(double d);
math_entrypoints.cc 35 extern "C" int64_t art_d2l(double d) { function in namespace:art
  /art/compiler/llvm/
runtime_support_llvm_func_list.h 70 V(art_d2l, art_d2l) \
gbc_expander.cc 111 using ::art::llvm::runtime_support::art_d2l;
    [all...]
  /art/runtime/arch/arm/
entrypoints_init_arm.cc 201 qpoints->pD2l = art_d2l;
  /art/runtime/arch/mips/
entrypoints_init_mips.cc 206 qpoints->pD2l = art_d2l;
  /art/runtime/arch/x86_64/
entrypoints_init_x86_64.cc 188 qpoints->pD2l = art_d2l;
  /art/runtime/arch/x86/
quick_entrypoints_x86.S     [all...]

Completed in 160 milliseconds