HomeSort by relevance Sort by last modified time
    Searched defs:and (Results 51 - 75 of 134) sorted by null

1 23 4 5 6

  /external/proguard/src/proguard/evaluation/value/
SpecificIntegerValue.java 2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
164 public IntegerValue and(IntegerValue other) method in class:SpecificIntegerValue
166 return other.and(this);
296 public IntegerValue and(SpecificIntegerValue other) method in class:SpecificIntegerValue
300 new CompositeIntegerValue(other, CompositeIntegerValue.AND, this);
UnknownIntegerValue.java 2 * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
166 public IntegerValue and(IntegerValue other) method in class:UnknownIntegerValue
  /libcore/luni/src/main/java/java/math/
Logical.java 14 * See the License for the specific language governing permissions and
25 * <li>and</li>
81 /** @see BigInteger#and(BigInteger) */
82 static BigInteger and(BigInteger val, BigInteger that) { method in class:Logical
130 // PRE: positive is positive and negative is negative
158 } // else positive ended and must "copy" virtual 0's, do nothing then
165 // PRE: longer and shorter are negative
459 // PRE: longer and shorter are positive;
477 // PRE: val and that are negative;
550 // Applying two complement to negative and to resul
    [all...]
BigInteger.java 14 * See the License for the specific language governing permissions and
31 * cryptography, such as the generation of large prime numbers and computation
224 * Constructs a new {@code BigInteger} instance with the given sign and
233 * the sign is zero and the magnitude contains non-zero entries.
304 // ... and then increment it back because we always drop one too many
649 * @param value value to be and'ed with {@code this}.
652 public BigInteger and(BigInteger value) { method in class:BigInteger
655 return Logical.and(this, value);
691 * x.and(value.not())}.
696 * @param value value to be not'ed and then and'ed with {@code this}
    [all...]
  /ndk/build/core/
default-build-commands.mk 12 # Return the list of object, static libraries and shared libraries as they
16 # we always put libgcc _after_ all static libraries and _before_ shared
20 # and this causes binary compatibility problems when they come from
21 # system libraries (e.g. libc.so and others).
30 TARGET-get-linker-objects-and-libraries = \
39 # the stack and the heap.
57 # and static libraries, but before any other library in the link
58 # command line when generating shared libraries and executables.
91 # The strip command is only used for shared libraries and executables.
  /ndk/sources/host-tools/nawk-20071023/
awkgram.y 5 Permission to use, copy, modify, and distribute this software and
6 its documentation for any purpose and without fee is hereby
8 copies and that both that the copyright notice and this
9 permission notice and warranty disclaimer appear in supporting
10 documentation, and that the name Lucent Technologies or any of
16 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
54 %token <i> AND BOR APPEND EQ GE GT LE LT NE IN
72 %type <i> pst opt_pst lbrace rbrace rparen comma nl opt_nl and bo
103 and: label
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
SemanticContext.java 6 * Redistribution and use in source and binary forms, with or without
10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
43 * For NFA o-p1->o-p2->o, create tree AND(p1,p2).
48 * we will have to combine p1 and p2 into DFA state as we will b
607 public static SemanticContext and(SemanticContext a, SemanticContext b) { method in class:SemanticContext
    [all...]