HomeSort by relevance Sort by last modified time
    Searched refs:negate (Results 1 - 25 of 705) 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/std/utilities/function.objects/arithmetic.operations/
negate.pass.cpp 12 // negate
22 typedef std::negate<int> F;
28 typedef std::negate<> F2;
34 constexpr int foo = std::negate<int> () (3);
37 constexpr double 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, "" );
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/arithmetic.operations/
negate.pass.cpp 12 // negate
22 typedef std::negate<int> F;
28 typedef std::negate<> F2;
34 constexpr int foo = std::negate<int> () (3);
37 constexpr double 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/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_saturate_propagation.cpp 86 if (inst->src[0].negate) {
88 scan_inst->src[0].negate = !scan_inst->src[0].negate;
89 inst->src[0].negate = false;
91 scan_inst->src[0].negate = !scan_inst->src[0].negate;
92 scan_inst->src[1].negate = !scan_inst->src[1].negate;
93 inst->src[0].negate = false;
101 scan_inst->src[1].negate = !scan_inst->src[1].negate
    [all...]
brw_fs_cse.cpp 118 operands_match(const fs_inst *a, const fs_inst *b, bool *negate)
128 bool xs0_negate = xs[0].negate;
130 : xs[1].negate;
131 bool ys0_negate = ys[0].negate;
133 : ys[1].negate;
137 xs[0].negate = false;
138 xs[1].negate = false;
139 ys[0].negate = false;
140 ys[1].negate = false;
147 xs[0].negate = xs0_negate
256 bool negate = false; local
322 bool negate; \/* dummy *\/ local
    [all...]
brw_nir_opt_peephole_ffma.c 72 uint8_t swizzle[4], bool *negate, bool *abs)
75 assert(src->src.is_ssa && !src->abs && !src->negate);
96 alu = get_mul_for_src(&alu->src[0], num_components, swizzle, negate, abs);
100 alu = get_mul_for_src(&alu->src[0], num_components, swizzle, negate, abs);
101 *negate = !*negate;
105 alu = get_mul_for_src(&alu->src[0], num_components, swizzle, negate, abs);
106 *negate = false;
193 bool negate, abs; local
198 negate = false
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_lower_to_source_mods.c 81 alu->src[i].negate = (alu->src[i].negate != parent->src[0].negate);
103 alu->src[0].negate = !alu->src[0].negate;
107 alu->src[0].negate = !alu->src[0].negate;
112 alu->src[0].negate = false;
117 alu->src[0].negate = false;
148 if (child_alu->src[0].negate || child_alu->src[0].abs)
    [all...]
  /art/test/552-checker-sharpening/src/
Main.java 81 public static int testDiamond(boolean negate, int x) {
84 if (negate) {
127 public static int testLoopWithDiamond(int[] array, boolean negate, int x) {
132 if (negate) {
  /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/
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
  /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...]
  /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/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/swiftshader/third_party/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:
  /external/tensorflow/tensorflow/compiler/xla/service/
buffer_liveness_test.cc 106 // param --> negate -> exp -> log
111 auto negate = builder.AddInstruction( local
114 HloInstruction::CreateUnary(vec_, HloOpcode::kExp, negate));
126 EXPECT_FALSE(InstructionsMayInterfere(*liveness, param, negate));
131 EXPECT_FALSE(InstructionsMayInterfere(*liveness, negate, exp));
132 EXPECT_FALSE(InstructionsMayInterfere(*liveness, negate, log));
133 EXPECT_FALSE(InstructionsMayInterfere(*liveness, exp, negate));
135 EXPECT_FALSE(InstructionsMayInterfere(*liveness, log, negate));
143 EXPECT_FALSE(InstructionMaybeLiveOut(*liveness, negate));
151 // param0 --> negate ---------------
158 auto negate = builder.AddInstruction( local
209 auto negate = builder.AddInstruction( local
241 auto negate = builder.AddInstruction( local
283 auto negate = builder.AddInstruction( local
365 auto negate = builder.AddInstruction( local
    [all...]
  /external/crcalc/tests/src/com/hp/creals/
CRTest.java 73 check(one.negate().signum() == -1, "signum(-1) failed");
83 check_eq(one.negate().abs(),one, "abs failed 2");
88 check_eq(one.negate().add(two), one, "negate failed");
89 check(one.negate().signum() == -1, "signum(-1) failed");
92 check_eq(two.divide(one.negate()), two.negate(), "divide(neg) failed");
117 check_eq(asin.execute(one.negate()),
118 half_pi.negate(), "asin(-1) failed");
129 check_eq(atan.execute(tan.execute(one.negate())), one.negate()
    [all...]

Completed in 833 milliseconds

1 2 3 4 5 6 7 8 91011>>