Searched refs:ops (Results 1 - 25 of 94) sorted by relevance

1234

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/
H A DArithmeticStamp.java35 private final ArithmeticOpTable ops; field in class:ArithmeticStamp
37 protected ArithmeticStamp(ArithmeticOpTable ops) { argument
38 this.ops = ops;
42 return ops;
60 result = prime * result + ops.hashCode();
72 assert Objects.equals(ops, ((ArithmeticStamp) obj).ops) : ops + " vs. " + ((ArithmeticStamp) obj).ops;
[all...]
H A DPrimitiveStamp.java35 protected PrimitiveStamp(int bits, ArithmeticOpTable ops) { argument
36 super(ops);
/openjdk10/jdk/src/java.base/share/classes/sun/nio/ch/
H A DSelectionKeyImpl.java81 public SelectionKey interestOps(int ops) { argument
83 return nioInterestOps(ops);
94 public void nioReadyOps(int ops) { argument
95 readyOps = ops;
102 public SelectionKey nioInterestOps(int ops) { argument
103 if ((ops & ~channel().validOps()) != 0)
105 channel.translateAndSetInterestOps(ops, this);
106 interestOps = ops;
H A DSelChImpl.java46 * Adds the specified ops if present in interestOps. The specified
47 * ops are turned on without affecting the other ops.
53 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk); argument
56 * Sets the specified ops if present in interestOps. The specified
57 * ops are turned on, and all other ops are turned off.
63 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk); argument
65 void translateAndSetInterestOps(int ops, SelectionKeyImpl sk); argument
H A DServerSocketChannelImpl.java317 public boolean translateReadyOps(int ops, int initialOps, argument
323 if ((ops & Net.POLLNVAL) != 0) {
330 if ((ops & (Net.POLLERR | Net.POLLHUP)) != 0) {
336 if (((ops & Net.POLLIN) != 0) &&
344 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument
345 return translateReadyOps(ops, sk.nioReadyOps(), sk);
348 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) { argument
349 return translateReadyOps(ops, 0, sk);
377 public void translateAndSetInterestOps(int ops, SelectionKeyImpl sk) { argument
380 // Translate ops
[all...]
H A DSelectorImpl.java124 public void putEventOps(SelectionKeyImpl sk, int ops) { } argument
127 int ops,
137 k.interestOps(ops);
126 register(AbstractSelectableChannel ch, int ops, Object attachment) argument
/openjdk10/jdk/src/java.desktop/share/native/libawt/java2d/
H A DSurfaceData.h183 * The ops parameter should be a pointer to the ops object upon which
253 SurfaceDataOps *ops,
268 * The ops parameter should be a pointer to the ops object upon which
296 SurfaceDataOps *ops,
305 * Callers should use the "SurfaceData_InvokeRelease(env, ops)" macro
315 * The ops parameter should be a pointer to the ops object upon which
336 SurfaceDataOps *ops,
[all...]
H A DSurfaceData.c114 SurfaceDataOps *ops; local
119 ops = (SurfaceDataOps *)JNU_GetLongFieldAsPtr(env, sData, pDataID);
120 if (ops == NULL) {
127 JNU_ThrowNullPointerException(env, "native ops missing");
131 SurfaceData_InvokeSetup(env, ops);
133 return ops;
149 SurfaceData_SetOps(JNIEnv *env, jobject sData, SurfaceDataOps *ops) argument
152 JNU_SetLongFieldFromPtr(env, sData, pDataID, ops);
156 ptr_to_jlong(ops));
158 JNU_ThrowInternalError(env, "Attempting to set SurfaceData ops twic
236 SurfaceDataOps *ops = malloc(opsSize); local
247 SurfaceData_DisposeOps(JNIEnv *env, jlong ops) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libawt/awt/image/
H A DDataBufferNative.c37 SurfaceDataOps *ops, int lockFlag)
39 if (ops == NULL) {
47 if (ops->Lock(env, ops, lockInfo, lockFlag) != SD_SUCCESS) {
50 ops->GetRasInfo(env, ops, lockInfo);
57 SurfaceData_InvokeRelease(env, ops, lockInfo);
58 SurfaceData_InvokeUnlock(env, ops, lockInfo);
74 SurfaceDataOps *ops; local
77 ops
35 DBN_GetPixelPointer(JNIEnv *env, jint x, int y, SurfaceDataRasInfo *lockInfo, SurfaceDataOps *ops, int lockFlag) argument
115 SurfaceDataOps *ops; local
[all...]
/openjdk10/jdk/test/java/util/stream/boottest/java.base/java/util/stream/
H A DFlagOpTest.java42 TestFlagPassThroughOp<Integer>[] ops = new TestFlagPassThroughOp[3];
43 ops[0] = new TestFlagPassThroughOp<>();
44 ops[1] = new TestFlagPassThroughOp<>();
45 ops[2] = new TestFlagPassThroughOp<>();
47 ops[0].set(null, ops[1]);
48 ops[1].set(ops[0], ops[2]);
49 ops[
[all...]
/openjdk10/jdk/src/java.base/windows/classes/sun/nio/ch/
H A DSourceChannelImpl.java74 public boolean translateReadyOps(int ops, int initialOps, argument
80 if ((ops & Net.POLLNVAL) != 0)
83 if ((ops & (Net.POLLERR | Net.POLLHUP)) != 0) {
89 if (((ops & Net.POLLIN) != 0) &&
97 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument
98 return translateReadyOps(ops, sk.nioReadyOps(), sk);
101 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) { argument
102 return translateReadyOps(ops, 0, sk);
105 public void translateAndSetInterestOps(int ops, SelectionKeyImpl sk) { argument
106 if ((ops
[all...]
H A DSinkChannelImpl.java75 public boolean translateReadyOps(int ops, int initialOps, argument
81 if ((ops & Net.POLLNVAL) != 0)
84 if ((ops & (Net.POLLERR | Net.POLLHUP)) != 0) {
90 if (((ops & Net.POLLOUT) != 0) &&
98 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument
99 return translateReadyOps(ops, sk.nioReadyOps(), sk);
102 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) { argument
103 return translateReadyOps(ops, 0, sk);
106 public void translateAndSetInterestOps(int ops, SelectionKeyImpl sk) { argument
107 if ((ops
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/nio/channels/
H A DSelectableChannel.java162 * interest set will have been changed to {@code ops}, as if by invoking
170 * The key's initial interest set will be {@code ops} and its attachment
188 * @param ops
212 * If a bit in the {@code ops} set does not correspond to an
219 public abstract SelectionKey register(Selector sel, int ops, Object att) argument
224 // if (channel found) { set interest ops -- may block in selector;
238 * <blockquote>{@code sc.register(sel, ops)}</blockquote>
244 * register(sel, ops, null)}</blockquote>
249 * @param ops
270 * If a bit in {@code ops} doe
277 register(Selector sel, int ops) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DLIRInsertionBuffer.java44 * The lir list where ops of this buffer should be inserted later (null when uninitialized).
50 * index into lir list where "count" ops should be inserted indexAndCount[i * 2 + 1]: the number
51 * of ops to be inserted at index
59 private final List<LIRInstruction> ops; field in class:LIRInsertionBuffer
63 ops = new ArrayList<>(4);
71 assert indexAndCountSize == 0 && ops.size() == 0;
99 ops.add(op);
109 if (ops.size() > 0) {
112 for (int i = 0; i < ops.size(); i++) {
115 // insert ops fro
[all...]
H A DLIR.java185 ArrayList<LIRInstruction> ops = lir.getLIRforBlock(block);
186 if (ops.size() == 0) {
189 assert ops.get(0) instanceof LabelOp : String.format("Not a Label %s (Block %s)", ops.get(0).getClass(), block);
192 int lastIndex = ops.size() - 1;
193 for (LIRInstruction op : ops.subList(0, lastIndex)) {
197 assert opWithExceptionEdge == null : "multiple ops with an exception edge not allowed";
204 LIRInstruction end = ops.get(lastIndex);
/openjdk10/jdk/src/java.base/unix/classes/sun/nio/ch/
H A DSourceChannelImpl.java115 public boolean translateReadyOps(int ops, int initialOps, argument
121 if ((ops & Net.POLLNVAL) != 0)
124 if ((ops & (Net.POLLERR | Net.POLLHUP)) != 0) {
130 if (((ops & Net.POLLIN) != 0) &&
138 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument
139 return translateReadyOps(ops, sk.nioReadyOps(), sk);
142 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) { argument
143 return translateReadyOps(ops, 0, sk);
146 public void translateAndSetInterestOps(int ops, SelectionKeyImpl sk) { argument
147 if (ops
[all...]
H A DSinkChannelImpl.java115 public boolean translateReadyOps(int ops, int initialOps, argument
121 if ((ops & Net.POLLNVAL) != 0)
124 if ((ops & (Net.POLLERR | Net.POLLHUP)) != 0) {
130 if (((ops & Net.POLLOUT) != 0) &&
138 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument
139 return translateReadyOps(ops, sk.nioReadyOps(), sk);
142 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) { argument
143 return translateReadyOps(ops, 0, sk);
146 public void translateAndSetInterestOps(int ops, SelectionKeyImpl sk) { argument
147 if (ops
[all...]
/openjdk10/jdk/test/javax/management/mxbean/
H A DOperationImpactTest.java52 MBeanOperationInfo[] ops = mbi.getOperations();
53 if (ops.length != 1)
54 throw new Exception("TEST FAILED: several ops: " + mbi);
55 MBeanOperationInfo op = ops[0];
H A DMBeanOperationInfoTest.java59 MBeanOperationInfo[] ops = mbi.getOperations();
60 for (MBeanOperationInfo op : ops) {
/openjdk10/jdk/test/javax/management/Introspector/
H A DIsMethodTest.java78 MBeanOperationInfo[] ops = mbi.getOperations();
79 if (ops.length == 4)
85 for (int i = 0; i < ops.length; i++) {
86 System.out.println(" " + ops[i].getReturnType() + " " +
87 ops[i].getName());
H A DClassLeakTest.java90 MBeanOperationInfo[] ops = info.getOperations();
91 if (ops.length != 1 || !ops[0].getName().equals("bogus")
92 || ops[0].getSignature().length > 0
93 || ops[0].getImpact() != MBeanOperationInfo.UNKNOWN
94 || !ops[0].getReturnType().equals("void")) {
95 System.out.println("TEST FAILED: unexpected MBeanInfo ops");
/openjdk10/jdk/src/java.desktop/unix/classes/sun/java2d/jules/
H A DJulesPathBuf.java46 GrowableByteArray ops = new GrowableByteArray(1, 128); field in class:JulesPathBuf
86 xTrapArray = tesselateFillNative(points.getArray(), ops.getArray(),
87 points.getSize(), ops.getSize(),
117 tesselateStrokeNative(points.getArray(), ops.getArray(),
118 points.getSize(), ops.getSize(),
157 ops.addByte(CAIRO_PATH_OP_MOVE_TO);
166 ops.addByte(CAIRO_PATH_OP_LINE_TO);
192 ops.addByte(CAIRO_PATH_OP_CURVE_TO);
207 ops.addByte(CAIRO_PATH_OP_CURVE_TO);
222 ops
233 tesselateStrokeNative(int[] pointArray, byte[] ops, int pointCnt, int opCnt, int[] xTrapArray, int xTrapArrayLength, double lineWidth, int lineCap, int lineJoin, double miterLimit, double[] dashArray, int dashCnt, double offset, double m00, double m01, double m02, double m10, double m11, double m12, int clipLowX, int clipLowY, int clipWidth, int clipHeight) argument
245 tesselateFillNative(int[] pointArray, byte[] ops, int pointCnt, int opCnt, int[] xTrapArray, int xTrapArrayLength, int windingRule, int clipLowX, int clipLowY, int clipWidth, int clipHeight) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/native/common/java2d/opengl/
H A DOGLSurfaceData.h281 SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo,
284 SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo);
286 SurfaceDataOps *ops, SurfaceDataRasInfo *pRasInfo);
287 void OGLSD_Dispose(JNIEnv *env, SurfaceDataOps *ops);
/openjdk10/langtools/test/tools/javac/generics/inference/6650759/
H A DT6650759f.java48 Iterable<D> ops = (true) ? Collections.singletonList(d) : m(d);
/openjdk10/jdk/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/
H A DSctpServerChannelImpl.java309 * Translates native poll revent ops into a ready operation ops
311 private boolean translateReadyOps(int ops, int initialOps, argument
317 if ((ops & Net.POLLNVAL) != 0) {
324 if ((ops & (Net.POLLERR | Net.POLLHUP)) != 0) {
330 if (((ops & Net.POLLIN) != 0) &&
339 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) { argument
340 return translateReadyOps(ops, sk.nioReadyOps(), sk);
344 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) { argument
345 return translateReadyOps(ops,
349 translateAndSetInterestOps(int ops, SelectionKeyImpl sk) argument
[all...]

Completed in 137 milliseconds

1234