Home
last modified time | relevance | path

Searched refs:Negative (Results 1 – 25 of 63) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/platform/
DDecimalTest.cpp47 << ", " << (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 …]
DDecimal.h55 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()
DDecimal.cpp280 …: 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/
DAPFloat.h212 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/
Dunit_masks13 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/
Dsample1_unittest.cc79 TEST(FactorialTest, Negative) { in TEST() argument
119 TEST(IsPrimeTest, Negative) { in TEST() argument
/external/gtest/samples/
Dsample1_unittest.cc79 TEST(FactorialTest, Negative) { in TEST() argument
119 TEST(IsPrimeTest, Negative) { in TEST() argument
/external/protobuf/gtest/samples/
Dsample1_unittest.cc79 TEST(FactorialTest, Negative) { in TEST() argument
119 TEST(IsPrimeTest, Negative) { in TEST() argument
/external/chromium/testing/gtest/samples/
Dsample1_unittest.cc79 TEST(FactorialTest, Negative) { in TEST() argument
119 TEST(IsPrimeTest, Negative) { in TEST() argument
/external/llvm/test/Transforms/InstCombine/
Dfcmp-special.ll19 ; Negative infinity
79 ; Negative NaN.
123 ; Negative zero.
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DPlane.java58 Negative enumConstant
193 return Side.Negative; in whichSide()
/external/llvm/lib/Support/
DAPFloat.cpp618 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/
Dstring_number_conversions.cc192 } 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/
Dnegative-memset.ll16 call void @llvm.memset.p0i8.i32(i8* %arraydecay, i8 -1, i32 -8, i32 1, i1 false) ; Negative 8!
/external/chromium/base/
Dstring_number_conversions.cc187 if (!Negative::Invoke(begin + 1, end, output)) { in Invoke()
262 class Negative : public Base<Negative> { class in base::__anone50263e30111::IteratorRangeToNumber
/external/valgrind/unittest/
Dwildcard_test.supp109 ###################### Negative tests (should not match) ##################
/external/skia/src/sfnt/
DSkOTTable_OS_2_VA.h116 Negative,
DSkOTTable_OS_2_V0.h116 Negative,
/external/chromium_org/third_party/skia/src/sfnt/
DSkOTTable_OS_2_VA.h116 Negative,
DSkOTTable_OS_2_V0.h116 Negative,
/external/chromium_org/third_party/WebKit/Source/core/xml/
DXPathPredicate.h57 class Negative : public Expression {
DXPathPredicate.cpp59 Value Negative::evaluate() const in evaluate()
/external/llvm/lib/Target/AArch64/InstPrinter/
DAArch64InstPrinter.cpp181 uint32_t Negative = (Imm8 >> 7) & 0x1; in printFPImmOperand() local
194 Val = Negative ? -Val : Val; in printFPImmOperand()
/external/clang/test/SemaCXX/
Dcompare.cpp344 Negative = -1, in test8() enumerator
/external/chromium_org/ui/gfx/
Dvector2d_unittest.cc68 TEST(Vector2dTest, Negative) { in TEST() argument

123