Searched refs:negate (Results 1 - 25 of 233) sorted by relevance

12345678910

/external/proguard/src/proguard/util/
H A DListMatcher.java34 private final boolean[] negate; field in class:ListMatcher
43 public ListMatcher(StringMatcher[] matchers, boolean[] negate) argument
46 this.negate = negate;
60 return negate == null ||
61 !negate[index];
65 return negate != null &&
66 negate[negate.length - 1];
/external/libcxx/test/std/utilities/function.objects/arithmetic.operations/
H A Dnegate.pass.cpp12 // negate
20 typedef std::negate<int> F;
26 typedef std::negate<> F2;
32 constexpr int foo = std::negate<int> () (3);
35 constexpr int bar = std::negate<> () (3.0);
H A Dtransparent.pass.cpp53 static_assert ( !is_transparent<std::negate<int>>::value, "" );
54 static_assert ( !is_transparent<std::negate<std::string>>::value, "" );
55 static_assert ( is_transparent<std::negate<void>>::value, "" );
56 static_assert ( is_transparent<std::negate<>>::value, "" );
/external/llvm/utils/lit/lit/
H A DShCommands.py39 def __init__(self, commands, negate=False, pipe_err=False):
41 self.negate = negate
45 return 'Pipeline(%r, %r, %r)' % (self.commands, self.negate,
52 return ((self.commands, self.negate, self.pipe_err) ==
53 (other.commands, other.negate, self.pipe_err))
58 if self.negate:
/external/proguard/src/proguard/evaluation/value/
H A DNegatedDoubleValue.java44 public DoubleValue negate() method in class:NegatedDoubleValue
H A DNegatedFloatValue.java44 public FloatValue negate() method in class:NegatedFloatValue
H A DNegatedIntegerValue.java44 public IntegerValue negate() method in class:NegatedIntegerValue
H A DNegatedLongValue.java44 public LongValue negate() method in class:NegatedLongValue
H A DDoubleValue.java46 public abstract DoubleValue negate(); method in class:DoubleValue
128 return compare(other).negate();
231 return compare(other).negate();
334 return compare(other).negate();
H A DFloatValue.java46 public abstract FloatValue negate(); method in class:FloatValue
128 return compare(other).negate();
231 return compare(other).negate();
334 return compare(other).negate();
H A DUnknownDoubleValue.java32 public DoubleValue negate() method in class:UnknownDoubleValue
H A DUnknownFloatValue.java32 public FloatValue negate() method in class:UnknownFloatValue
/external/crcalc/tests/src/com/hp/creals/
H A DCRTest.java73 check(one.negate().signum() == -1, "signum(-1) failed");
83 check_eq(one.negate().abs(),one, "abs failed 2");
88 check_eq(one.negate().add(two), one, "negate failed");
89 check(one.negate().signum() == -1, "signum(-1) failed");
92 check_eq(two.divide(one.negate()), two.negate(), "divide(neg) failed");
117 check_eq(asin.execute(one.negate()),
118 half_pi.negate(), "asin(-1) failed");
129 check_eq(atan.execute(tan.execute(one.negate())), on
[all...]
H A DSlowCRTest.java61 UnaryCRFunction.sinFunction.inverseMonotone(HALF_PI.negate(),
167 checkEq(ONE.negate().acos(), CR.PI, "acos(-1)");
170 checkEq(ONE.negate().asin(), CR.PI.divide(TWO).negate(), "asin(-1)");
174 checkTrig(BIG.negate());
176 checkTrig(SMALL.negate());
180 checkTrig(CR.PI.negate());
181 checkTrig(CR.PI.negate().subtract(SMALL));
182 checkTrig(CR.PI.negate().add(SMALL));
204 checkExpLn(BIG.negate());
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DAbstractECMultiplier.java16 ECPoint result = sign > 0 ? positive : positive.negate();
H A DSimpleBigDecimal.java93 public SimpleBigDecimal negate() method in class:SimpleBigDecimal
95 return new SimpleBigDecimal(bigInt.negate(), scale);
100 return add(b.negate());
/external/guava/guava-tests/test/com/google/common/base/
H A DCharMatcherTest.java70 assertSame(CharMatcher.ANY, CharMatcher.NONE.negate());
71 assertSame(CharMatcher.NONE, CharMatcher.ANY.negate());
129 doTestSetBits(inRange('A', 'Z').and(inRange('F', 'K').negate()));
172 reallyTestEmpty(matcher.negate());
217 doTestNoMatches(inRange('A', 'Z').and(inRange('F', 'K').negate()), "F1a");
226 reallyTestAllMatches(matcher.negate(), s);
228 reallyTestAllMatches(matcher.negate().precomputed(), s);
229 reallyTestAllMatches(matcher.precomputed().negate(), s);
253 reallyTestNoMatches(matcher.negate(), s);
255 reallyTestNoMatches(matcher.negate()
[all...]
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
H A DCharMatcherTest.java59 assertSame(CharMatcher.ANY, CharMatcher.NONE.negate());
60 assertSame(CharMatcher.NONE, CharMatcher.ANY.negate());
109 reallyTestEmpty(matcher.negate());
148 doTestNoMatches(inRange('A', 'Z').and(inRange('F', 'K').negate()), "F1a");
157 reallyTestAllMatches(matcher.negate(), s);
159 reallyTestAllMatches(matcher.negate().precomputed(), s);
160 reallyTestAllMatches(matcher.precomputed().negate(), s);
184 reallyTestNoMatches(matcher.negate(), s);
186 reallyTestNoMatches(matcher.negate().precomputed(), s);
187 reallyTestNoMatches(matcher.precomputed().negate(),
[all...]
/external/guava/guava-tests/test/com/google/common/math/
H A DMathBenchmarking.java55 return RANDOM_SOURCE.nextBoolean() ? result : result.negate();
60 return RANDOM_SOURCE.nextBoolean() ? result : result.negate();
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_copy_propagation.cpp86 if (inst->src[arg].negate) {
178 value.negate != values[i]->negate ||
201 value.negate = false;
204 if (inst->src[arg].negate)
205 value.negate = !value.negate;
219 value.negate &&
H A Dbrw_fs_copy_propagation.cpp46 entry->src.negate)
49 bool has_source_modifiers = entry->src.abs || entry->src.negate;
61 inst->src[arg].negate ^= entry->src.negate;
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_vertprog.h126 #define MAKE_VSF_SOURCE(in_reg_index, comp_x, comp_y, comp_z, comp_w, class, negate) \
132 | ((negate)<<25) | ((class)))
134 #define EASY_VSF_SOURCE(in_reg_index, comp_x, comp_y, comp_z, comp_w, class, negate) \
140 VSF_IN_CLASS_##class, VSF_FLAG_##negate)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/endo/
H A DGLVTypeBEndomorphism.java31 BigInteger b = (b1.multiply(v1[1])).add(b2.multiply(v2[1])).negate();
56 return negative ? b.negate() : b;
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_fragprog.c193 src = negate(src,
419 src0, negate(src0, 1, 1, 1, 1), 0);
465 negate(swizzle(tmp, ZERO, X, ZERO, ZERO), 0, 1, 0, 0),
491 negate(swizzle(tmp, ZERO, X, ZERO, ZERO), 0, 1, 0, 0),
500 negate(swizzle(tmp, ZERO, X, ZERO, ZERO), 0, 1, 0, 0));
601 negate(swizzle(tmp, ONE, ONE, ONE, ONE),
648 negate(swizzle(tmp, ONE, ONE, X, ONE), 0, 0, 1, 0),
673 flags, 0, negate(src2, 1, 1, 1, 1), src0, tmp);
693 negate(src0, 1, 1, 1, 1),
694 negate(src
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
H A DProperBigFractionFormat.java104 num = num.negate();
217 whole = whole.negate();
221 num = num.negate();

Completed in 574 milliseconds

12345678910