/external/chromium_org/third_party/WebKit/Source/platform/ |
D | DecimalTest.cpp | 47 << ", " << (data.sign() == Decimal::Negative ? "Negative" : "Positive") in operator <<() 81 protected: static const Sign Negative = Decimal::Negative; member in DecimalTest 127 EXPECT_EQ(encode(0, 0, Positive), encode(0, 0, Negative).abs()); in TEST_F() 130 EXPECT_EQ(encode(0, 10, Positive), encode(0, 10, Negative).abs()); in TEST_F() 133 EXPECT_EQ(encode(0, -10, Positive), encode(0, -10, Negative).abs()); in TEST_F() 136 EXPECT_EQ(encode(1, 0, Positive), encode(1, 0, Negative).abs()); in TEST_F() 139 EXPECT_EQ(encode(1, 10, Positive), encode(1, 10, Negative).abs()); in TEST_F() 142 EXPECT_EQ(encode(1, -10, Positive), encode(1, -10, Negative).abs()); in TEST_F() 148 EXPECT_EQ(encode(1, 1000, Positive), encode(1, 1000, Negative).abs()); in TEST_F() 154 EXPECT_EQ(encode(1, -1000, Positive), encode(1, -1000, Negative).abs()); in TEST_F() [all …]
|
D | Decimal.h | 55 Negative, enumerator 130 bool isNegative() const { return sign() == Negative; } in isNegative() 173 static inline Sign invertSign(Sign sign) { return sign == Negative ? Positive : Negative; } in invertSign()
|
D | Decimal.cpp | 280 …: m_data(i32 < 0 ? Negative : Positive, 0, i32 < 0 ? static_cast<uint64_t>(-static_cast<int64_t>(i… in Decimal() 369 if (lhsSign == Negative && rhsSign == Positive && !result) in operator +() 407 if (lhsSign == Negative && rhsSign == Negative && !result) in operator -() 420 const Sign resultSign = lhsSign == rhsSign ? Positive : Negative; in operator *() 458 const Sign resultSign = lhsSign == rhsSign ? Positive : Negative; in operator /() 689 return infinity(doubleValue < 0 ? Negative : Positive); in fromDouble() 784 exponentSign = Negative; in fromString() 803 return exponentSign == Negative ? zero(Positive) : infinity(sign); in fromString() 841 sign = Negative; in fromString() 881 …int resultExponent = exponent * (exponentSign == Negative ? -1 : 1) - numberOfDigitsAfterDot + num… in fromString()
|
/external/llvm/include/llvm/ADT/ |
D | APFloat.h | 212 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) { 214 Val.makeZero(Negative); 221 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) { 223 Val.makeInf(Negative); 232 static APFloat getNaN(const fltSemantics &Sem, bool Negative = false, 236 return getQNaN(Sem, Negative, &fill); 238 return getQNaN(Sem, Negative, 0); 243 static APFloat getQNaN(const fltSemantics &Sem, bool Negative = false, 245 return makeNaN(Sem, false, Negative, payload); 249 static APFloat getSNaN(const fltSemantics &Sem, bool Negative = false, [all …]
|
/external/oprofile/events/ppc64/cell-be/ |
D | unit_masks | 13 0x000 Negative polarity [optional ] 18 0x000 Negative polarity [optional ] 23 0x000 Negative polarity [optional ] 28 0x000 Negative polarity [optional ] 33 0x000 Negative polarity [optional ] 39 0x000 Negative polarity [optional ] 46 0x000 Negative polarity [optional ] 52 0x000 Negative polarity [optional ] 58 0x000 Negative polarity [optional ] 65 0x000 Negative polarity [optional ] [all …]
|
/external/chromium_org/testing/gtest/samples/ |
D | sample1_unittest.cc | 79 TEST(FactorialTest, Negative) { in TEST() argument 119 TEST(IsPrimeTest, Negative) { in TEST() argument
|
/external/gtest/samples/ |
D | sample1_unittest.cc | 79 TEST(FactorialTest, Negative) { in TEST() argument 119 TEST(IsPrimeTest, Negative) { in TEST() argument
|
/external/protobuf/gtest/samples/ |
D | sample1_unittest.cc | 79 TEST(FactorialTest, Negative) { in TEST() argument 119 TEST(IsPrimeTest, Negative) { in TEST() argument
|
/external/chromium/testing/gtest/samples/ |
D | sample1_unittest.cc | 79 TEST(FactorialTest, Negative) { in TEST() argument 119 TEST(IsPrimeTest, Negative) { in TEST() argument
|
/external/llvm/test/Transforms/InstCombine/ |
D | fcmp-special.ll | 19 ; Negative infinity 79 ; Negative NaN. 123 ; Negative zero.
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | Plane.java | 58 Negative enumConstant 193 return Side.Negative; in whichSide()
|
/external/llvm/lib/Support/ |
D | APFloat.cpp | 618 void APFloat::makeNaN(bool SNaN, bool Negative, const APInt *fill) in makeNaN() argument 621 sign = Negative; in makeNaN() 665 APFloat APFloat::makeNaN(const fltSemantics &Sem, bool SNaN, bool Negative, in makeNaN() argument 668 value.makeNaN(SNaN, Negative, fill); in makeNaN() 3342 void APFloat::makeLargest(bool Negative) { in makeLargest() argument 3348 sign = Negative; in makeLargest() 3365 void APFloat::makeSmallest(bool Negative) { in makeSmallest() argument 3371 sign = Negative; in makeSmallest() 3377 APFloat APFloat::getLargest(const fltSemantics &Sem, bool Negative) { in getLargest() argument 3383 Val.makeLargest(Negative); in getLargest() [all …]
|
/external/chromium_org/base/strings/ |
D | string_number_conversions.cc | 192 } else if (!Negative::Invoke(begin + 1, end, output)) { in Invoke() 267 class Negative : public Base<Negative> { class in base::__anon558a26e30111::IteratorRangeToNumber
|
/external/llvm/test/Transforms/ScalarRepl/ |
D | negative-memset.ll | 16 call void @llvm.memset.p0i8.i32(i8* %arraydecay, i8 -1, i32 -8, i32 1, i1 false) ; Negative 8!
|
/external/chromium/base/ |
D | string_number_conversions.cc | 187 if (!Negative::Invoke(begin + 1, end, output)) { in Invoke() 262 class Negative : public Base<Negative> { class in base::__anone50263e30111::IteratorRangeToNumber
|
/external/valgrind/unittest/ |
D | wildcard_test.supp | 109 ###################### Negative tests (should not match) ##################
|
/external/skia/src/sfnt/ |
D | SkOTTable_OS_2_VA.h | 116 Negative,
|
D | SkOTTable_OS_2_V0.h | 116 Negative,
|
/external/chromium_org/third_party/skia/src/sfnt/ |
D | SkOTTable_OS_2_VA.h | 116 Negative,
|
D | SkOTTable_OS_2_V0.h | 116 Negative,
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
D | XPathPredicate.h | 57 class Negative : public Expression {
|
D | XPathPredicate.cpp | 59 Value Negative::evaluate() const in evaluate()
|
/external/llvm/lib/Target/AArch64/InstPrinter/ |
D | AArch64InstPrinter.cpp | 181 uint32_t Negative = (Imm8 >> 7) & 0x1; in printFPImmOperand() local 194 Val = Negative ? -Val : Val; in printFPImmOperand()
|
/external/clang/test/SemaCXX/ |
D | compare.cpp | 344 Negative = -1, in test8() enumerator
|
/external/chromium_org/ui/gfx/ |
D | vector2d_unittest.cc | 68 TEST(Vector2dTest, Negative) { in TEST() argument
|