/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 | 279 …: 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/ |
D | APFloat.h | 213 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/ |
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/deqp/doc/testspecs/GLES3/ |
D | functional.shaders.arrays.txt | 30 + 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,
|
D | functional.shaders.switch.txt | 31 + 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
|
D | functional.ubo.txt | 43 - 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
|
D | functional.shaders.linkage.txt | 26 - Negative and allowed cases 48 Negative tests try to compile the given shader and expect compilation
|
D | functional.frag_output.txt | 30 + Negative tests for fragment shader output declarations 33 + Negative API tests
|
D | functional.transform_feedback.txt | 38 + Negative testing for transform feedback APIs
|
D | functional.fbo.invalidate.txt | 34 + Negative testing
|
/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/protobuf/gtest/samples/ |
D | sample1_unittest.cc | 79 TEST(FactorialTest, Negative) { in TEST() argument 119 TEST(IsPrimeTest, Negative) { in TEST() argument
|
/external/deqp/doc/testspecs/GLES31/ |
D | functional.shaders.implicit_conversions.txt | 32 + 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
|
D | functional.shaders.arrays_of_arrays.txt | 44 + Negative cases 62 Negative cases attempt to compile a shader with the invalid operation and
|
D | functional.draw_indirect.txt | 33 + Negative tests 67 Negative cases test try to issue a bad indirect draw command expecting an
|
D | functional.uniform_location.txt | 32 + Negative tests 71 Negative cases are not generated and share no logic with the other cases,
|
/external/deqp/doc/testspecs/GLES2/ |
D | functional.negative_api.txt | 19 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/ |
D | fcmp-special.ll | 19 ; Negative infinity 79 ; Negative NaN. 123 ; Negative zero.
|
/external/nanopb-c/tests/alltypes/ |
D | alltypes.proto | 12 Negative = -2147483647; /* protoc doesn't accept -2147483648 here */ enumerator 26 required HugeEnum enum_max = 10 [default = Negative];
|
/external/chromium_org/media/cast/test/utility/ |
D | audio_utility_unittest.cc | 25 TEST(AudioTimestampTest, Negative) { in TEST() argument
|
/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() 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/ |
D | string_number_conversions.cc | 187 } 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/ |
D | negative-memset.ll | 16 call void @llvm.memset.p0i8.i32(i8* %arraydecay, i8 -1, i32 -8, i32 1, i1 false) ; Negative 8!
|