OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isdenormal
(Results
1 - 7
of
7
) sorted by null
/external/v8/src/
double.h
79
if (
IsDenormal
()) return kDenormalExponent;
90
if (!
IsDenormal
()) {
98
bool
IsDenormal
() const {
/external/v8/test/cctest/
test-double.cc
95
TEST(
IsDenormal
) {
97
CHECK(Double(min_double64).
IsDenormal
());
99
CHECK(Double(bits).
IsDenormal
());
101
CHECK(!Double(bits).
IsDenormal
());
/external/llvm/unittests/ADT/
APFloatTest.cpp
221
EXPECT_FALSE(test.
isDenormal
());
230
EXPECT_FALSE(test.
isDenormal
());
239
EXPECT_TRUE(test.
isDenormal
());
248
EXPECT_TRUE(test.
isDenormal
());
298
EXPECT_TRUE(test.
isDenormal
());
307
EXPECT_TRUE(test.
isDenormal
());
316
EXPECT_TRUE(!test.
isDenormal
());
325
EXPECT_TRUE(!test.
isDenormal
());
382
EXPECT_TRUE(test.
isDenormal
());
392
EXPECT_TRUE(test.
isDenormal
());
[
all
...]
/external/llvm/include/llvm/ADT/
APFloat.h
408
bool isNormal() const { return !
isDenormal
() && isFiniteNonZero(); }
421
bool
isDenormal
() const;
/external/llvm/lib/Support/
APFloat.cpp
703
APFloat::
isDenormal
() const {
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp
[
all
...]
/external/clang/lib/AST/
ExprConstant.cpp
[
all
...]
Completed in 630 milliseconds