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

1 2 3 4

  /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];
  /frameworks/base/media/libstagefright/codecs/amrnb/common/include/
negate.h 30 Pathname: ./gsm-amr/c/include/negate.h
35 Description: Created separate header file for negate function.
49 needed by the negate function.
102 Word16 negate(register Word16 var1);
  /frameworks/base/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/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();
UnknownDoubleValue.java 32 public DoubleValue negate() method in class:UnknownDoubleValue
UnknownFloatValue.java 32 public FloatValue negate() method in class:UnknownFloatValue
ParticularDoubleValue.java 52 public DoubleValue negate() method in class:ParticularDoubleValue
87 return value == 0.0 ? other.negate() : other.subtractFrom(this);
ParticularFloatValue.java 52 public FloatValue negate() method in class:ParticularFloatValue
87 return value == 0.0 ? other.negate() : other.subtractFrom(this);
LongValue.java 46 public abstract LongValue negate(); method in class:LongValue
217 return compare(other).negate();
373 return compare(other).negate();
529 return compare(other).negate();
  /external/stlport/test/unit/
unary_test.cpp 79 transform((int*)input, (int*)input + 3, output, unary_compose<square_root, negate<int> >(square_root(), negate<int>()));
92 transform((int*)input, (int*)input + 3, output, compose1(square_root(), negate<int>()));
neq_test.cpp 36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>());
  /ndk/sources/android/stlport/test/unit/
unary_test.cpp 79 transform((int*)input, (int*)input + 3, output, unary_compose<square_root, negate<int> >(square_root(), negate<int>()));
92 transform((int*)input, (int*)input + 3, output, compose1(square_root(), negate<int>()));
neq_test.cpp 36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>());
  /libcore/luni/src/test/java/tests/api/java/math/
BigIntegerTest.java 175 .setBit(16).subtract(two).negate()));
413 assertTrue("bi3=copy of bi3", bi3.equals(bi3.negate().negate()));
425 two.negate().compareTo(one) < 0);
461 .add(aZillion.negate()).equals(aZillion));
498 * @tests java.math.BigInteger#negate()
502 .negate().equals(zero));
504 !aZillion.negate().equals(aZillion));
506 aZillion.negate().negate().equals(aZillion))
518 BigInteger negate = midbit.negate(); local
    [all...]
  /bionic/libc/unistd/
fnmatch.c 156 int negate, ok; local
166 if ((negate = (*pattern == '!' || *pattern == '^')))
204 return (ok == negate ? RANGE_NOMATCH : RANGE_MATCH);
  /frameworks/base/graphics/java/android/graphics/
Point.java 48 * Negate the point's coordinates
50 public final void negate() { method in class:Point
PointF.java 57 public final void negate() { method in class:PointF
  /frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
d1035pf.cpp 176 sign = negate (sign);
257 sign = negate(sign);
d_plsf_5.cpp 234 lsf1_r[4] = negate (*p_dico++);
235 lsf1_r[5] = negate (*p_dico++);
236 lsf2_r[4] = negate (*p_dico++);
237 lsf2_r[5] = negate (*p_dico++);
441 *(lsf1_r + 4) = negate(*p_dico++);
442 *(lsf1_r + 5) = negate(*p_dico++);
443 *(lsf2_r + 4) = negate(*p_dico++);
444 *(lsf2_r + 5) = negate(*p_dico++);
  /external/skia/src/core/
SkStrokerPriv.cpp 118 after.negate();
142 before.negate();
143 after.negate();
175 // negate the dot since we're using normals instead of tangents
196 before.negate();
197 after.negate();
233 mid.negate();

Completed in 1941 milliseconds

1 2 3 4