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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Support/
DeltaAlgorithm.cpp 84 // complement.
87 changeset_ty Complement;
90 std::insert_iterator<changeset_ty>(Complement, Complement.begin()));
91 if (GetTestResult(Complement)) {
95 Res = Delta(Complement, ComplementSets);
  /bionic/libc/arch-x86/string/
strlen.S 17 notl %ecx /* get length by taking complement */
  /external/chromium/chrome/browser/password_manager/
login_database_mac.cc 8 // rest of the database as a suplemental storage system to complement Keychain,
  /ndk/sources/host-tools/sed-4.2.1/lib/
intprops.h 30 complement, ones' complement, or signed magnitude representation,
31 respectively. Much GNU code assumes two's complement, but some
  /external/icu4c/i18n/unicode/
fpositer.h 85 * Returns the complement of the result of operator==
87 * @return the complement of the result of operator==
  /external/llvm/lib/CodeGen/
SplitKit.h 221 /// ComplementSpillMode - Select how the complement live range should be
223 /// anything that isn't added to another interval. This complement interval
228 /// SM_Partition(Default) - Try to create the complement interval so it
235 /// instructions. Copies to the complement interval are hoisted to their
237 /// complement interval. This also means that no extra PHI-defs need to be
238 /// inserted in the complement interval.
243 /// the complement interval may get some extra PHI-defs.
253 /// The index 0 is used for the complement, so the first interval started by
290 /// LiveRangeCalc instance for the complement interval when in spill mode.
294 /// complement interval can overlap the other intervals, so it gets its ow
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestIntervalSet.java 105 String result = (s.complement(vocabulary)).toString();
115 String result = (s.complement(vocabulary)).toString();
123 String result = (s.complement(vocabulary)).toString();
131 String result = (s.complement(vocabulary)).toString();
144 String result = (s.complement(vocabulary)).toString();
296 String result = (s.complement(s2)).toString();
304 String result = (s.complement(s2)).toString();
312 String result = (s.complement(1,Label.MAX_CHAR_VALUE)).toString();
  /external/compiler-rt/lib/ppc/
fixunstfdi.c 38 /* Now we have the mantissa of tail as a signed 2s-complement integer */
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
CrcFunction.java 39 // and final complement step). The CRC-32 of "123456789" is 0xCBF43926.
  /external/zlib/contrib/infback9/
inflate9.h 14 STORED, /* i: waiting for stored size (length and complement) */
  /frameworks/compile/libbcc/runtime/lib/ppc/
fixunstfdi.c 39 /* Now we have the mantissa of tail as a signed 2s-complement integer */
  /external/linux-tools-perf/util/
string.c 190 bool complement = false, ret = true; local
193 complement = true;
219 return complement ? !ret : ret;
  /external/stlport/etc/
ChangeLog 1 2008-12-10 Petr Ovtchenkov <complement@users.sourceforge.net>
5 2008-12-03 Petr Ovtchenkov <complement@users.sourceforge.net>
11 2008-11-27 Petr Ovtchenkov <complement@users.sourceforge.net>
15 2008-11-19 Petr Ovtchenkov <complement@users.sourceforge.net>
19 2008-08-26 Petr Ovtchenkov <complement@users.sourceforge.net>
23 2008-07-21 Petr Ovtchenkov <complement@users.sourceforge.net>
39 2008-07-17 Petr Ovtchenkov <complement@users.sourceforge.net>
92 2008-06-26 Petr Ovtchenkov <complement@users.sourceforge.net>
118 2008-06-16 Petr Ovtchenkov <complement@users.sourceforge.net>
162 2008-06-07 Petr Ovtchenkov <complement@users.sourceforge.net
    [all...]
  /external/openssl/crypto/asn1/
a_int.c 99 * The DER representation of negative integers is in 2s complement form.
103 * complement and 0 by the add one (due to carry) so just copy as many trailing
105 * to the last none zero octet: so complement this octet and add one and finally
106 * complement any left over until you get to the start of the string.
165 /* Complement and increment next octet */
168 /* Complement any octets left */
  /external/clang/utils/
token-delta.py 91 complement = sum(sets[:i] + sets[i+1:],[])
92 if self.getTestResult(complement):
93 return self.delta(complement, sets[:i] + sets[i+1:])
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
complement.h 0 // complement.h
17 // Class to complement an Fst.
58 SetType("complement");
  /bionic/libc/string/
strcspn.c 37 * Span the complement of string s2.
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntSet.java 57 IntSet complement(IntSet elements); method in interface:IntSet
  /external/compiler-rt/lib/
int_lib.h 19 /* Assumption: Signed integral is 2's complement. */
  /external/llvm/include/llvm/
AutoUpgrade.h 29 /// This is the complement to the above, replacing a specific call to an
  /external/openfst/src/include/fst/
complement.h 0 // complement.h
19 // Class to complement an Fst.
64 SetType("complement");
73 SetType("complement");
  /libcore/luni/src/main/java/java/math/
BigInteger.java 34 * <h3>Slow Two's Complement Bitwise Operations</h3>
35 * This API includes operations for bitwise operations in two's complement
36 * representation. Two's complement is not the internal representation used by
255 * Constructs a new {@code BigInteger} from the given two's complement
260 * @param value two's complement representation of the new {@code
344 * Returns the two's complement representation of this {@code BigInteger} in
459 // Negative numbers faking 2's complement:
471 * Returns the length of the value's two's complement representation without
475 * <p>The two's complement representation of {@code this} will be at least
481 * @return the length of the minimal two's complement representation fo
    [all...]
  /libcore/luni/src/main/java/java/util/
EnumSet.java 67 set.complement();
120 * Creates an enum set. All the contained elements complement those from the
133 set.complement();
137 abstract void complement(); method in class:EnumSet
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
TreeToNFAConverter.g 498 IntSet notAtom = grammar.complement(ttype);
526 notAtom = grammar.complement(notAtom);
532 notAtom = grammar.complement(ttype);
547 //IntSet notSet = grammar.complement(stNode.getSetValue());
548 // let code generator complement the sets
551 // let code gen do the complement again; here we compute
553 s = grammar.complement(s);
783 IntSet not = grammar.complement(ns);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
IntegerTest.java 46 // BigInteger / two's-complement representation / encoding
68 // get two's-complement representation

Completed in 911 milliseconds

1 2 3 4 5 6 7 8 91011>>