Searched refs:smallest_positive (Results 1 – 1 of 1) sorted by relevance
/bionic/tests/ |
D | math_test.cpp | 1040 long double smallest_positive = ldexpl(1.0L, LDBL_MIN_EXP - LDBL_MANT_DIG); in TEST() local 1041 ASSERT_DOUBLE_EQ(smallest_positive, nextafterl(0.0L, 1.0L)); in TEST() 1042 ASSERT_DOUBLE_EQ(-smallest_positive, nextafterl(0.0L, -1.0L)); in TEST() 1061 long double smallest_positive = ldexpl(1.0L, LDBL_MIN_EXP - LDBL_MANT_DIG); in TEST() local 1062 ASSERT_DOUBLE_EQ(smallest_positive, nexttowardl(0.0L, 1.0L)); in TEST() 1063 ASSERT_DOUBLE_EQ(-smallest_positive, nexttowardl(0.0L, -1.0L)); in TEST()
|