Home
last modified time | relevance | path

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

1234

/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.cpp279 …: m_data(i32 < 0 ? Negative : Positive, 0, i32 < 0 ? static_cast<uint64_t>(-static_cast<int64_t>(i… in Decimal()
368 if (lhsSign == Negative && rhsSign == Positive && !result) in operator +()
406 if (lhsSign == Negative && rhsSign == Negative && !result) in operator -()
419 const Sign resultSign = lhsSign == rhsSign ? Positive : Negative; in operator *()
457 const Sign resultSign = lhsSign == rhsSign ? Positive : Negative; in operator /()
688 return infinity(doubleValue < 0 ? Negative : Positive); in fromDouble()
770 exponentSign = Negative; in fromString()
789 return exponentSign == Negative ? zero(Positive) : infinity(sign); in fromString()
827 sign = Negative; in fromString()
867 …int resultExponent = exponent * (exponentSign == Negative ? -1 : 1) - numberOfDigitsAfterDot + num… in fromString()
/external/llvm/include/llvm/ADT/
DAPFloat.h213 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) {
215 Val.makeZero(Negative);
222 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) {
224 Val.makeInf(Negative);
233 static APFloat getNaN(const fltSemantics &Sem, bool Negative = false,
237 return getQNaN(Sem, Negative, &fill);
239 return getQNaN(Sem, Negative, nullptr);
244 static APFloat getQNaN(const fltSemantics &Sem, bool Negative = false,
246 return makeNaN(Sem, false, Negative, payload);
250 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/deqp/doc/testspecs/GLES3/
Dfunctional.shaders.arrays.txt30 + Negative tests for illegal multi-dimensional arrays
31 + Negative tests for illegal C-style constructors
40 Negative tests verify that multidimensional arrays cannot be defined,
Dfunctional.shaders.switch.txt31 + Negative syntax tests for switch statements
33 + Negative semantic tests for switch statements
46 Negative tests try to compile the given shader and expect compilation
Dfunctional.ubo.txt43 - Negative tests for syntax and semantic errors in declarations
44 - Negative tests for uniform block linking
51 + Negative tests for uniform buffer API
77 Negative tests for compiler and linker use a pair of hand-written shaders. Compile
Dfunctional.shaders.linkage.txt26 - Negative and allowed cases
48 Negative tests try to compile the given shader and expect compilation
Dfunctional.frag_output.txt30 + Negative tests for fragment shader output declarations
33 + Negative API tests
Dfunctional.transform_feedback.txt38 + Negative testing for transform feedback APIs
Dfunctional.fbo.invalidate.txt34 + Negative testing
/external/chromium_org/testing/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/deqp/doc/testspecs/GLES31/
Dfunctional.shaders.implicit_conversions.txt32 + Negative tests for invalid assignments
33 + Negative tests for implict array / struct conversions
47 Negative cases attempt to compile a shader with the invalid operation and
Dfunctional.shaders.arrays_of_arrays.txt44 + Negative cases
62 Negative cases attempt to compile a shader with the invalid operation and
Dfunctional.draw_indirect.txt33 + Negative tests
67 Negative cases test try to issue a bad indirect draw command expecting an
Dfunctional.uniform_location.txt32 + Negative tests
71 Negative cases are not generated and share no logic with the other cases,
/external/deqp/doc/testspecs/GLES2/
Dfunctional.negative_api.txt19 Negative API tests
25 + Negative tests for all API functions capable of producing errors
39 Negative API test set goes through all GL commands that are capable of
/external/llvm/test/Transforms/InstCombine/
Dfcmp-special.ll19 ; Negative infinity
79 ; Negative NaN.
123 ; Negative zero.
/external/nanopb-c/tests/alltypes/
Dalltypes.proto12 Negative = -2147483647; /* protoc doesn't accept -2147483648 here */ enumerator
26 required HugeEnum enum_max = 10 [default = Negative];
/external/chromium_org/media/cast/test/utility/
Daudio_utility_unittest.cc25 TEST(AudioTimestampTest, Negative) { in TEST() argument
/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()
3362 void APFloat::makeLargest(bool Negative) { in makeLargest() argument
3368 sign = Negative; in makeLargest()
3385 void APFloat::makeSmallest(bool Negative) { in makeSmallest() argument
3391 sign = Negative; in makeSmallest()
3397 APFloat APFloat::getLargest(const fltSemantics &Sem, bool Negative) { in getLargest() argument
3403 Val.makeLargest(Negative); in getLargest()
[all …]
/external/chromium_org/base/strings/
Dstring_number_conversions.cc187 } else if (!Negative::Invoke(begin + 1, end, output)) { in Invoke()
262 class Negative : public Base<Negative> { class in base::__anon35c183d00111::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!

1234