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

1 2 3 4 5 6 7 8 91011>>

  /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
  /libcore/ojluni/src/main/java/java/util/function/
BiPredicate.java 83 default BiPredicate<T, U> negate() { method in interface:BiPredicate
DoublePredicate.java 80 default DoublePredicate negate() { method in interface:DoublePredicate
IntPredicate.java 80 default IntPredicate negate() { method in interface:IntPredicate
LongPredicate.java 80 default LongPredicate negate() { method in interface:LongPredicate
Predicate.java 79 default Predicate<T> negate() { method in interface:Predicate
  /external/python/cpython3/Tools/clinic/
cpp.py 4 def negate(condition): function
178 self.stack.append(('else', negate(previous_condition)))
  /external/robolectric/v1/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
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_verifier_test.cc 43 HloInstruction* negate = builder.AddInstruction( local
50 negate->set_parent(nullptr);
81 HloInstruction* negate = builder.AddInstruction( local
92 TF_ASSERT_OK(negate->ReplaceOperandWith(0, emb_param));
  /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
  /toolchain/binutils/binutils-2.27/libiberty/
fnmatch.c 127 register int negate; local
136 negate = (*p == '!' || *p == '^');
137 if (negate)
180 if (!negate)
197 if (negate)
  /external/deqp/framework/common/
tcuInterval.cpp 113 static double negate (double x) function in namespace:tcu
120 return applyMonotone(negate, x);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_ir_fs.h 57 negate(fs_reg reg) function
60 reg.negate = !reg.negate;
  /frameworks/base/core/java/com/android/internal/util/function/pooled/
OmniFunction.java 63 abstract public OmniFunction<A, B, C, D, E, F, R> negate(); method in class:OmniFunction
  /frameworks/base/graphics/java/android/graphics/
PointF.java 58 public final void negate() { method in class:PointF
  /bionic/libc/upstream-openbsd/lib/libc/gen/
fnmatch.c 153 int negate; local
160 negate = ((**pattern == '!') || (**pattern == '^'));
161 if (negate)
174 return (result ^ negate);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PointFTest.java 49 mPointF.negate();
PointTest.java 94 mPoint.negate();
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_inline_literals.c 53 unsigned negate = !!(float_bits & 0x80000000); local
80 if (negate)
162 src_reg->Negate = src_reg->Negate ^ negate_mask;

Completed in 491 milliseconds

1 2 3 4 5 6 7 8 91011>>