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

1 2 3 4 5 6 7 8 9

  /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/av/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/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
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/arithmetic.operations/
negate.pass.cpp 12 // negate
20 typedef std::negate<int> F;
  /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
  /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/tests/device/test-gnustl-full/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/tests/device/test-stlport/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>());
  /external/apache-harmony/math/src/test/java/tests/api/java/math/
BigIntegerTest.java 153 .setBit(16).subtract(two).negate()));
249 assertTrue("bi3=copy of bi3", bi3.equals(bi3.negate().negate()));
261 two.negate().compareTo(one) < 0);
297 .add(aZillion.negate()).equals(aZillion));
327 * @tests java.math.BigInteger#negate()
331 .negate().equals(zero));
333 !aZillion.negate().equals(aZillion));
335 aZillion.negate().negate().equals(aZillion))
347 BigInteger negate = midbit.negate(); local
    [all...]
  /external/llvm/utils/lit/lit/
ShCommands.py 39 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 cmp((self.commands, self.negate, self.pipe_err),
53 (other.commands, other.negate, self.pipe_err))
58 if self.negate:
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ScriptCTest.java 45 h = new ScriptCHelper(mRS, mRes, R.raw.negate);
  /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 * 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...]
  /external/guava/guava-tests/test/com/google/common/base/
CharMatcherTest.java 61 assertSame(CharMatcher.ANY, CharMatcher.NONE.negate());
62 assertSame(CharMatcher.NONE, CharMatcher.ANY.negate());
128 reallyTestEmpty(matcher.negate());
173 doTestNoMatches(inRange('A', 'Z').and(inRange('F', 'K').negate()), "F1a"); method
182 reallyTestAllMatches(matcher.negate(), s);
184 reallyTestAllMatches(matcher.negate().precomputed(), s);
185 reallyTestAllMatches(matcher.precomputed().negate(), s);
209 reallyTestNoMatches(matcher.negate(), s);
211 reallyTestNoMatches(matcher.negate().precomputed(), s);
212 reallyTestNoMatches(matcher.precomputed().negate(), s)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
FpNafMultiplier.java 21 ECPoint neg = p.negate();
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d1035pf.cpp 176 sign = negate (sign);
257 sign = negate(sign);

Completed in 912 milliseconds

1 2 3 4 5 6 7 8 9