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

1 2 3 4 5 6 7 8 91011>>

  /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
  /external/libcxx/test/utilities/function.objects/arithmetic.operations/
negate.pass.cpp 12 // negate
20 typedef std::negate<int> F;
25 typedef std::negate<> F2;
31 constexpr int foo = std::negate<int> () (3);
34 constexpr int bar = std::negate<> () (3.0);
transparent.pass.cpp 53 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, "" );
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/arithmetic.operations/
negate.pass.cpp 12 // negate
20 typedef std::negate<int> F;
25 typedef std::negate<> F2;
31 constexpr int foo = std::negate<int> () (3);
34 constexpr int bar = std::negate<> () (3.0);
transparent.pass.cpp 53 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/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
leb128_test.c 37 int negate; member in struct:Test_Entry
86 if (test->negate)
93 test->sign?"":"un", test->negate?"-":"", test->input,
104 test->sign?"":"un", test->negate?"-":"", test->input,
117 test->sign?"":"un", test->negate?"-":"", test->input);
135 if (test->negate)
143 test->sign?"":"un", test->negate?"-":"", test->input,
153 test->sign?"":"un", test->negate?"-":"", test->input);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
AbstractECMultiplier.java 16 return sign > 0 ? positive : positive.negate();
ECAlgorithms.java 109 points[3].negate(), points[2].negate(), points[1].negate(),
110 points[0].negate(), infinity, points[0],
  /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
  /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/issue42891-boost-1_52/jni/boost/boost/mpl/
negate.hpp 13 // $Id: negate.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
37 struct negate struct in namespace:boost::mpl
49 BOOST_MPL_AUX_LAMBDA_SUPPORT(1, negate, (N))
52 BOOST_MPL_AUX_NA_SPEC(1, negate)
  /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>());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerTest.java 128 .setBit(16).subtract(two).negate()));
224 assertTrue("bi3=copy of bi3", bi3.equals(bi3.negate().negate()));
236 two.negate().compareTo(one) < 0);
272 .add(aZillion.negate()).equals(aZillion));
302 * @tests java.math.BigInteger#negate()
306 .negate().equals(zero));
308 !aZillion.negate().equals(aZillion));
310 aZillion.negate().negate().equals(aZillion))
322 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 ((self.commands, self.negate, self.pipe_err) ==
53 (other.commands, other.negate, self.pipe_err))
58 if self.negate:
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_vec4_copy_propagation.cpp 86 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 &&
  /external/libcxx/test/numerics/numarray/template.valarray/valarray.unary/
Android.mk 27 test_name := numerics/numarray/template.valarray/valarray.unary/negate
28 test_src := negate.pass.cpp

Completed in 531 milliseconds

1 2 3 4 5 6 7 8 91011>>