/external/proguard/src/proguard/util/ |
H A D | ListMatcher.java | 34 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 D | 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);
|
H A D | 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/ |
H A D | 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 [all...] |
H A D | brw_fs_cse.cpp | 118 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 D | 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 71 get_mul_for_src(nir_alu_src *src, int num_components, uint8_t swizzle[4], bool *negate, bool *abs) argument [all...] |
H A D | brw_fs_cmod_propagation.cpp | 79 !inst->src[0].negate)) 126 !inst->src[0].negate && 147 inst->src[0].negate ? brw_swap_cmod(inst->conditional_mod)
|
H A D | brw_vec4_cmod_propagation.cpp | 59 !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 D | 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/ |
H A D | 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/mesa3d/src/compiler/nir/ |
H A D | 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_al [all...] |
/external/proguard/src/proguard/evaluation/value/ |
H A D | NegatedDoubleValue.java | 44 public DoubleValue negate() method in class:NegatedDoubleValue
|
H A D | NegatedFloatValue.java | 44 public FloatValue negate() method in class:NegatedFloatValue
|
H A D | NegatedIntegerValue.java | 44 public IntegerValue negate() method in class:NegatedIntegerValue
|
H A D | NegatedLongValue.java | 44 public LongValue negate() method in class:NegatedLongValue
|
H A D | 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();
|
H A D | 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();
|
/external/crcalc/tests/src/com/hp/creals/ |
H A D | 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())), on [all...] |
H A D | SlowCRTest.java | 61 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 D | AbstractECMultiplier.java | 16 ECPoint result = sign > 0 ? positive : positive.negate();
|
/external/guava/guava-tests/test/com/google/common/base/ |
H A D | CharMatcherTest.java | 70 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 D | CharMatcherTest.java | 59 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 D | MathBenchmarking.java | 82 return RANDOM_SOURCE.nextBoolean() ? result : result.negate(); 94 BigInteger neg = randomNonNegativeBigInteger(numBits).negate();
|
/external/ltp/testcases/commands/keyctl/ |
H A D | keyctl01.sh | 71 keyctl request2 user debug:fred negate @t >temp 2>&1
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
H A D | r200_vertprog.h | 126 #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)
|