Searched refs:negate (Results 1 - 25 of 337) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/util/
H A DListMatcher.java34 private final boolean[] negate; field in class:ListMatcher
43 public ListMatcher(StringMatcher[] matchers, boolean[] negate) argument
46 this.negate = negate;
60 return negate == null ||
61 !negate[index];
65 return negate != null &&
66 negate[negate.length - 1];
/external/libcxx/test/std/utilities/function.objects/arithmetic.operations/
H A Dnegate.pass.cpp12 // 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);
H A Dtransparent.pass.cpp53 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/
H A Dbrw_fs_saturate_propagation.cpp86 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
[all...]
H A Dbrw_fs_cse.cpp118 operands_match(const fs_inst *a, const fs_inst *b, bool *negate) argument
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
174 instructions_match(fs_inst *a, fs_inst *b, bool *negate) argument
200 create_copy_instr(const fs_builder &bld, fs_inst *inst, fs_reg src, bool negate) argument
256 bool negate = false; local
322 bool negate; /* dummy */ local
[all...]
H A Dbrw_nir_opt_peephole_ffma.c72 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
71 get_mul_for_src(nir_alu_src *src, int num_components, uint8_t swizzle[4], bool *negate, bool *abs) argument
[all...]
H A Dbrw_fs_cmod_propagation.cpp79 !inst->src[0].negate))
126 !inst->src[0].negate &&
147 inst->src[0].negate ? brw_swap_cmod(inst->conditional_mod)
H A Dbrw_vec4_cmod_propagation.cpp59 !inst->src[0].negate))
113 !inst->src[0].negate &&
134 inst->src[0].negate ? brw_swap_cmod(inst->conditional_mod)
/external/llvm/utils/lit/lit/
H A DShCommands.py39 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/
H A DShCommands.py39 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/mesa3d/src/compiler/nir/
H A Dnir_lower_to_source_mods.c81 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_al
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DNegatedDoubleValue.java44 public DoubleValue negate() method in class:NegatedDoubleValue
H A DNegatedFloatValue.java44 public FloatValue negate() method in class:NegatedFloatValue
H A DNegatedIntegerValue.java44 public IntegerValue negate() method in class:NegatedIntegerValue
H A DNegatedLongValue.java44 public LongValue negate() method in class:NegatedLongValue
H A DDoubleValue.java46 public abstract DoubleValue negate(); method in class:DoubleValue
128 return compare(other).negate();
231 return compare(other).negate();
334 return compare(other).negate();
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dbuffer_liveness_test.cc106 // 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/
H A DCRTest.java73 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())), on
[all...]
H A DSlowCRTest.java61 UnaryCRFunction.sinFunction.inverseMonotone(HALF_PI.negate(),
167 checkEq(ONE.negate().acos(), CR.PI, "acos(-1)");
170 checkEq(ONE.negate().asin(), CR.PI.divide(TWO).negate(), "asin(-1)");
174 checkTrig(BIG.negate());
176 checkTrig(SMALL.negate());
180 checkTrig(CR.PI.negate());
181 checkTrig(CR.PI.negate().subtract(SMALL));
182 checkTrig(CR.PI.negate().add(SMALL));
204 checkExpLn(BIG.negate());
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DAbstractECMultiplier.java16 ECPoint result = sign > 0 ? positive : positive.negate();
/external/guava/guava-tests/test/com/google/common/base/
H A DCharMatcherTest.java70 assertSame(CharMatcher.ANY, CharMatcher.NONE.negate());
71 assertSame(CharMatcher.NONE, CharMatcher.ANY.negate());
129 doTestSetBits(inRange('A', 'Z').and(inRange('F', 'K').negate()));
172 reallyTestEmpty(matcher.negate());
217 doTestNoMatches(inRange('A', 'Z').and(inRange('F', 'K').negate()), "F1a");
226 reallyTestAllMatches(matcher.negate(), s);
228 reallyTestAllMatches(matcher.negate().precomputed(), s);
229 reallyTestAllMatches(matcher.precomputed().negate(), s);
253 reallyTestNoMatches(matcher.negate(), s);
255 reallyTestNoMatches(matcher.negate()
[all...]
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
H A DCharMatcherTest.java59 assertSame(CharMatcher.ANY, CharMatcher.NONE.negate());
60 assertSame(CharMatcher.NONE, CharMatcher.ANY.negate());
109 reallyTestEmpty(matcher.negate());
148 doTestNoMatches(inRange('A', 'Z').and(inRange('F', 'K').negate()), "F1a");
157 reallyTestAllMatches(matcher.negate(), s);
159 reallyTestAllMatches(matcher.negate().precomputed(), s);
160 reallyTestAllMatches(matcher.precomputed().negate(), s);
184 reallyTestNoMatches(matcher.negate(), s);
186 reallyTestNoMatches(matcher.negate().precomputed(), s);
187 reallyTestNoMatches(matcher.precomputed().negate(),
[all...]
/external/guava/guava-tests/test/com/google/common/math/
H A DMathBenchmarking.java82 return RANDOM_SOURCE.nextBoolean() ? result : result.negate();
94 BigInteger neg = randomNonNegativeBigInteger(numBits).negate();
/external/ltp/testcases/commands/keyctl/
H A Dkeyctl01.sh68 check_keyctl negate request2 show unlink
98 keyctl request2 user debug:fred negate @t >temp 2>&1
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_vertprog.h126 #define MAKE_VSF_SOURCE(in_reg_index, comp_x, comp_y, comp_z, comp_w, class, negate) \
132 | ((negate)<<25) | ((class)))
134 #define EASY_VSF_SOURCE(in_reg_index, comp_x, comp_y, comp_z, comp_w, class, negate) \
140 VSF_IN_CLASS_##class, VSF_FLAG_##negate)

Completed in 654 milliseconds

1234567891011>>