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

123

/openjdk10/hotspot/test/runtime/LocalVariableTable/
H A Dtestcase.jar ... java.lang.String[]) String[] args boolean b byte by byte by char c double d float f int i ...
H A DTestLVT.java7 * published by the Free Software Foundation.
48 .shouldContain("Duplicated LocalVariableTable attribute entry for 'by' in class file DuplicateLVT")
66 byte by = 0x42;
77 System.out.println("by=" + by);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DLayoutComparator.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
115 int ax = a.getX(), ay = a.getY(), bx = b.getX(), by = b.getY();
123 if (Math.abs(ay - by) < ROW_TOLERANCE) {
126 return (ay < by) ? -1 : 1;
132 if (Math.abs(ay - by) < ROW_TOLERANCE) {
135 return (ay < by) ? -1 : 1;
144 return (ay < by) ? -1 : ((ay > by) ? 1 : zOrder);
153 return (ay < by)
[all...]
/openjdk10/jdk/test/java/lang/instrument/
H A DDummyClassWithLVT.java7 * published by the Free Software Foundation.
28 byte by = 0x42;
37 System.out.println("by=" + by);
/openjdk10/hotspot/test/compiler/c1/
H A DTest8004051.java7 * published by the Free Software Foundation.
49 float bx, float by, float bw, float bh,
54 bx + " " + by + " " + bw + " " + bh);
47 fillPrimRect(float x, float y, float w, float h, Object rectTex, Object wrapTex, float bx, float by, float bw, float bh, float f1, float f2, float f3, float f4, float f5, float f6, float f7, float f8, int i1, int i2 ) argument
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/arrays/
H A DUndefinedArrayFilter.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
80 public ArrayData shiftLeft(final int by) { argument
81 super.shiftLeft(by);
82 undefined.shiftLeft(by, length());
87 public ArrayData shiftRight(final int by) { argument
88 super.shiftRight(by);
89 undefined.shiftRight(by, length());
H A DDeletedArrayFilter.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
79 public ArrayData shiftLeft(final int by) { argument
80 super.shiftLeft(by);
81 deleted.shiftLeft(by, length());
86 public ArrayData shiftRight(final int by) { argument
87 super.shiftRight(by);
88 deleted.shiftRight(by, length());
H A DDeletedRangeArrayFilter.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
104 public ArrayData shiftLeft(final int by) { argument
105 super.shiftLeft(by);
106 lo = Math.max(0, lo - by);
107 hi = Math.max(-1, hi - by);
113 public ArrayData shiftRight(final int by) { argument
114 super.shiftRight(by);
116 lo = Math.min(len, lo + by);
117 hi = Math.min(len - 1, hi + by);
[all...]
H A DIntArrayData.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
179 public ArrayData shiftLeft(final int by) { argument
180 if (by >= length()) {
183 System.arraycopy(array, by, array, 0, array.length - by);
185 setLength(Math.max(0, length() - by));
191 public ArrayData shiftRight(final int by) { argument
192 final ArrayData newData = ensure(by + length() - 1);
194 newData.shiftRight(by);
[all...]
H A DNumberArrayData.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
124 public ArrayData shiftLeft(final int by) { argument
125 if (by >= length()) {
128 System.arraycopy(array, by, array, 0, array.length - by);
130 setLength(Math.max(0, length() - by));
135 public ArrayData shiftRight(final int by) { argument
136 final ArrayData newData = ensure(by + length() - 1);
138 newData.shiftRight(by);
[all...]
H A DObjectArrayData.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
101 public ArrayData shiftLeft(final int by) { argument
102 if (by >= length()) {
105 System.arraycopy(array, by, array, 0, array.length - by);
107 setLength(Math.max(0, length() - by));
112 public ArrayData shiftRight(final int by) { argument
113 final ArrayData newData = ensure(by + length() - 1);
115 newData.shiftRight(by);
[all...]
H A DArrayFilter.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
71 public ArrayData shiftLeft(final int by) { argument
72 underlying.shiftLeft(by);
78 public ArrayData shiftRight(final int by) { argument
79 underlying = underlying.shiftRight(by);
H A DSparseArrayData.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
93 public ArrayData shiftLeft(final int by) { argument
94 underlying = underlying.shiftLeft(by);
99 final long newIndex = entry.getKey() - by;
113 setLength(Math.max(length() - by, 0));
119 public ArrayData shiftRight(final int by) { argument
123 if (len + by > maxDenseLength) {
125 final long tempLength = Math.max(0, maxDenseLength - by);
128 newSparseMap.put(i + by, underlyin
[all...]
H A DTypedArrayData.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
37 * The superclass of all ArrayData used by TypedArrays
101 public ArrayData shiftLeft(final int by) { argument
106 public ArrayData shiftRight(final int by) { argument
H A DByteBufferArrayData.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
85 public ArrayData shiftLeft(final int by) { argument
90 public ArrayData shiftRight(final int by) { argument
/openjdk10/hotspot/make/gensrc/
H A DGenerateSources.gmk7 # published by the Free Software Foundation. Oracle designates this
9 # by Oracle in the LICENSE file that accompanied this code.
51 REPLACEMENTS := separated by ;> => separated by $(PATH_SEP)> ; , \
/openjdk10/make/
H A DUpdateBuildDocs.gmk7 # published by the Free Software Foundation. Oracle designates this
9 # by Oracle in the LICENSE file that accompanied this code.
38 $(info No pandoc executable was detected by configure)
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/marlin/
H A DCurve.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
30 float ax, ay, bx, by, cx, cy, dx, dy; field in class:Curve
62 by = 3.0f * (y1 - 2.0f * y2 + y3);
68 dbx = 2.0f * bx; dby = 2.0f * by;
77 by = y1 - 2.0f * y2 + y3;
83 dbx = 2.0f * bx; dby = 2.0f * by;
90 return t * (t * (t * ay + by) + cy) + dy;
128 // by a constant, and this way we save a few multiplications).
150 // no OOB exception, because by no
[all...]
H A DDCurve.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
30 double ax, ay, bx, by, cx, cy, dx, dy; field in class:DCurve
62 by = 3.0d * (y1 - 2.0d * y2 + y3);
68 dbx = 2.0d * bx; dby = 2.0d * by;
77 by = y1 - 2.0d * y2 + y3;
83 dbx = 2.0d * bx; dby = 2.0d * by;
90 return t * (t * (t * ay + by) + cy) + dy;
128 // by a constant, and this way we save a few multiplications).
150 // no OOB exception, because by no
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/pisces/
H A DCurve.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
32 float ax, ay, bx, by, cx, cy, dx, dy; field in class:Curve
64 by = 3 * (y1 - 2 * y2 + y3);
70 dbx = 2 * bx; dby = 2 * by;
80 by = y1 - 2 * y2 + y3;
86 dbx = 2 * bx; dby = 2 * by;
93 return t * (t * (t * ay + by) + cy) + dy;
131 // by a constant, and this way we save a few multiplications).
153 // no OOB exception, because by no
[all...]
/openjdk10/jdk/test/java/lang/String/concat/
H A DImplicitStringConcat.java7 * published by the Free Software Foundation.
99 static byte by = 42; field in class:ImplicitStringConcat
124 test("foo42", s + by);
165 s = "foo"; s += by; test("foo42", s);
/openjdk10/hotspot/src/os_cpu/linux_arm/vm/
H A Dlinux_arm_64.s7 # published by the Free Software Foundation.
95 # x16 is count of bytes to copy aligned down by 16.
111 # x16 is aligned by 16 and less than 128
151 # Checking it explictly by aligning with "hlt 1000" instructions
184 # Increased x18 by 64, but stored 64 bytes, so x2 contains exact number of bytes to be stored
206 # x3 is count aligned down by 2*wordSize
421 # x16 is count of bytes to copy aligned down by 8.
437 # x16 is aligned by 8 and less than 64
477 # Checking it explictly by aligning with "hlt 1000" instructions
509 # Increased x18 by 3
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/font/
H A DStrikeMetrics.java7 * published by the Free Software Foundation. Oracle designates this
9 * by Oracle in the LICENSE file that accompanied this code.
67 /* The no-args constructor is used by CompositeStrike, which then
94 StrikeMetrics(float ax, float ay, float dx, float dy, float bx, float by, argument
101 baselineY = by;
165 * This is done ONCE by the strike so clients should not need
/openjdk10/hotspot/src/jdk.hotspot.agent/scripts/
H A Dstart-rmiregistry.bat9 REM published by the Free Software Foundation.
44 @echo for use by the debug server.
/openjdk10/langtools/test/tools/javac/api/
H A DT6345974.java7 * published by the Free Software Foundation.
73 byte by; field in class:T6345974

Completed in 141 milliseconds

123