Searched refs:mul (Results 1 - 25 of 79) sorted by relevance

1234

/openjdk10/jdk/test/java/net/Socket/
H A DAddressTest.java45 MulticastSocket mul = new MulticastSocket((SocketAddress) null);
117 mul.bind(addr);
128 mul.close();
129 mul = new MulticastSocket(new InetSocketAddress(0));
131 mul.joinGroup(addr, null);
142 mul.leaveGroup(addr, null);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/relaxng/
H A DRawTypeSetBuilder.java53 public static RawTypeSet build( RELAXNGCompiler compiler, DPattern contentModel, Multiplicity mul ) {
54 RawTypeSetBuilder builder = new RawTypeSetBuilder(compiler,mul);
62 private Multiplicity mul; field in class:RawTypeSetBuilder
71 public RawTypeSetBuilder(RELAXNGCompiler compiler,Multiplicity mul) { argument
72 this.mul = mul;
77 return new RawTypeSet(refs,mul);
98 mul = mul.makeRepeated();
103 mul
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/
H A DFold_Float01.java42 return mul();
63 public static float mul() { method in class:Fold_Float01
H A DFold_Double01.java42 return mul();
63 public static double mul() { method in class:Fold_Double01
H A DReduce_Double01.java42 return mul(12);
58 public static double mul(double x) { method in class:Reduce_Double01
H A DReduce_Float01.java42 return mul(12);
58 public static float mul(float x) { method in class:Reduce_Float01
H A DReduce_Long03.java42 return mul(5);
70 public static long mul(long x) { method in class:Reduce_Long03
H A DReduce_Long01.java42 return mul(12);
70 public static long mul(long x) { method in class:Reduce_Long01
H A DReduce_Int03.java42 return mul(5);
70 public static int mul(int x) { method in class:Reduce_Int03
H A DReduce_Long02.java42 return mul(12);
70 public static long mul(long x) { method in class:Reduce_Long02
H A DFold_Long01.java42 return mul();
72 public static long mul() { method in class:Fold_Long01
H A DFold_Int01.java42 return mul();
72 public static int mul() { method in class:Fold_Int01
H A DVN_Double02.java44 return mul(arg + 10);
72 public static double mul(double x) { method in class:VN_Double02
H A DVN_Float02.java44 return mul(arg + 10);
72 public static float mul(float x) { method in class:VN_Float02
H A DVN_Double01.java42 return mul(arg + 10);
64 public static double mul(double x) { method in class:VN_Double01
H A DVN_Float01.java42 return mul(arg + 10);
64 public static float mul(float x) { method in class:VN_Float01
H A DReduce_Int01.java42 return mul(12);
70 public static int mul(int x) { method in class:Reduce_Int01
H A DReduce_Int02.java42 return mul(12);
70 public static int mul(int x) { method in class:Reduce_Int02
H A DVN_Long03.java44 return mul(arg);
82 public static long mul(long x) { method in class:VN_Long03
H A DVN_Int01.java42 return mul(arg);
76 public static int mul(int x) { method in class:VN_Int01
/openjdk10/nashorn/test/script/basic/
H A DJDK-8058610.js31 function mul(x) { function
34 print("=== mul ===")
35 print(mul({foo: 2147483647, bar: 2147483647})); // 2^31
36 print(mul({foo: 17179869184, bar: 2147483647})); // 2^34
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/
H A DDerivedScaledInductionVariable.java25 import static org.graalvm.compiler.loop.MathUtil.mul;
77 return mul(graph(), base.initNode(), scale);
82 return mul(graph(), base.strideNode(), scale);
107 return mul(graph(), base.extremumNode(assumePositiveTripCount, stamp), IntegerConvertNode.convert(scale, stamp, graph()));
112 return mul(graph(), base.exitValueNode(), scale);
H A DMathUtil.java54 public static ValueNode mul(StructuredGraph graph, ValueNode v1, ValueNode v2) { method in class:MathUtil
61 return BinaryArithmeticNode.mul(graph, v1, v2);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/
H A DRawTypeSet.java62 public final Multiplicity mul; field in class:RawTypeSet
72 mul = m;
81 return mul.min.compareTo(BigInteger.ZERO) == 1;
134 collectionMode = mul.isAtMostOnce()?NOT_REPEATED:REPEATED_ELEMENT;
148 if(refs.size()>1 || !mul.isAtMostOnce())
161 if(mul.isZero())
170 if(mul.isZero())
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/types/
H A DBytecodeNumericOps.java62 Type mul(MethodVisitor method, int programPoint); method in interface:BytecodeNumericOps

Completed in 87 milliseconds

1234