Searched refs:exp (Results 176 - 200 of 237) sorted by relevance

12345678910

/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.hpp168 ErrorContext(int bci, FaultType fault, TypeOrigin type, TypeOrigin exp) : argument
169 _bci(bci), _fault(fault), _type(type), _expected(exp) {}
180 static ErrorContext bad_type(u2 bci, TypeOrigin type, TypeOrigin exp) { argument
181 return ErrorContext(bci, WRONG_TYPE, type, exp);
/openjdk7/jdk/src/share/classes/com/sun/tools/script/shell/
H A DMain.java304 } catch (Exception exp) {
305 exp.printStackTrace(getError());
337 } catch (Exception exp) {
338 exp.printStackTrace(getError());
/openjdk7/hotspot/test/compiler/7177917/
H A DTest7177917.java26 * Micro-benchmark for Math.pow() and Math.exp()
52 res += Math.exp(values[i]);
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftLowFrequencyOscillator/
H A DTestProcessControlLogic.java66 * Math.exp((freq - 6900.0) * (Math.log(2) / 1200.0));
/openjdk7/jdk/src/share/classes/java/lang/
H A DMath.java253 public static double exp(double a) { method in class:Math
254 return StrictMath.exp(a); // default impl. delegates to StrictMath
1168 * result of <i>e</i><sup>x</sup> than {@code exp(x)}.
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaObject.java74 } catch (IOException exp) {
75 throw new RuntimeException(exp);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/field/
H A DArrayField.java221 protected final JExpression castToImplTypeArray( JExpression exp ) {
222 return JExpr.cast(implType.array(), exp);
H A DAbstractField.java415 protected final JExpression castToImplType( JExpression exp ) {
417 return exp;
419 return JExpr.cast(implType,exp);
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSACore.java110 private static byte[] crypt(byte[] msg, BigInteger n, BigInteger exp) argument
113 BigInteger c = m.modPow(exp, n);
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DCompoundStatement.java73 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
81 vset = args[i].checkBlockStatement(newenv, newctx, vset, exp);
H A DThisExpression.java90 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
/openjdk7/hotspot/src/share/vm/opto/
H A Ddivnode.cpp724 int exp; local
727 if( frexp((double)f, &exp) != 0.5 ) return NULL;
730 if( exp < -126 || exp > 126 ) return NULL;
735 assert( frexp((double)reciprocal, &exp) == 0.5, "reciprocal should be power of 2" );
818 int exp; local
821 if( frexp(d, &exp) != 0.5 ) return NULL;
824 if( exp < -1021 || exp > 1022 ) return NULL;
829 assert( frexp(reciprocal, &exp)
[all...]
/openjdk7/jdk/test/java/math/BigInteger/
H A DBigIntegerTest.java388 BigInteger exp = fetchNumber(8).abs();
390 BigInteger z = base.modPow(exp, m);
391 BigInteger w = base.pow(exp.intValue()).mod(m);
397 System.err.println("exp is "+exp);
414 BigInteger exp = m.subtract(BigInteger.ONE);
421 BigInteger one = base.modPow(exp, m);
425 System.err.println("exp is "+exp);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DStep.java93 final Predicate exp = (Predicate)_predicates.elementAt(i);
94 exp.setParser(parser);
95 exp.setParent(this);
H A DParser.java1077 * @param exp - textual representation of the expression
1079 public Expression parseExpression(SyntaxTreeNode parent, String exp) { argument
1080 return (Expression)parseTopLevel(parent, "<EXPRESSION>"+exp, null);
1092 String exp = parent.getAttribute(attr);
1094 if ((exp.length() == 0) && (def != null)) exp = def;
1096 return (Expression)parseTopLevel(parent, "<EXPRESSION>"+exp, exp);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPath.java97 * @param exp the raw Expression object, which should not normally be null.
99 public void setExpression(Expression exp) argument
102 exp.exprSetParent(m_mainExp.exprGetParent()); // a bit bogus
103 m_mainExp = exp;
/openjdk7/jdk/test/java/lang/Math/
H A DExpm1Tests.java35 * The Taylor expansion of expxm1(x) = exp(x) -1 is
43 * For large values of x, expxm1(x) ~= exp(x)
91 // For values of y where exp(y) > 2^54, expm1(x) ~= exp(x).
92 // The least such y is ln(2^54) ~= 37.42994775023705; exp(x)
96 // exp implementation; the increments of d in the loop will be
99 failures += testExpm1CaseWithUlpDiff(d, StrictMath.exp(d), 2, null);
113 // Once exp(y) < 0.5 * ulp(1), expm1(y) ~= -1.0;
/openjdk7/jdk/src/share/native/java/lang/fdlibm/include/
H A Dfdlibm.h129 extern double exp __P((double));
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DParser.java239 IdentifierToken exp[], Node val) {
250 if (exp != null) {
251 expIds = new Identifier[exp.length];
252 for (int i = 0; i < exp.length; i++) {
253 expIds[i] = exp[i].id;
265 Identifier exp[], Node val) {
1683 IdentifierToken exp[] = null;
1693 exp = new IdentifierToken[v.size()];
1694 v.copyInto(exp);
1711 anames, exp, parseStatemen
236 defineField(long where, ClassDefinition c, String doc, int mod, Type t, IdentifierToken nm, IdentifierToken args[], IdentifierToken exp[], Node val) argument
263 defineField(long where, String doc, int mod, Type t, Identifier nm, Identifier args[], Identifier exp[], Node val) argument
[all...]
/openjdk7/jdk/src/share/classes/java/math/
H A DBigDecimal.java412 long exp = 0; // exponent
501 exp = exp * 10 + v;
508 exp = -exp;
510 if ((int)exp != exp) // overflow
518 // Adjust scale if exp is not zero.
519 if (exp != 0) { // had significant exponent
521 long adjustedScale = scl - exp;
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DAbstractDateTimeDV.java833 int exp;
838 exp = parseInt(d, eIndex + 2, d.length());
846 for (int i = 1; i < exp; ++i) {
869 exp = parseInt(d, eIndex + 1, d.length());
876 final int integerEnd = exp + 2;
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DShaders.h2763 exp r2.x, r1.x
2764 exp r2.y, r1.y
2765 exp r2.z, r1.z
2875 exp r1.x, r0.x
2876 exp r1.y, r0.y
2877 exp r1.z, r0.z
2980 exp r1.x, r0.x
2981 exp r1.y, r0.y
2982 exp r1.z, r0.z
3101 exp r
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdDebuggerLocal.java130 } catch (DebuggerException exp) {
131 lastException = exp;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxDebuggerLocal.java128 } catch (DebuggerException exp) {
129 lastException = exp;
/openjdk7/jdk/test/java/io/File/
H A DGetXSpace.java82 static void fail(String p, long exp, String cmp, long got) { argument
83 String s = String.format("'%s': %d %s %d", p, exp, cmp, got);

Completed in 141 milliseconds

12345678910