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

1 2 3

  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/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
  /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/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);
SpecificDoubleValue.java 32 public DoubleValue negate() method in class:SpecificDoubleValue
SpecificFloatValue.java 32 public FloatValue negate() method in class:SpecificFloatValue
SpecificLongValue.java 32 public LongValue negate() method in class:SpecificLongValue
UnknownDoubleValue.java 32 public DoubleValue negate() method in class:UnknownDoubleValue
UnknownFloatValue.java 32 public FloatValue negate() method in class:UnknownFloatValue
UnknownLongValue.java 32 public LongValue negate() method in class:UnknownLongValue
  /frameworks/base/graphics/java/android/graphics/
PointF.java 57 public final void negate() { method in class:PointF
Point.java 48 * Negate the point's coordinates
50 public final void negate() { method in class:Point
  /bionic/libc/unistd/
fnmatch.c 156 int negate, ok; local
166 if ((negate = (*pattern == '!' || *pattern == '^')))
204 return (ok == negate ? RANGE_NOMATCH : RANGE_MATCH);
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/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/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
  /cts/tests/tests/graphics/src/android/graphics/cts/
PointFTest.java 74 method = "negate",
79 mPointF.negate();
PointTest.java 139 method = "negate",
144 mPoint.negate();
  /external/opencore/oscl/oscl/osclio/src/
oscl_file_find.cpp 413 #define NEGATE '^' /* std cset negation char */
414 int negate; local
455 if (*p != NEGATE)
456 negate = false;
459 negate = true;
500 if (negate == match)

Completed in 1308 milliseconds

1 2 3