Searched defs:one (Results 1 - 25 of 68) sorted by relevance

123

/openjdk7/langtools/test/tools/javac/miranda/4686148/
H A DAbstractTest.java24 package one; package
H A DTest.java34 package one; package
/openjdk7/langtools/test/tools/javac/HiddenAbstractMethod/one/
H A DParent.java24 package one; package
/openjdk7/langtools/test/tools/javac/NonAmbiguousField/one/
H A DParent.java24 package one; package
H A DParent2.java24 package one; 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)
56 if (three.compareToIgnoreCase(one) < 0)
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_acosh.c48 one = 1.0, variable
72 return __ieee754_log(2.0*x-one/(x+sqrt(t-one)));
74 t = x-one;
H A De_atanh.c48 static const double one = 1.0, huge = 1e300; variable
50 static double one = 1.0, huge = 1e300; variable
76 t = 0.5*log1p(t+t*x/(one-x));
78 t = 0.5*log1p((x+x)/(one-x));
H A De_cosh.c51 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
53 static double one = 1.0, half=0.5, huge = 1.0e300; variable
77 w = one+t;
79 return one+(t*t)/(w+w);
92 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
H A De_sinh.c48 static const double one = 1.0, shuge = 1.0e307; variable
50 static double one = 1.0, shuge = 1.0e307; variable
76 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
78 if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one));
79 return h*(t+t/(t+one));
86 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
H A Ds_asinh.c45 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
62 if(huge+x>one) return x; /* return x inexact except 0 */
68 w = __ieee754_log(2.0*t+one/(sqrt(x*x+one)+t));
71 w =log1p(fabs(x)+t/(one+sqrt(one+t)));
H A Ds_modf.c40 static const double one = 1.0; variable
42 static double one = 1.0; variable
76 *iptr = x*one;
H A Ds_tanh.c37 * 2. 0 <= x <= 2**-55 : tanh(x) := x*(one+x)
54 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
75 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */
76 else return one/x-one; /* tanh(NaN) = NaN */
82 return x*(one+x); /* tanh(small) = small */
85 z = one - two/(t+two);
92 z = one
[all...]
H A De_fmod.c36 static const double one = 1.0, Zero[] = {0.0, -0.0,}; variable
38 static double one = 1.0, Zero[] = {0.0, -0.0,}; variable
150 x *= one; /* create necessary signal */
H A Dk_cos.c69 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
88 if(((int)x)==0) return one; /* generate inexact */
93 return one - (0.5*z - (z*r - x*y));
102 a = one-qx;
H A Ds_atan.c31 * is further reduced to one of the following intervals and the
94 one = 1.0, variable
117 if(huge+x>one) return x; /* raise inexact */
124 id = 0; x = (2.0*x-one)/(2.0+x);
126 id = 1; x = (x-one)/(x+one);
130 id = 2; x = (x-1.5)/(one+1.5*x);
H A De_sqrt.c29 * | Use the hardware sqrt if you have one |
44 * To compute q from q , one checks whether
78 * After generating the 53 bits result, we compute one more bit.
99 static const double one = 1.0, tiny=1.0e-300; variable
101 static double one = 1.0, tiny=1.0e-300; variable
187 z = one-tiny; /* trigger inexact flag */
188 if (z>=one) {
189 z = one+tiny;
191 else if (z>one) {
217 The second one use
[all...]
H A Dk_tan.c67 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
100 return one / fabs(x);
110 t = a = -one / w;
112 s = one + t * z;
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DObjects.java41 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.java41 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.java41 public static boolean equals(Object one, Object two) { argument
42 return one == two || one != null && one.equals(two);
/openjdk7/jdk/test/com/sun/jdi/
H A DCountEvent.java57 one();
62 void one() { method in class:CountEventTarg
H A DInstTarg.java41 one();
46 void one() { method in class:InstTarg
H A DInstanceFilter.java56 one();
61 void one() { method in class:InstanceFilterTarg
78 String[] expectedMethods = new String[] { "go", "one", "two", "three"};
98 // the one we want.
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DLeftOverInputStream.java48 byte[] one = new byte [1]; field in class:LeftOverInputStream
87 int c = readImpl (one, 0, 1);
91 return one[0] & 0xFF;

Completed in 87 milliseconds

123