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

1 2 3 4 5 6 7 8

  /external/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);
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, "" );
Android.mk 27 test_name := utilities/function.objects/arithmetic.operations/negate
28 test_src := negate.pass.cpp
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
leb128_test.c 37 int negate; member in struct:Test_Entry
86 if (test->negate)
93 test->sign?"":"un", test->negate?"-":"", test->input,
104 test->sign?"":"un", test->negate?"-":"", test->input,
117 test->sign?"":"un", test->negate?"-":"", test->input);
135 if (test->negate)
143 test->sign?"":"un", test->negate?"-":"", test->input,
153 test->sign?"":"un", test->negate?"-":"", test->input);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
AbstractECMultiplier.java 16 return sign > 0 ? positive : positive.negate();
ECAlgorithms.java 109 points[3].negate(), points[2].negate(), points[1].negate(),
110 points[0].negate(), infinity, points[0],
SimpleBigDecimal.java 99 public SimpleBigDecimal negate() method in class:SimpleBigDecimal
101 return new SimpleBigDecimal(bigInt.negate(), scale);
106 return add(b.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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_vec4_copy_propagation.cpp 86 if (inst->src[arg].negate) {
178 value.negate != values[i]->negate ||
201 value.negate = false;
204 if (inst->src[arg].negate)
205 value.negate = !value.negate;
219 value.negate &&
brw_fs_copy_propagation.cpp 46 entry->src.negate)
49 bool has_source_modifiers = entry->src.abs || entry->src.negate;
61 inst->src[arg].negate ^= entry->src.negate;
  /external/libcxx/test/numerics/numarray/template.valarray/valarray.unary/
Android.mk 27 test_name := numerics/numarray/template.valarray/valarray.unary/negate
28 test_src := negate.pass.cpp
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4_copy_propagation.cpp 86 if (inst->src[arg].negate) {
178 value.negate != values[i]->negate ||
201 value.negate = false;
204 if (inst->src[arg].negate)
205 value.negate = !value.negate;
219 value.negate &&
brw_fs_copy_propagation.cpp 46 entry->src.negate)
49 bool has_source_modifiers = entry->src.abs || entry->src.negate;
61 inst->src[arg].negate ^= entry->src.negate;
  /external/guava/guava-tests/test/com/google/common/base/
CharMatcherTest.java 61 assertSame(CharMatcher.ANY, CharMatcher.NONE.negate());
62 assertSame(CharMatcher.NONE, CharMatcher.ANY.negate());
128 reallyTestEmpty(matcher.negate());
173 doTestNoMatches(inRange('A', 'Z').and(inRange('F', 'K').negate()), "F1a"); method
182 reallyTestAllMatches(matcher.negate(), s);
184 reallyTestAllMatches(matcher.negate().precomputed(), s);
185 reallyTestAllMatches(matcher.precomputed().negate(), s);
209 reallyTestNoMatches(matcher.negate(), s);
211 reallyTestNoMatches(matcher.negate().precomputed(), s);
212 reallyTestNoMatches(matcher.precomputed().negate(), s)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
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)
  /external/mesa3d/src/mesa/drivers/dri/r200/
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)
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_fragprog.c 192 if (source->Negate)
193 src = negate(src,
194 GET_BIT(source->Negate, 0),
195 GET_BIT(source->Negate, 1),
196 GET_BIT(source->Negate, 2),
197 GET_BIT(source->Negate, 3));
419 src0, negate(src0, 1, 1, 1, 1), 0);
465 negate(swizzle(tmp, ZERO, X, ZERO, ZERO), 0, 1, 0, 0),
491 negate(swizzle(tmp, ZERO, X, ZERO, ZERO), 0, 1, 0, 0),
500 negate(swizzle(tmp, ZERO, X, ZERO, ZERO), 0, 1, 0, 0))
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_fragprog.c 192 if (source->Negate)
193 src = negate(src,
194 GET_BIT(source->Negate, 0),
195 GET_BIT(source->Negate, 1),
196 GET_BIT(source->Negate, 2),
197 GET_BIT(source->Negate, 3));
419 src0, negate(src0, 1, 1, 1, 1), 0);
465 negate(swizzle(tmp, ZERO, X, ZERO, ZERO), 0, 1, 0, 0),
491 negate(swizzle(tmp, ZERO, X, ZERO, ZERO), 0, 1, 0, 0),
500 negate(swizzle(tmp, ZERO, X, ZERO, ZERO), 0, 1, 0, 0))
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkStrokerPriv.cpp 110 after.negate();
134 before.negate();
135 after.negate();
163 // negate the dot since we're using normals instead of tangents
184 before.negate();
185 after.negate();
221 mid.negate();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_inline_literals.c 28 unsigned negate = !!(float_bits & 0x80000000); local
55 if (negate)
137 src_reg->Negate = src_reg->Negate ^ negate_mask;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_inline_literals.c 28 unsigned negate = !!(float_bits & 0x80000000); local
55 if (negate)
137 src_reg->Negate = src_reg->Negate ^ negate_mask;
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
ir_to_mesa.cpp 80 this->negate = 0;
89 this->negate = 0;
98 int negate; /**< NEGATE_XYZW mask from mesa */ member in class:src_reg
138 this->negate = 0;
653 src.negate = 0;
902 b.negate = ~b.negate;
982 bool negate[4] = { false }; local
1003 negate[i] = true;
1027 negate[i] = true
1696 bool negate = true; local
    [all...]
  /external/mesa3d/src/mesa/program/
ir_to_mesa.cpp 80 this->negate = 0;
89 this->negate = 0;
98 int negate; /**< NEGATE_XYZW mask from mesa */ member in class:src_reg
138 this->negate = 0;
653 src.negate = 0;
902 b.negate = ~b.negate;
982 bool negate[4] = { false }; local
1003 negate[i] = true;
1027 negate[i] = true
1696 bool negate = true; local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gen/
fnmatch.c 154 int negate; local
161 negate = ((**pattern == '!') || (**pattern == '^'));
162 if (negate)
175 return (result ^ negate);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PointTest.java 87 mPoint.negate();

Completed in 1839 milliseconds

1 2 3 4 5 6 7 8