Searched defs:two (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/langtools/test/tools/javac/HiddenAbstractMethod/two/
H A DChild.java24 package two; package
/openjdk7/langtools/test/tools/javac/miranda/4686148/
H A DConcreteTest.java24 package two; package
/openjdk7/langtools/test/tools/javac/NonAmbiguousField/two/
H A DChild.java24 package two; package
H A DChild2.java24 package two; package
/openjdk7/jdk/test/java/lang/String/
H A DCompareIC.java50 private void testTriplet(String one, String two, String three) argument
52 if (one.compareToIgnoreCase(two) > 0)
54 if (two.compareToIgnoreCase(three) > 0)
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Ds_tanh.c54 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable
56 static double one=1.0, two=2.0, tiny = 1.0e-300; variable
84 t = expm1(two*fabs(x));
85 z = one - two/(t+two);
87 t = expm1(-two*fabs(x));
88 z= -t/(t+two);
H A De_jn.c61 two = 2.00000000000000000000e+00, /* 0x40000000, 0x00000000 */ variable
196 v = two/x;
204 di -= two;
212 di -= two;
H A De_pow.c31 * 1. Compute and return log2(x) in two pieces:
84 two = 2.0, variable
313 r = (z*t1)/(t1-two)-(w+z*w);
H A Ds_erf.c132 two = 2.00000000000000000000e+00, /* 0x40000000, 0x00000000 */ variable
309 if(hx<0&&ix>=0x40180000) return two-tiny;/* x < -6 */
319 if(hx>0) return r/x; else return two-r/x;
321 if(hx>0) return tiny*tiny; else return two-tiny;
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DObjects.java28 * Emulate two methods of java.util.Objects. We can't use JDK 7 new APIs in
41 public static boolean equals(Object one, Object two) { argument
42 return one == two || one != null && one.equals(two);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/utils/
H A DObjects.java28 * Emulate two methods of java.util.Objects. We can't use JDK 7 new APIs in
41 public static boolean equals(Object one, Object two) { argument
42 return one == two || one != null && one.equals(two);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/utils/
H A DObjects.java28 * Emulate two methods of java.util.Objects. We can't use JDK 7 new APIs in
41 public static boolean equals(Object one, Object two) { argument
42 return one == two || one != null && one.equals(two);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/generator/
H A DW3CAddressingJavaGeneratorExtension.java49 public void writeMethodAnnotations(TWSDLOperation two, JMethod jMethod) { argument
52 if (!(two instanceof Operation))
55 Operation o = ((Operation)two);
/openjdk7/jdk/test/com/sun/jdi/
H A DCountEvent.java58 two();
65 void two() { method in class:CountEventTarg
H A DInstTarg.java42 two();
49 void two() { method in class:InstTarg
H A DInstanceFilter.java57 two();
64 void two() { method in class:InstanceFilterTarg
78 String[] expectedMethods = new String[] { "go", "one", "two", "three"};
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DCheckingEquality.java87 int two; field in class:Firstpsio
92 two = 2;
101 /* Compare two first objects */
110 if (two != other.two) {
111 System.err.println("\nfirstpsio: expected " + two +
112 " actual " + other.two);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSNamedMapImpl.java197 static boolean isEqual(String one, String two) { argument
198 return (one != null) ? one.equals(two) : (two == null);
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/
H A DExpression.java218 public static final BigInteger two = BigInteger.valueOf (2); field in class:Expression
220 public static final BigInteger twoPow15 = two.pow (15);
221 public static final BigInteger twoPow16 = two.pow (16);
222 public static final BigInteger twoPow31 = two.pow (31);
223 public static final BigInteger twoPow32 = two.pow (32);
224 public static final BigInteger twoPow63 = two.pow (63);
225 public static final BigInteger twoPow64 = two.pow (64);
230 public static final BigInteger usMax = sMax.multiply (two).add (one);
236 public static final BigInteger ulMax = lMax.multiply (two).add (one);
242 public static final BigInteger ullMax = llMax.multiply (two)
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.cpp198 // Compute the union of all elements of one and two which interfere with
208 IndexSet *two = ifg->neighbors(lr2); local
215 two->check_watch("union source");
224 if (two->count() > one->count()) {
226 one = two;
227 two = temp;
255 // Add neighbors of two as well
256 IndexSetIterator elements2(two);
354 // Exchange two IndexSets.
/openjdk7/jdk/test/java/util/Collections/
H A DRacingCollections.java49 final static Integer two = 2; field in class:RacingCollections
53 * being empty and containing singleton "two"
79 case 0: l.add(two); break;
80 case 1: l.add(0, two); break;
83 case 0: l.remove(two); break;
90 case 0: q.add(two); break;
91 case 1: q.addFirst(two); break;
92 case 2: q.addLast(two); break;
93 case 3: q.offer(two); break;
94 case 4: q.offerFirst(two); brea
[all...]
/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java194 * Compare the magnitude of two MutableBigIntegers. Returns -1, 0 or 1
579 * Adds the contents of two MutableBigInteger objects.The result
728 * Multiply the contents of two MutableBigInteger objects. The result is
1067 * Compare two longs as if they were unsigned.
1068 * Returns true iff one is bigger than two.
1070 private boolean unsignedLongCompare(long one, long two) { argument
1071 return (one+Long.MIN_VALUE) > (two+Long.MIN_VALUE);
1076 * qhat for two multi precision numbers. It is used when
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateTable_sparc.cpp262 static float zero = 0.0, one = 1.0, two = 2.0; local
268 case 2: p = &two; break;
478 // last two iloads in a pair. Comparing against fast_iload means that
2584 // one or two words depending on its type. As a result, we must find
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntimeTrans.cpp146 * Here ln2 is split into two floating point number:
443 * 1. Compute and return log2(x) in two pieces:
489 two = 2.0, variable
714 r = (z*t1)/(t1-two)-(w+z*w);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateTable_x86_64.cpp319 static float one = 1.0f, two = 2.0f; local
328 __ movflt(xmm0, ExternalAddress((address) &two));
533 // last two iloads in a pair. Comparing against fast_iload means that
2480 // could be one or two words depending on its type. As a result,
2492 c_rarg1, at_tos_p2()); // ltos (two word jvalue)
2495 c_rarg1, at_tos_p2()); // dtos (two word jvalue)

Completed in 339 milliseconds

12