HomeSort by relevance Sort by last modified time
    Searched defs:negate (Results 1 - 25 of 406) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
negate.cpp 31 Pathname: ./gsm-amr/c/src/negate.c
36 Description: Created separate file for the negate function. Sync'ed up with
73 is -32768: negate(var1) = sub(0,var1).
88 Word16 negate (Word16 var1)
94 multiCounter[currCounter].negate++;
128 #include "negate.h"
164 Word16 negate(register Word16 var1) function
  /external/proguard/src/proguard/util/
ListMatcher.java 34 private final boolean[] negate; field in class:ListMatcher
43 public ListMatcher(StringMatcher[] matchers, boolean[] negate)
46 this.negate = negate;
60 return negate == null ||
61 !negate[index];
65 return negate != null &&
66 negate[negate.length - 1];
  /external/proguard/src/proguard/evaluation/value/
NegatedDoubleValue.java 44 public DoubleValue negate() method in class:NegatedDoubleValue
NegatedFloatValue.java 44 public FloatValue negate() method in class:NegatedFloatValue
NegatedIntegerValue.java 44 public IntegerValue negate() method in class:NegatedIntegerValue
NegatedLongValue.java 44 public LongValue negate() method in class:NegatedLongValue
DoubleValue.java 46 public abstract DoubleValue negate(); method in class:DoubleValue
128 return compare(other).negate();
231 return compare(other).negate();
334 return compare(other).negate();
FloatValue.java 46 public abstract FloatValue negate(); method in class:FloatValue
128 return compare(other).negate();
231 return compare(other).negate();
334 return compare(other).negate();
  /libcore/ojluni/src/main/java/java/util/function/
BiPredicate.java 83 default BiPredicate<T, U> negate() { method in interface:BiPredicate
DoublePredicate.java 80 default DoublePredicate negate() { method in interface:DoublePredicate
IntPredicate.java 80 default IntPredicate negate() { method in interface:IntPredicate
LongPredicate.java 80 default LongPredicate negate() { method in interface:LongPredicate
Predicate.java 79 default Predicate<T> negate() { method in interface:Predicate
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPoint.java 34 public final void negate() { method in class:ShadowPoint
ShadowPointF.java 36 public final void negate() { method in class:ShadowPointF
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
basic_op.h 226 Function Name : negate
228 Negate var1 with saturation, saturate in the case where input is -32768:
229 negate(var1) = sub(0,var1).
244 static inline Word16 negate(Word16 var1) function
  /toolchain/binutils/binutils-2.25/libiberty/
fnmatch.c 127 register int negate; local
136 negate = (*p == '!' || *p == '^');
137 if (negate)
180 if (!negate)
197 if (negate)
  /external/deqp/framework/common/
tcuInterval.cpp 113 static double negate (double x) function in namespace:tcu
120 return applyMonotone(negate, x);
  /frameworks/base/graphics/java/android/graphics/
Point.java 53 * Negate the point's coordinates
55 public final void negate() { method in class:Point
PointF.java 58 public final void negate() { method in class:PointF
  /bionic/libc/upstream-openbsd/lib/libc/gen/
fnmatch.c 153 int negate; local
160 negate = ((**pattern == '!') || (**pattern == '^'));
161 if (negate)
174 return (result ^ negate);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PointFTest.java 49 mPointF.negate();
PointTest.java 94 mPoint.negate();
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_inline_literals.c 28 unsigned negate = !!(float_bits & 0x80000000); local
55 if (negate)
137 src_reg->Negate = src_reg->Negate ^ negate_mask;
  /external/pdfium/third_party/bigint/
BigInteger.cc 366 void BigInteger::negate(const BigInteger &a) { function in class:BigInteger
367 DTRT_ALIASED(this == &a, negate(a));

Completed in 426 milliseconds

1 2 3 4 5 6 7 8 91011>>