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

1 2

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerNotTest.java 28 * Methods: and, andNot
32 * andNot for two positive numbers; the first is longer
42 BigInteger result = aNumber.andNot(bNumber);
52 * andNot for two positive numbers; the first is shorter
62 BigInteger result = aNumber.andNot(bNumber);
72 * andNot for two negative numbers; the first is longer
82 BigInteger result = aNumber.andNot(bNumber);
92 * andNot for a negative and a positive numbers; the first is longer
102 BigInteger result = aNumber.andNot(bNumber);
BigIntegerTest.java 815 * @tests java.math.BigInteger#andNot(java.math.BigInteger)
820 BigInteger res = i1.andNot(i2);
823 assertTrue("andNot", (i1.testBit(i) && !i2.testBit(i)) == res
829 res = i1.andNot(i2);
831 assertTrue("andNot reversed",
837 BigInteger.ZERO.andNot(null);
843 assertEquals(BigInteger.ZERO, bi.andNot(BigInteger.ZERO));
  /libcore/luni/src/test/java/libcore/java/util/
BitSetTest.java 211 result.andNot(small());
214 result.andNot(big());
  /frameworks/base/services/core/java/com/android/server/hdmi/
HotplugDetectionAction.java 209 clone.andNot(second);
  /libcore/luni/src/main/java/java/math/
Logical.java 26 * <li>andNot</li>
217 /** @see BigInteger#andNot(BigInteger) */
218 static BigInteger andNot(BigInteger val, BigInteger that) {
BigInteger.java 724 * Evaluating {@code x.andNot(value)} returns the same result as {@code
733 public BigInteger andNot(BigInteger value) {
736 return Logical.andNot(this, value);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
BitSetTest.java     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dvec.h 80 inline M128 andnot(const M128 &a,const M128 &b) { return _mm_andnot_si128(a,b); } function
652 #define IVEC128_LOGICALS(vect,element) inline I##vect##vec##element operator& (const I##vect##vec##element &a,const I##vect##vec##element &b) { return _mm_and_si128(a,b); } inline I##vect##vec##element operator| (const I##vect##vec##element &a,const I##vect##vec##element &b) { return _mm_or_si128(a,b); } inline I##vect##vec##element operator^ (const I##vect##vec##element &a,const I##vect##vec##element &b) { return _mm_xor_si128(a,b); } inline I##vect##vec##element andnot (const I##vect##vec##element &a,const I##vect##vec##element &b) { return _mm_andnot_si128(a,b); }
758 friend F64vec2 andnot(const F64vec2 &a,const F64vec2 &b) { return _mm_andnot_pd(a,b); } function in class:F64vec2
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_util.cpp 225 BitSet::andNot(const BitSet &set)
nv50_ir_ssa.cpp 260 bb->liveSet.andNot(assigned);
nv50_ir_util.h 550 void andNot(const BitSet&);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_util.cpp 225 BitSet::andNot(const BitSet &set)
nv50_ir_ssa.cpp 260 bb->liveSet.andNot(assigned);
nv50_ir_util.h 550 void andNot(const BitSet&);
  /external/eigen/Eigen/src/Core/
GenericPacketMath.h 147 /** \internal \returns the bitwise andnot of \a a and \a b */
  /external/llvm/test/MC/Disassembler/XCore/
xcore.txt 150 # CHECK: andnot r10, r11
  /libcore/luni/src/main/java/java/util/
BitSet.java 475 public void andNot(BitSet bs) {
  /external/llvm/lib/Target/X86/
X86ISelLowering.h 55 /// FANDN - Bitwise logical ANDNOT of floating point values. This
    [all...]
README-SSE.txt 348 e.g. SSE select using and, andnot, or. Various SSE compare translations.
  /external/llvm/lib/Target/XCore/
XCoreInstrInfo.td 771 "andnot $dst, $src2",
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.sat4j.pb_2.3.5.v20130525.jar 
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
crypto.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/
v8-crypto.html     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-crypto.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-crypto.js     [all...]

Completed in 776 milliseconds

1 2