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

1 2 3 4 5 6 7 8 91011>>

  /external/boringssl/src/crypto/fipsmodule/ec/
p256-x86_64_tests.txt 5 Test = Negate
9 Test = Negate
13 Test = Negate
17 Test = Negate
21 Test = Negate
25 Test = Negate
29 Test = Negate
33 Test = Negate
37 Test = Negate
41 Test = Negate
    [all...]
  /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/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/iptables/include/linux/netfilter/
xt_iprange.h 9 IPRANGE_SRC_INV = 1 << 4, /* negate the condition */
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_iprange.h 10 IPRANGE_SRC_INV = 1 << 4, /* negate the condition */
  /frameworks/layoutlib/bridge/tests/res/testApp/MyApplication/
.gitignore 7 # The only way to negate an exclusion is by including every single parent
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter/
xt_iprange.h 9 IPRANGE_SRC_INV = 1 << 4, /* negate the condition */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_iprange.h 10 IPRANGE_SRC_INV = 1 << 4, /* negate the condition */
  /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/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);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/arithmetic.operations/
negate.pass.cpp 12 // negate
20 typedef std::negate<int> F;
25 typedef std::negate<> F2;
31 constexpr int foo = std::negate<int> () (3);
34 constexpr int bar = std::negate<> () (3.0);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/arithmetic.operations/
negate.pass.cpp 12 // negate
20 typedef std::negate<int> F;
26 typedef std::negate<> F2;
32 constexpr int foo = std::negate<int> () (3);
35 constexpr int bar = std::negate<> () (3.0);
  /external/compiler-rt/test/ubsan/TestCases/Integer/
negate-overflow.cpp 6 // CHECKU: negate-overflow.cpp:[[@LINE+2]]:3: runtime error: negation of 2147483648 cannot be represented in type 'unsigned int'
9 // CHECKS: negate-overflow.cpp:[[@LINE+2]]:10: runtime error: negation of -2147483648 cannot be represented in type 'int'; cast to an unsigned type to negate this value to itself
  /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...]
  /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...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
itoatest.cpp 33 static uint32_t Negate(uint32_t x) { return x; };
40 static int32_t Negate(int32_t x) { return -x; };
47 static uint64_t Negate(uint64_t x) { return x; };
54 static int64_t Negate(int64_t x) { return -x; };
83 VerifyValue<T>(Traits<T>::Negate(i), f, g);
84 VerifyValue<T>(Traits<T>::Negate(i + 1), f, g);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
AbstractECMultiplier.java 16 ECPoint result = sign > 0 ? positive : positive.negate();
  /external/guava/guava-tests/test/com/google/common/base/
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())); method
172 reallyTestEmpty(matcher.negate());
217 doTestNoMatches(inRange('A', 'Z').and(inRange('F', 'K').negate()), "F1a"); method
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().precomputed(), s)
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
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"); method
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(), s)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_optimize.c 56 combine.Negate = outer.Negate;
59 combine.Negate = swizzle_mask(outer.Swizzle, inner.Negate);
60 combine.Negate ^= outer.Negate;
168 inst->U.I.SrcReg[0].Negate) {
214 *pnegate = GET_BIT(src.Negate, chan);
217 if (swz != *pswz || *pnegate != GET_BIT(src.Negate, chan)) {
230 unsigned int negate= 0 local
271 unsigned int negate = 0; local
304 unsigned int negate = 0; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/endo/
GLVTypeBEndomorphism.java 31 BigInteger b = (b1.multiply(p.getV1B())).add(b2.multiply(p.getV2B())).negate();
56 return negative ? b.negate() : b;
  /frameworks/base/tools/split-select/
Rule.h 60 bool negate; member in struct:split::Rule
75 , negate(false) {}

Completed in 765 milliseconds

1 2 3 4 5 6 7 8 91011>>