Searched refs:ZERO (Results 1 - 25 of 68) sorted by relevance

123

/openjdk7/jdk/test/java/util/Collections/
H A DViewSynch.java35 static final Integer ZERO = new Integer(0); field in class:ViewSynch
39 static Map m2 = m.tailMap(ZERO);
50 m.remove(ZERO);
51 m.put(ZERO, INT_ZERO);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DMultiplicity.java50 if (BigInteger.ZERO.equals(min) && max==null) return STAR;
53 if(BigInteger.ZERO.equals(min) && BigInteger.ZERO.equals(max)) return ZERO;
54 if(BigInteger.ZERO.equals(min) && BigInteger.ONE.equals(max)) return OPTIONAL;
103 return BigInteger.ZERO.equals(min) && BigInteger.ONE.equals(max);
115 return BigInteger.ZERO.equals(max);
149 public static final Multiplicity ZERO = new Multiplicity(0,0); field in class:Multiplicity
178 max = BigInteger.ZERO;
188 return (i != null && BigInteger.ZERO
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DAlphaMacros.c160 #define AROPS_ZERO MAKE_AROPS( ZERO, PLUS, NAUGHT )
162 #define AROPS_ALPHA MAKE_AROPS( ZERO, PLUS, ALPHA )
/openjdk7/jdk/test/java/math/BigDecimal/
H A DCompareToTests.java42 {valueOf(0), valueOf(0), ZERO},
46 {valueOf(10), valueOf(10), ZERO},
56 {valueOf(Long.MAX_VALUE), valueOf(Long.MAX_VALUE), ZERO},
60 {valueOf(Long.MIN_VALUE), valueOf(Long.MIN_VALUE), ZERO},
H A DEqualsTests.java42 {ZERO, ZERO},
H A DSerializationTests.java58 BigDecimal.ZERO,
H A DZeroScalingTests.java41 zeros[i] = new BigDecimal(BigInteger.ZERO, i-10);
43 zeros[21] = new BigDecimal(BigInteger.ZERO, Integer.MIN_VALUE);
44 zeros[22] = new BigDecimal(BigInteger.ZERO, Integer.MAX_VALUE);
65 BigDecimal expected = new BigDecimal(BigInteger.ZERO,
166 BigDecimal expected = new BigDecimal(BigInteger.ZERO,
279 BigDecimal expected = new BigDecimal(BigInteger.ZERO,
327 BigDecimal expected = new BigDecimal(BigInteger.ZERO,
/openjdk7/jdk/test/java/math/BigInteger/
H A DCompareToTests.java42 {valueOf(0), valueOf(0), ZERO},
46 {valueOf(10), valueOf(10), ZERO},
56 {valueOf(Long.MAX_VALUE), valueOf(Long.MAX_VALUE), ZERO},
60 {valueOf(Long.MIN_VALUE), valueOf(Long.MIN_VALUE), ZERO},
H A DOperatorNpeTests.java37 BigInteger[] specialValues = {ZERO, ONE, TEN};
H A DBigIntegerTest.java83 while(x.compareTo(BigInteger.ZERO) != 1)
88 if (y.equals(BigInteger.ZERO))
95 if (!baz.equals(BigInteger.ZERO))
103 while(x.compareTo(BigInteger.ZERO) != 1)
108 if (y.equals(BigInteger.ZERO))
115 if (!baz[0].equals(BigInteger.ZERO))
177 y = BigInteger.ZERO;
296 else if (!y[1].equals(BigInteger.ZERO)) {
339 while (x.equals(BigInteger.ZERO))
356 while(x.equals(BigInteger.ZERO))
460 private static final BigInteger ZERO = BigInteger.ZERO; field in class:BigIntegerTest
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.inline.hpp49 #ifdef ZERO
H A Dvm_version.cpp116 #ifdef ZERO
122 #else // ZERO
125 #endif // ZERO
180 #ifdef ZERO
189 #endif // ZERO
/openjdk7/jdk/test/sun/security/util/DerInputBuffer/
H A DBigInteger0.java54 if( bi.equals(BigInteger.ZERO) == false ) {
/openjdk7/hotspot/src/share/vm/opto/
H A Daddnode.hpp80 virtual const Type *add_id() const { return TypeInt::ZERO; }
94 virtual const Type *add_id() const { return TypeLong::ZERO; }
110 virtual const Type *add_id() const { return TypeF::ZERO; }
125 virtual const Type *add_id() const { return TypeD::ZERO; }
171 virtual const Type *add_id() const { return TypeInt::ZERO; }
185 virtual const Type *add_id() const { return TypeLong::ZERO; }
198 virtual const Type *add_id() const { return TypeInt::ZERO; }
210 virtual const Type *add_id() const { return TypeLong::ZERO; }
H A Dmulnode.hpp89 const Type *add_id() const { return TypeInt::ZERO; }
105 const Type *add_id() const { return TypeLong::ZERO; }
121 const Type *add_id() const { return TypeF::ZERO; }
136 const Type *add_id() const { return TypeD::ZERO; }
165 const Type *add_id() const { return TypeInt::ZERO; }
182 const Type *add_id() const { return TypeLong::ZERO; }
H A Dmulnode.cpp148 // Either input is ZERO ==> the result is ZERO.
526 phase->type(load->in(1)) == TypeInt::ZERO )
710 // Left input is ZERO ==> the result is ZERO.
711 if( t1 == TypeInt::ZERO ) return TypeInt::ZERO;
713 if( t2 == TypeInt::ZERO ) return t1;
819 // Left input is ZERO ==> the result is ZERO
[all...]
H A Ddivnode.cpp674 if (!g_isnan(t1->getf()) && g_isfinite(t1->getf()) && t1->getf() != 0.0) // could be negative ZERO or NaN
688 // Test TypeF::ZERO is not sufficient as it could be negative zero
690 if( t1 == TypeF::ZERO && !g_isnan(t2->getf()) && t2->getf() != 0.0 )
691 return TypeF::ZERO;
762 if (!g_isnan(t1->getd()) && g_isfinite(t1->getd()) && t1->getd() != 0.0) // could be negative ZERO or NaN
783 // Test TypeF::ZERO is not sufficient as it could be negative zero
784 if( t1 == TypeD::ZERO && !g_isnan(t2->getd()) && t2->getd() != 0.0 )
785 return TypeD::ZERO;
919 if( pos_con == 1 ) return new (phase->C) ConINode(TypeInt::ZERO);
976 if( t1 == TypeInt::ZERO ) retur
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DPrivateKeyInfo.java51 private static final BigInteger VERSION = BigInteger.ZERO;
H A DDHParameters.java47 private BigInteger p = BigInteger.ZERO;
50 private BigInteger g = BigInteger.ZERO;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DMultiplicityCounter.java38 import static com.sun.tools.internal.xjc.model.Multiplicity.ZERO;
74 Multiplicity r = ZERO;
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS10.java151 if (!serial.equals(BigInteger.ZERO))
206 scratch.putInteger(BigInteger.ZERO); // PKCS #10 v1.0
/openjdk7/jdk/test/java/util/Arrays/
H A DBig.java76 Integer ZERO = 0;
77 Arrays.fill(a, ZERO);
/openjdk7/jdk/src/share/classes/java/math/
H A DBigDecimal.java285 new BigDecimal(BigInteger.ZERO, 0, 0, 1),
301 new BigDecimal(BigInteger.ZERO, 0, 1, 1),
302 new BigDecimal(BigInteger.ZERO, 0, 2, 1),
303 new BigDecimal(BigInteger.ZERO, 0, 3, 1),
304 new BigDecimal(BigInteger.ZERO, 0, 4, 1),
305 new BigDecimal(BigInteger.ZERO, 0, 5, 1),
306 new BigDecimal(BigInteger.ZERO, 0, 6, 1),
307 new BigDecimal(BigInteger.ZERO, 0, 7, 1),
308 new BigDecimal(BigInteger.ZERO, 0, 8, 1),
309 new BigDecimal(BigInteger.ZERO,
328 public static final BigDecimal ZERO = field in class:BigDecimal
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dinterpreter.hpp31 #ifdef ZERO
/openjdk7/jdk/test/java/security/spec/
H A DECCBasic.java36 private static final BigInteger ZERO = BigInteger.ZERO; field in class:ECCBasic
65 new ECFieldFp(ZERO);
169 new ECParameterSpec(CURVE, POINT, ZERO, COFACTOR);

Completed in 91 milliseconds

123