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

1 2 3 4 5 6 7 8 9

  /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();
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);
  /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)
  /external/robolectric/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
  /frameworks/base/graphics/java/android/graphics/
Point.java 51 * Negate the point's coordinates
53 public final void negate() { method in class:Point
PointF.java 59 public final void negate() { method in class:PointF
  /cts/tests/tests/graphics/src/android/graphics/cts/
PointFTest.java 52 mPointF.negate();
PointTest.java 87 mPoint.negate();
  /external/jmonkeyengine/engine/src/test/jme3test/renderer/
TestParallelProjection.java 58 dl.setDirection(Vector3f.UNIT_XYZ.negate());
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestPhysicsCharacter.java 139 walkDirection.addLocal(camLeft.negate());
145 viewDirection.addLocal(camLeft.mult(0.02f).negate()); method
151 walkDirection.addLocal(camDir.negate());
  /bionic/libc/unistd/
fnmatch.c 154 int negate; local
161 negate = ((**pattern == '!') || (**pattern == '^'));
162 if (negate)
175 return (result ^ negate);
  /external/chromium_org/third_party/mesa/src/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/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/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestAnimationFactory.java 30 dl.setDirection(Vector3f.UNIT_XYZ.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;

Completed in 1765 milliseconds

1 2 3 4 5 6 7 8 9