OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:art_d2l
(Results
1 - 8
of
8
) 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/runtime/arch/mips64/
entrypoints_init_mips64.cc
153
qpoints->pD2l =
art_d2l
;
/art/runtime/arch/x86_64/
entrypoints_init_x86_64.cc
108
qpoints->pD2l =
art_d2l
;
/art/runtime/arch/mips/
entrypoints_init_mips.cc
322
qpoints->pD2l =
art_d2l
;
/art/runtime/arch/arm/
quick_entrypoints_arm.S
[
all
...]
/art/runtime/arch/x86/
quick_entrypoints_x86.S
[
all
...]
Completed in 206 milliseconds