Searched refs:zero (Results 1 - 25 of 108) sorted by relevance

12345

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_atanh.c53 static double zero = 0.0; variable
71 return x/zero;
72 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
H A De_log10.c72 static double zero = 0.0; variable
91 return -two54/zero; /* log(+-0)=-inf */
92 if (hx<0) return (x-x)/zero; /* log(-#) = NaN */
H A Dk_standard.c39 static double zero = 0.0; /* used as const */ variable
114 exc.retval = zero;
128 exc.retval = zero;
144 exc.retval = zero;
200 exc.retval = zero;
413 exc.retval = zero;
427 if(x<zero&&rint(y)!=y) exc.retval = -HUGE;
431 if(x<zero&&rint(y)!=y) exc.retval = -HUGE_VAL;
443 exc.retval = zero;
455 exc.retval = zero;
[all...]
H A De_remainder.c39 static const double zero = 0.0; variable
41 static double zero = 0.0; variable
73 if (((hx-hp)|(lx-lp))==0) return zero*x;
H A De_lgamma_r.c168 static double zero= 0.00000000000000000000e+00; variable
182 if(ix<0x3fd00000) return __kernel_sin(pi*x,zero,0);
196 y = zero; n = 0; /* y must be even */
205 case 0: y = __kernel_sin(pi*y,zero,0); break;
207 case 2: y = __kernel_cos(pi*(0.5-y),zero); break;
209 case 4: y = __kernel_sin(pi*(one-y),zero,0); break;
211 case 6: y = -__kernel_cos(pi*(y-1.5),zero); break;
212 default: y = __kernel_sin(pi*(y-2.0),zero,0); break;
235 if((ix|lx)==0) return one/zero;
244 return one/zero;
[all...]
H A De_log.c96 static double zero = 0.0; variable
115 return -two54/zero; /* log(+-0)=-inf */
116 if (hx<0) return (x-x)/zero; /* log(-#) = NaN */
128 if(f==zero) {
129 if (k==0) return zero;
H A Ds_log1p.c110 static double zero = 0.0; variable
133 return -two54/zero;
138 if(two54+x>zero /* raise inexact */
173 if(f==zero) { if(k==0) return zero;
H A De_atan2.c62 zero = 0.0, variable
112 case 0: return zero ; /* atan(+...,+INF) */
113 case 1: return -1.0*zero ; /* atan(-...,+INF) */
H A De_jn.c33 * y0(0)=y1(0)=yn(n,0) = -inf with division by zero signal;
64 static double zero = 0.00000000000000000000e+00; variable
95 b = zero;
134 b = zero;
184 for(t=zero, i = 2*(n+k); i>=m; i -= 2) t = one/(i/x-t);
193 * likely underflow to zero
243 if((ix|lx)==0) return -one/zero;
244 if(hx<0) return zero/zero;
252 if(ix==0x7ff00000) return zero;
[all...]
H A De_j0.c28 * Bessel function of the first and second kinds of order zero.
99 static double zero = 0.0; variable
122 if ((s*c)<zero) cc = z/ss;
185 if((ix|lx)==0) return -one/zero;
186 if(hx<0) return zero/zero;
209 if ((s*c)<zero) cc = z/ss;
H A De_j1.c28 * Bessel function of the first and second kinds of order zero.
100 static double zero = 0.0; variable
123 if ((s*c)>zero) cc = z/ss;
186 if((ix|lx)==0) return -one/zero;
187 if(hx<0) return zero/zero;
195 if ((s*c)>zero) cc = z/ss;
/openjdk7/jdk/test/java/math/BigDecimal/
H A DZeroScalingTests.java27 * @summary Tests that the scale of zero is propagated properly and has the proper effect.
95 // Test effect of adding zero to a nonzero value.
97 for (BigDecimal zero: zeros) {
98 if (Math.abs((long)zero.scale()) < 100 ) {
100 int preferredScale = Math.max(zero.scale(), element.scale());
111 System.err.println("\n " + element + " +\t" + zero + " =\t" + result);
113 System.err.println("scales" + element.scale() + " \t" + zero.scale() +
118 BigDecimal result = element.add(zero, mc);
127 result = zero.add(element, mc);
136 result = element.negate().add(zero, m
[all...]
/openjdk7/jdk/test/java/security/AccessControlContext/
H A DCheckCtor.java48 ProtectionDomain zero[] = {};
52 AccessControlContext accZero = new AccessControlContext(zero);
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/
H A DExpression.java154 if (b != null && b.compareTo (zero) < 0) // error if value < min = -(2**(l-1)).
159 if (b != null && b.compareTo (zero) < 0)
164 if (b != null && b.compareTo (zero) < 0)
216 public static final BigInteger zero = BigInteger.valueOf (0); field in class:Expression
231 public static final BigInteger usMin = zero;
237 public static final BigInteger ulMin = zero;
243 public static final BigInteger ullMin = zero;
H A DBooleanNot.java63 op = new Boolean (((BigInteger)tmp).compareTo (zero) != 0);
H A DBooleanAnd.java79 r = new Boolean (((BigInteger)tmpR).compareTo (zero) != 0);
/openjdk7/langtools/test/tools/javac/StringsInSwitch/
H A DStringSwitches.java47 * A zero length string and all strings consisting only of the
48 * zero character \u0000 have a hash code of zero. This method
84 String zero = "";
85 for(int i = 0; i <= 6; i++, zero += "\u0000") {
86 int result = zeroHashes(zero);
90 zero, result, i);
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDropTargetDropEvent.java271 static final private Point zero = new Point(0,0); field in class:DropTargetDropEvent
278 private Point location = zero;
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DCheckingEquality.java187 java.util.Enumeration zero; field in class:Thirdpsio
213 if (zero != other.zero) {
214 System.err.println("\nthirdpsio zero - expected " + zero +
215 " actual " + other.zero);
/openjdk7/jdk/test/com/sun/jdi/
H A DClassesByName2Test.java51 Thread zero = new Thread ("ZERO") {
78 zero.start();
81 zero.join();
82 System.out.println("zero joined");
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_c_ImageConvClearEdge.c163 mlib_d64 zero[4] = { 0, 0, 0, 0 }; local
167 return mlib_ImageConvClearEdge_Fp(dst, dx_l, dx_r, dy_t, dy_b, zero, cmask);
170 return mlib_ImageConvClearEdge(dst, dx_l, dx_r, dy_t, dy_b, (mlib_s32 *) zero, cmask);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXWrapperBase.java49 public void zero() { method in class:XWrapperBase
/openjdk7/hotspot/make/bsd/
H A DMakefile135 # BUILDARCH is set to "zero" for Zero builds. VARIANTARCH
164 # debugzero zero <os>_<arch>_zero/debug
165 # fastdebugzero zero <os>_<arch>_zero/fastdebug
166 # jvmgzero zero <os>_<arch>_zero/jvmg
167 # optimizedzero zero <os>_<arch>_zero/optimized
168 # profiledzero zero <os>_<arch>_zero/profiled
169 # productzero zero <os>_<arch>_zero/product
207 TARGETS_ZERO = $(addsuffix zero,$(TARGETS))
278 $(BUILDTREE) VARIANT=zero VARIANTARCH=$(VARIANTARCH)
318 cd $(OSNAME)_$(VARIANTARCH)_zero/$(patsubst %zero,
[all...]
/openjdk7/hotspot/make/linux/
H A DMakefile135 # BUILDARCH is set to "zero" for Zero builds. VARIANTARCH
164 # debugzero zero <os>_<arch>_zero/debug
165 # fastdebugzero zero <os>_<arch>_zero/fastdebug
166 # jvmgzero zero <os>_<arch>_zero/jvmg
167 # optimizedzero zero <os>_<arch>_zero/optimized
168 # profiledzero zero <os>_<arch>_zero/profiled
169 # productzero zero <os>_<arch>_zero/product
207 TARGETS_ZERO = $(addsuffix zero,$(TARGETS))
278 $(BUILDTREE) VARIANT=zero VARIANTARCH=$(VARIANTARCH)
318 cd $(OSNAME)_$(VARIANTARCH)_zero/$(patsubst %zero,
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaLookAndFeel.java321 final Object zero = new Integer(0);
406 "Button.textShiftOffset", zero, // radar 3308129 - aqua doesn't move images when pressed.
488 "FileChooser.cancelButtonMnemonic", zero,
489 "FileChooser.saveButtonMnemonic", zero,
490 "FileChooser.openButtonMnemonic", zero,
491 "FileChooser.updateButtonMnemonic", zero,
492 "FileChooser.helpButtonMnemonic", zero,
493 "FileChooser.directoryOpenButtonMnemonic", zero,
495 "FileChooser.lookInLabelMnemonic", zero,
496 "FileChooser.fileNameLabelMnemonic", zero,
[all...]

Completed in 139 milliseconds

12345