HomeSort by relevance Sort by last modified time
    Searched refs:Negative (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/platform/
DecimalTest.cpp 46 << ", " << (data.sign() == Decimal::Negative ? "Negative" : "Positive")
80 protected: static const Sign Negative = Decimal::Negative;
115 // FIXME: We should use expectedSign without "Decimal::", however, g++ causes undefined references for DecimalTest::Positive and Negative.
126 EXPECT_EQ(encode(0, 0, Positive), encode(0, 0, Negative).abs());
129 EXPECT_EQ(encode(0, 10, Positive), encode(0, 10, Negative).abs());
132 EXPECT_EQ(encode(0, -10, Positive), encode(0, -10, Negative).abs());
135 EXPECT_EQ(encode(1, 0, Positive), encode(1, 0, Negative).abs());
138 EXPECT_EQ(encode(1, 10, Positive), encode(1, 10, Negative).abs())
    [all...]
Decimal.h 54 Negative,
129 bool isNegative() const { return sign() == Negative; }
172 static inline Sign invertSign(Sign sign) { return sign == Negative ? Positive : Negative; }
Decimal.cpp 281 : m_data(i32 < 0 ? Negative : Positive, 0, i32 < 0 ? static_cast<uint64_t>(-static_cast<int64_t>(i32)) : static_cast<uint64_t>(i32))
370 if (lhsSign == Negative && rhsSign == Positive && !result)
408 if (lhsSign == Negative && rhsSign == Negative && !result)
421 const Sign resultSign = lhsSign == rhsSign ? Positive : Negative;
459 const Sign resultSign = lhsSign == rhsSign ? Positive : Negative;
659 // Round toward negative infinity.
687 return infinity(doubleValue < 0 ? Negative : Positive);
778 exponentSign = Negative;
797 return exponentSign == Negative ? zero(Positive) : infinity(sign)
    [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 209 /// Factory for Positive and Negative Zero.
211 /// \param Negative True iff the number should be negative.
212 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) {
214 Val.makeZero(Negative);
218 /// Factory for Positive and Negative Infinity.
220 /// \param Negative True iff the number should be negative.
221 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) {
223 Val.makeInf(Negative);
    [all...]
  /external/chromium/testing/gtest/samples/
sample1_unittest.cc 78 // Tests factorial of negative numbers.
79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
118 // Tests negative input.
119 TEST(IsPrimeTest, Negative) {
  /external/chromium_org/testing/gtest/samples/
sample1_unittest.cc 78 // Tests factorial of negative numbers.
79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
118 // Tests negative input.
119 TEST(IsPrimeTest, Negative) {
  /external/gtest/samples/
sample1_unittest.cc 78 // Tests factorial of negative numbers.
79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
118 // Tests negative input.
119 TEST(IsPrimeTest, Negative) {
  /external/protobuf/gtest/samples/
sample1_unittest.cc 78 // Tests factorial of negative numbers.
79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
118 // Tests negative input.
119 TEST(IsPrimeTest, Negative) {
  /ndk/sources/third_party/googletest/googletest/samples/
sample1_unittest.cc 78 // Tests factorial of negative numbers.
79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
118 // Tests negative input.
119 TEST(IsPrimeTest, Negative) {
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Plane.java 42 * plane. The distance is pseudo due to the fact that it can be negative if the
58 Negative
169 * a provided point. If the point is on the negative side of the plane the
170 * distance returned is negative, otherwise it is positive. If the point is
193 return Side.Negative;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathPredicate.h 57 class Negative : public Expression {
XPathPredicate.cpp 60 Value Negative::evaluate() const
  /external/chromium_org/v8/test/mjsunit/
array-indexing.js 52 // Negative cases.
58 // Negative index out of range.
60 // Negative index in rage.
120 // Negative cases.
131 // Negative index in range.
mod.js 39 // Negative case.
42 // Check for negative zero.
46 // Check for negative zero.
array-concat.js 96 // Negative indices don't get concated.
168 // Negative indices don't get concated.
  /external/v8/test/mjsunit/
array-indexing.js 52 // Negative cases.
58 // Negative index out of range.
60 // Negative index in rage.
120 // Negative cases.
131 // Negative index in range.
mod.js 39 // Negative case.
42 // Check for negative zero.
46 // Check for negative zero.
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_OS_2_V0.h 116 Negative,
SkOTTable_OS_2_VA.h 116 Negative,
  /external/skia/src/sfnt/
SkOTTable_OS_2_V0.h 116 Negative,
SkOTTable_OS_2_VA.h 116 Negative,
  /external/llvm/lib/Support/
APFloat.cpp 165 bool negative, overflow;
170 negative = *p == '-';
196 if (negative)
204 exponent = negative ? -32768: 32767;
618 void APFloat::makeNaN(bool SNaN, bool Negative, const APInt *fill)
621 sign = Negative;
665 APFloat APFloat::makeNaN(const fltSemantics &Sem, bool SNaN, bool Negative,
668 value.makeNaN(SNaN, Negative, fill);
    [all...]
  /external/chromium/base/
string_number_conversions.cc 47 // for testing whether an integer is negative.
53 // value is unsigned, and can never be negative.
187 if (!Negative::Invoke(begin + 1, end, output)) {
262 class Negative : public Base<Negative> {
  /external/chromium_org/base/strings/
string_number_conversions.cc 50 // for testing whether an integer is negative.
56 // value is unsigned, and can never be negative.
192 } else if (!Negative::Invoke(begin + 1, end, output)) {
267 class Negative : public Base<Negative> {
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.cpp 181 uint32_t Negative = (Imm8 >> 7) & 0x1;
194 Val = Negative ? -Val : Val;

Completed in 564 milliseconds

1 2 3