Searched refs:exp (Results 201 - 225 of 237) sorted by relevance

12345678910

/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DInstructionSyntax.java120 Element exp = new Element(pfx, att, num).deepFreeze();
121 abb.put(ins, exp);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeDisassembler.java144 } catch (Exception exp) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DObjectReader.java94 static void debugPrintStackTrace(Exception exp) { argument
96 StackTraceElement[] els = exp.getStackTrace();
273 } catch (Exception exp) {
276 debugPrintStackTrace(exp);
/openjdk7/jdk/src/share/classes/java/lang/
H A DStrictMath.java55 * {@code exp}, {@code log}, {@code log10},
196 public static native double exp(double a); method in class:StrictMath
1137 * result of <i>e</i><sup>x</sup> than {@code exp(x)}.
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/oql/
H A DOQLEngine.java57 } catch (Exception exp) {
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBuilder.hpp138 llvm::Value* exp();
H A DsharkIntrinsics.cpp124 do_Math_1to1(builder()->exp());
H A DsharkBuilder.cpp316 Value* SharkBuilder::exp() { function in class:SharkBuilder
317 return make_function("llvm.exp.f64", "d", "d");
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DPlotter.java768 int exp = (int)Math.log10((double)l);
769 long multiple = (long)Math.pow(10.0, exp);
775 int exp = (int)Math.log10((double)l);
776 long multiple = (long)Math.pow(10.0, exp);
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceClass.java2253 ClassDeclaration exp[] = f.field.getExceptions(env);
2254 for (int i = 0 ; i < exp.length ; i++) {
2255 tab.put(exp[i]);
2422 ClassDeclaration exp[] = f.field.getExceptions(env);
2423 int methodAtts = ((exp.length > 0) ? 1 : 0);
2482 if (exp.length > 0) {
2484 data.writeInt(2 + exp.length * 2);
2485 data.writeShort(exp.length);
2486 for (int i = 0 ; i < exp.length ; i++) {
2487 data.writeShort(tab.index(exp[
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DObjectHeap.java467 } catch (UnknownOopException exp) {
469 throw new RuntimeException(" UnknownOopException " + exp);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java293 } catch (Exception exp) {
294 throw new RuntimeException("can't determine target's VM version : " + exp.getMessage());
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftFilter.java286 return (Math.exp(x) - Math.exp(-x)) * 0.5;
H A DSoftAbstractResampler.java144 this.target_pitch = (float)Math.exp(
H A DSoftReverb.java458 dirty_roomsize = ((float) (Math.exp((value - 40) * 0.025)));
H A DSoftVoice.java669 filter_freq = 440.0 * Math.exp(
691 float gain = (float)Math.exp(
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DEffectUtils.java221 data[index] = (float) Math.exp(-distance / twoSigmaSquare) / sigmaRoot;
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DServerImpl.java623 String exp = headers.getFirst("Expect");
624 if (exp != null && exp.equalsIgnoreCase ("100-continue")) {
/openjdk7/jdk/src/share/classes/java/math/
H A DBigInteger.java1647 * The idea is to keep a running product of b1 = n^(high-order bits of exp)
1709 int[] exp = y.mag;
1715 int ebits = bitLength(exp, exp.length);
1717 if ((ebits != 17) || (exp[0] != 65537)) {
1772 int elen = exp.length;
1775 buf = (buf << 1) | (((exp[eIndex] & bitpos) != 0)?1:0);
1809 buf |= ((exp[eIndex] & bitpos) != 0) ? 1 : 0;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaInstanceKlass.java351 } catch (NoSuchFieldException exp) {}
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DVirtualMachineImpl.java282 } catch (Exception exp) {
283 re = new RuntimeException(exp.getMessage());
/openjdk7/hotspot/src/share/vm/opto/
H A Dloopnode.hpp869 // Return true if exp is a constant times an induction var
870 bool is_scaled_iv(Node* exp, Node* iv, int* p_scale);
872 // Return true if exp is a scaled induction var plus (or minus) constant
873 bool is_scaled_iv_plus_offset(Node* exp, Node* iv, int* p_scale, Node** p_offset, int depth = 0);
/openjdk7/jdk/test/java/lang/invoke/
H A DJavaDocExamplesTest.java219 static void assertEquals(Object exp, Object act) { argument
222 Assert.assertEquals(exp, act);
/openjdk7/jdk/make/common/
H A DProgram.gmk313 $(RM) $(OBJDIR)/$(PROGRAM).exp
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A Dxpath.cup1046 Expression exp = new EqualityExpr(Operators.EQ,
1050 predicates.addElement(new Predicate(exp));

Completed in 110 milliseconds

12345678910