Searched refs:size (Results 201 - 225 of 5301) sorted by relevance

1234567891011>>

/openjdk10/jdk/test/java/awt/FontClass/CreateFont/
H A DBigFont.java33 int size; field in class:BigFont.SizedInputStream
36 SizedInputStream(int size) { argument
37 this.size = size;
41 if (cnt < size) {
66 // Larger than size for a single font.
89 int size = getFileSize(fileName);
90 if (size == 0) {
93 int fontCnt = 1000 * 1000 * 1000 / size;
94 loadMany(size, fontCn
[all...]
/openjdk10/jdk/test/java/io/Serializable/typeStringBackRef/
H A DTypeStringBackRef.java41 if (bout.size() != 116) {
42 throw new Error("Wrong data length: " + bout.size());
/openjdk10/jdk/test/java/util/AbstractSequentialList/
H A DAddAll.java45 public int size() { method in class:FooList
46 return a.size();
/openjdk10/jdk/test/java/util/AbstractMap/
H A DToString.java27 * @summary toString method fails if size changes in between a call to size
51 public int size() { method in class:LyingMap
52 return super.size() + 1; // Lies, lies, all lies!
/openjdk10/jdk/test/sun/rmi/rmic/newrmic/equivalence/
H A DMyObjectImpl.java37 public MyObjectImpl(int c, int size) //MyObjectFactory mof, int c, int size) argument
42 this.data = new byte[size];
/openjdk10/jdk/test/javax/swing/MultiUIDefaults/
H A DTest6860438.java41 void check(Object key, Object value, boolean present, int size) { argument
43 check(UIManager.getDefaults().size() == size, "MultiUIDefaults.size()");
80 int size = UIManager.getDefaults().size();
82 // create a new value, size increases
84 check(KEY, VALUE, true, size + 1);
86 // override the value, size remains the same
88 check(KEY, VALUE, true, size
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/
H A DAMD64Binary.java67 private final OperandSize size; field in class:AMD64Binary.TwoOp
77 public TwoOp(AMD64RMOp opcode, OperandSize size, AllocatableValue result, AllocatableValue x, AllocatableValue y) { argument
80 this.size = size;
91 opcode.emit(masm, size, asRegister(result), asRegister(y));
94 opcode.emit(masm, size, asRegister(result), (AMD64Address) crb.asAddress(y));
106 private final OperandSize size; field in class:AMD64Binary.ThreeOp
112 public ThreeOp(AMD64RRMOp opcode, OperandSize size, AllocatableValue result, AllocatableValue x, AllocatableValue y) { argument
115 this.size = size;
140 private final OperandSize size; field in class:AMD64Binary.CommutativeTwoOp
146 CommutativeTwoOp(AMD64RMOp opcode, OperandSize size, AllocatableValue result, AllocatableValue x, AllocatableValue y) argument
182 private final OperandSize size; field in class:AMD64Binary.CommutativeThreeOp
188 CommutativeThreeOp(AMD64RRMOp opcode, OperandSize size, AllocatableValue result, AllocatableValue x, AllocatableValue y) argument
216 private final OperandSize size; field in class:AMD64Binary.ConstOp
222 ConstOp(AMD64BinaryArithmetic opcode, OperandSize size, AllocatableValue result, AllocatableValue x, int y) argument
226 ConstOp(AMD64MIOp opcode, OperandSize size, AllocatableValue result, AllocatableValue x, int y) argument
251 private final OperandSize size; field in class:AMD64Binary.DataTwoOp
259 DataTwoOp(AMD64RMOp opcode, OperandSize size, AllocatableValue result, AllocatableValue x, JavaConstant y) argument
263 DataTwoOp(AMD64RMOp opcode, OperandSize size, AllocatableValue result, AllocatableValue x, JavaConstant y, int alignment) argument
290 private final OperandSize size; field in class:AMD64Binary.DataThreeOp
298 DataThreeOp(AMD64RRMOp opcode, OperandSize size, AllocatableValue result, AllocatableValue x, JavaConstant y) argument
302 DataThreeOp(AMD64RRMOp opcode, OperandSize size, AllocatableValue result, AllocatableValue x, JavaConstant y, int alignment) argument
328 private final OperandSize size; field in class:AMD64Binary.MemoryTwoOp
336 MemoryTwoOp(AMD64RMOp opcode, OperandSize size, AllocatableValue result, AllocatableValue x, AMD64AddressValue y, LIRFrameState state) argument
381 private final OperandSize size; field in class:AMD64Binary.MemoryThreeOp
389 MemoryThreeOp(AMD64RRMOp opcode, OperandSize size, AllocatableValue result, AllocatableValue x, AMD64AddressValue y, LIRFrameState state) argument
433 private final OperandSize size; field in class:AMD64Binary.RMIOp
439 RMIOp(AMD64RMIOp opcode, OperandSize size, AllocatableValue result, AllocatableValue x, int y) argument
[all...]
H A DAMD64ClearRegisterOp.java42 private final OperandSize size; field in class:AMD64ClearRegisterOp
46 public AMD64ClearRegisterOp(OperandSize size, AllocatableValue result) { argument
48 this.op = XOR.getRMOpcode(size);
49 this.size = size;
55 op.emit(masm, size, asRegister(result), asRegister(result));
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/
H A DHeaderContainer.java80 public void setKlassesGotSize(int size) { argument
81 this.container.putIntAt(3 * 4, size);
84 public void setMetadataGotSize(int size) { argument
85 this.container.putIntAt(4 * 4, size);
88 public void setOopGotSize(int size) { argument
89 this.container.putIntAt(5 * 4, size);
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/site/
H A DCall.java41 * The size of the call instruction.
43 public final int size; field in class:Call
52 public Call(InvokeTarget target, int pcOffset, int size, boolean direct, DebugInfo debugInfo) { argument
54 this.size = size;
66 if (this.size == that.size && this.direct == that.direct && Objects.equals(this.target, that.target)) {
/openjdk10/hotspot/src/share/vm/gc/cms/
H A DfreeChunk.cpp38 void FreeChunk::mangleAllocated(size_t size) { argument
41 assert(size >= MinChunkSize, "smallest size of object");
42 // we can't assert that _size == size because this may be an
48 Copy::fill_to_words(addr + hdr, size - hdr, baadbabeHeapWord);
55 assert(sz >= MinChunkSize, "smallest size of object");
56 assert(sz == size(), "just checking");
66 assert(size() == nextFC->size(), "wrong size");
[all...]
/openjdk10/hotspot/src/share/vm/memory/
H A DmetadataFactory.hpp56 int size = data->size(); local
57 loader_data->metaspace_non_null()->deallocate((MetaWord*)data, size, false);
66 int size = md->size(); local
71 loader_data->metaspace_non_null()->deallocate((MetaWord*)md, size, md->is_klass());
H A DresourceArea.cpp37 extern char* resource_allocate_bytes(size_t size, AllocFailType alloc_failmode) { argument
38 return Thread::current()->resource_area()->allocate_bytes(size, alloc_failmode);
40 extern char* resource_allocate_bytes(Thread* thread, size_t size, AllocFailType alloc_failmode) { argument
41 return thread->resource_area()->allocate_bytes(size, alloc_failmode);
48 extern void resource_free_bytes( char *old, size_t size ) {
49 Thread::current()->resource_area()->Afree(old, size);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/
H A DGifDataContentHandler.java89 int size = buf.length;
90 if (size < 256*1024)
91 size += size;
93 size += 256*1024;
94 byte tbuf[] = new byte[size];
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/fastinfoset/
H A DFastInfosetSerializer.java83 * The property name to be used for getting and setting the buffer size
87 "http://jvnet.org/fastinfoset/parser/properties/buffer-size";
106 * The default minimum size of the character content chunks,
112 * The default maximum size of the character content chunks,
118 * The default value for limit on the size of indexed Map for attribute values
124 * The default minimum size of the attribute values, that will be indexed.
129 * The default maximum size of the attribute values, that will be indexed.
134 * The default value for limit on the size of indexed Map for attribute values
231 * Gets the minimum size of character content chunks
234 * @return The minimum character content chunk size
244 setMinCharacterContentChunkSize(int size) argument
260 setMaxCharacterContentChunkSize(int size) argument
278 setCharacterContentChunkMapMemoryLimit(int size) argument
294 setMinAttributeValueSize(int size) argument
310 setMaxAttributeValueSize(int size) argument
327 setAttributeValueMapMemoryLimit(int size) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DSpring.java208 protected int size = UNSET; field in class:Spring.AbstractSpring
211 return size != UNSET ? size : getPreferredValue();
214 public final void setValue(int size) { argument
215 if (this.size == size) {
218 if (size == UNSET) {
221 setNonClearValue(size);
226 size = UNSET;
229 protected void setNonClearValue(int size) { argument
292 setValue(int size) argument
491 setNonClearValue(int size) argument
508 setNonClearValue(int size) argument
[all...]
/openjdk10/jdk/src/demo/share/java2d/J2DBench/src/j2dbench/tests/
H A DMiscTests.java86 int size = gctx.size;
93 g.copyArea(x, y, size, size, dx, dy);
99 g.copyArea(x, y, size, size, dx, dy);
/openjdk10/jdk/src/java.management/share/classes/sun/management/counter/perf/
H A DPerfDataType.java44 private final int size; field in class:PerfDataType
68 public int size() { method in class:PerfDataType
69 return size;
88 private PerfDataType(String name, String c, int size) { argument
90 this.size = size;
/openjdk10/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DUnsyncByteArrayOutputStream.java37 private int size = INITIAL_SIZE; field in class:UnsyncByteArrayOutputStream
49 if (newPos > size) {
61 if (newPos > size) {
73 if (newPos > size) {
90 int newSize = size;
101 size = newSize;
/openjdk10/jdk/src/jdk.pack/share/native/common-unpack/
H A Dutils.h28 void* must_malloc(size_t size);
30 #define mtrace(c, ptr, size)
32 void mtrace(char c, void* ptr, size_t size);
37 #define PSIZE_MAX (OVERFLOW/2) /* normal size limit */
39 inline size_t scale_size(size_t size, size_t scale) { argument
40 return (size > PSIZE_MAX / scale) ? OVERFLOW : size * scale;
/openjdk10/jdk/test/java/awt/image/DrawImage/
H A DIncorrectClipXorModeSurface2Surface.java79 for (int size : SIZES) {
80 at = AffineTransform.getScaleInstance(size, size);
87 VolatileImage source = getVolatileImage(gc, size);
88 VolatileImage target = getVolatileImage(gc, size);
98 g2d.fillRect(0, 0, size, size);
107 g2d.fillRect(0, 0, size, size);
121 BufferedImage goldS = getSourceGold(gc, size);
142 getSourceGold(GraphicsConfiguration gc, int size) argument
152 getTargetGold(GraphicsConfiguration gc, int size) argument
162 getVolatileImage(GraphicsConfiguration gc, int size) argument
[all...]
/openjdk10/jdk/test/javax/swing/JScrollPane/
H A DTest6526631.java62 Dimension size = this.frame.getSize();
63 size.width += offset;
64 this.frame.setSize(size);
91 int size = viewport.getViewSize().width;
92 if (size != scroller.getMaximum()) {
95 int pos = size - extent - value;
/openjdk10/jdk/test/javax/swing/border/
H A DTest6910490.java49 Dimension size = new Dimension(getWidth() / 2, getHeight());
52 create("Color", size, new MatteBorder(insets, RED)),
53 create("Icon", size, new MatteBorder(insets, this)));
54 pane.setDividerLocation(size.width - pane.getDividerSize() / 2);
58 private JScrollPane create(String name, Dimension size, MatteBorder border) { argument
60 button.setPreferredSize(size);
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/jshell/execution/
H A DMultiplexingOutputStream.java61 int size = Math.min(PACKET_SIZE, len);
62 byte[] data = new byte[name.length + 1 + size + 1];
65 data[name.length + 1] = (byte) size;
66 System.arraycopy(b, off + i, data, name.length + 2, size);
68 i += size;
69 len -= size;
/openjdk10/jdk/test/java/util/Arrays/
H A DSortingNearlySortedPrimitive.java128 // DualPivotQuicksort.QUICKSORT_THRESHOLD <= size - 1
145 public void testShapes(String testName, IntFunction<int[]> dataMethod, int size) { argument
146 int[] intSourceArray = dataMethod.apply(size);
251 private int[] zeroHiData(int size) { argument
252 int[] array = new int[size];
254 int threeQuarters = (int) (size * 0.75);
259 for (int i = threeQuarters; i < size; i++) {
267 private int[] hiZeroLowData(int size) { argument
268 int[] array = new int[size];
270 int oneThird = size /
284 highFlatLowData(int size) argument
303 identicalData(int size) argument
314 endLessThanData(int size) argument
325 sortedReversedSortedData(int size) argument
340 pairFlipData(int size) argument
[all...]

Completed in 281 milliseconds

1234567891011>>