Searched refs:size (Results 426 - 450 of 5301) sorted by relevance

<<11121314151617181920>>

/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DDictionary.java63 public abstract int size(); method in class:Dictionary
/openjdk10/jdk/src/java.desktop/unix/native/common/awt/
H A Dawt_Font.h32 jfieldID size; member in struct:FontIDs
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/
H A DAPOptions.java68 public APOptions(int size, byte[] data) throws Asn1Exception { argument
69 super(size, data);
70 if ((size > data.length * BITS_PER_UNIT) || (size > Krb5.AP_OPTS_MAX + 1)) {
/openjdk10/jdk/test/java/awt/Frame/FrameSize/
H A DTestFrameSize.java39 * Test fails if size of window is wrong
50 Dimension size = window.getSize();
54 System.out.println(" size: " + size);
58 size.width - insets.left - insets.right,
59 size.height - insets.top - insets.bottom);
71 throw new RuntimeException("Incorrect widow size");
74 // pack() guarantees to preserve the size of the client area after
77 System.out.println("Client size before showing: " + clientSize1);
90 System.out.println("Client size afte
[all...]
/openjdk10/jdk/test/java/io/DataOutputStream/
H A DCounterOverflow.java43 if (dataOut.size() < 0) {
/openjdk10/jdk/test/java/net/HttpCookie/
H A DCookieNegativeMaxAge.java48 if (cookies.size() == 1) {
/openjdk10/jdk/test/java/security/Security/ClassLoaderDeadlock/provider/
H A DHashProvider.java41 System.out.println("Adding algorithms from provider " + name + " (" + p.size() + ")");
/openjdk10/jdk/test/java/nio/channels/SocketChannel/
H A DShortWrite.java81 int size)
84 System.out.println("write(ByteBuffer), size=" + size);
87 ByteBuffer buf = ByteBuffer.allocate(size);
91 Future<Long> result = pool.submit(new Reader(sink, size));
95 if (n != size)
116 for (int size: sizes)
117 System.out.print(size + " ");
124 int size = sizes[i];
125 ByteBuffer buf = ByteBuffer.allocate(size);
78 test1(ExecutorService pool, SocketChannel source, SocketChannel sink, int size) argument
[all...]
/openjdk10/jdk/test/java/util/jar/JarInputStream/
H A DScanSignedJar.java66 long size = entry.getSize();
71 System.out.println("[unsigned]\t" + name + "\t(" + size +
79 name + "\t(" + size + " bytes)");
81 System.out.println("[*ERROR*]\t" + name + "\t(" + size +
/openjdk10/jdk/test/sun/security/rsa/
H A DSpecTest.java29 * exponent. Only key size 1024 is tested with RSAKeyGenParameterSpec.F0 (3).
89 int size = 0;
92 size = Integer.parseInt(args[0]);
100 System.out.println("Running test with key size: " + size
104 kpg1.initialize(new RSAKeyGenParameterSpec(size, publicExponent));
/openjdk10/langtools/test/tools/sjavac/util/
H A DOptionTestUtil.java53 if (expected.size() != actual.size())
54 throw new AssertionError("Expected locs of length " + expected.size() + " but got something of size " + actual.size());
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/arrays/
H A DReverseJavaListIterator.java41 this.index = list.size() - 1;
/openjdk10/test/lib/jdk/test/lib/management/
H A DInputArguments.java39 return args.toArray(new String[args.size()]);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DLIRInsertionBuffer.java71 assert indexAndCountSize == 0 && ops.size() == 0;
109 if (ops.size() > 0) {
110 int n = lir.size();
111 // increase size of instructions list
112 for (int i = 0; i < ops.size(); i++) {
116 int opIndex = ops.size() - 1;
119 int toIndex = lir.size() - 1;
174 assert sum == ops.size() : "wrong total sum";
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DJavaVFrame.java83 // for (int index = 0; index < list.size(); index++) {
156 Assert.that(locs.size() == otherLocs.size(), "sanity check");
158 for (int i = 0; i < locs.size(); i++) {
173 Assert.that(exprs.size() == otherExprs.size(), "sanity check");
175 for (int i = 0; i < exprs.size(); i++) {
193 for (int index = 0; index < values.size(); index++) {
/openjdk10/hotspot/test/native/utilities/
H A Dtest_chunkedList.cpp38 ASSERT_EQ((size_t) 0, buffer.size());
46 ASSERT_EQ((size_t) ChunkedListT::BufferSize, buffer.size());
53 ASSERT_EQ((size_t) i, buffer.size());
55 ASSERT_EQ((size_t) (i + 1), buffer.size());
63 ASSERT_EQ((size_t) 0, buffer.size());
69 ASSERT_EQ((size_t) 0, buffer.size());
75 ASSERT_EQ((size_t) 0, buffer.size());
/openjdk10/jdk/src/java.base/share/classes/sun/net/ftp/
H A DFtpDirEntry.java33 * parsing the output. It will typically contain the name, type, size, last modification
59 private long size = -1; field in class:FtpDirEntry
137 * Returns the size of the remote file as it was returned by the FTP
140 * @return the size of the file or -1 if that information is not available.
143 return size;
147 * Sets the size of that file. Intended mostly to be used from inside an
150 * @param size The size, in bytes, of that file. or -1 if unknown.
153 public FtpDirEntry setSize(long size) { argument
154 this.size
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DDefaultComboBoxModel.java105 return objects.size();
110 if ( index >= 0 && index < objects.size() )
130 fireIntervalAdded(this,objects.size()-1, objects.size()-1);
131 if ( objects.size() == 1 && selectedObject == null && anObject != null ) {
170 if ( objects.size() > 0 ) {
172 int lastIndex = objects.size() - 1;
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/jgss/
H A DGSSToken.java87 * @param size the number of bytes to read from the array.
90 public static final int readLittleEndian(byte[] data, int pos, int size) { argument
93 while (size > 0) {
97 size--;
102 public static final int readBigEndian(byte[] data, int pos, int size) { argument
104 int shifter = (size-1)*8;
105 while (size > 0) {
109 size--;
/openjdk10/jdk/src/java.desktop/windows/native/libjsound/
H A DPLATFORM_API_WinOS_Util.c88 int MIDI_WinCreateLongBufferQueue(MidiDeviceHandle* handle, int count, int size, UBYTE* preAllocatedMem) { argument
98 sysex->size = size;
101 if (!preAllocatedMem && size > 0) {
102 preAllocatedMem = (UBYTE*) malloc(count*size);
116 sysex->header[i].dwBufferLength = size;
119 dataPtr += size;
/openjdk10/jdk/test/java/nio/channels/FileChannel/
H A DTransfers.java121 int sz = (int)fc.size();
177 protected final int size; field in class:Transfers.Source
181 Source(int size, long seed, String name) { argument
182 this.size = size;
204 FileSource(int size, long seed) throws IOException { argument
205 super(size, seed, "FileChannel");
210 writeRandomBytes(seed, fc, 0, size);
218 if (fc.position() != size)
220 + fc.position() + " (expected " + size
235 UserSource(int size, long seed) argument
275 protected final int size; field in class:Transfers.Target
279 Target(int size, long seed, String name) argument
302 FileTarget(int size, long seed) argument
331 UserTarget(int size, long seed) argument
[all...]
/openjdk10/hotspot/src/share/vm/gc/cms/
H A DcompactibleFreeListSpace.cpp136 HeapWord* CompactibleFreeListSpace::forward(oop q, size_t size, argument
142 assert(adjustObjectSize(size) == cp->space->adjust_object_size_v(size),
144 size_t adjusted_size = adjustObjectSize(size);
149 // Can't leave a nonzero size, residual fragment smaller than MinChunkSize
165 // (i.e., cp->space may no longer be "this" so adjust the size again.
168 adjusted_size = cp->space->adjust_object_size_v(size);
214 // to map directly from the object size to the array element.
225 return adjustObjectSize(oop(addr)->size());
230 assert(_indexedFreeList[i].size()
835 const size_t size = block_size(blk_start_addr); local
869 size_t size; local
1078 size_t size = 0; local
1098 par_allocate(size_t size) argument
1104 getChunkFromSmallLinearAllocBlockRemainder(size_t size) argument
1108 allocate(size_t size) argument
1136 allocate_adaptive_freelists(size_t size) argument
1275 allocateScratch(size_t size) argument
1327 getChunkFromSmallLinearAllocBlock(size_t size) argument
1399 getChunkFromLinearAllocBlockRemainder( LinearAllocBlock* blk, size_t size) argument
1430 getChunkFromIndexedFreeList(size_t size) argument
1444 getChunkFromIndexedFreeListHelper(size_t size, bool replenish) argument
1535 getChunkFromDictionary(size_t size) argument
1552 getChunkFromDictionaryExact(size_t size) argument
1584 size_t size = chunk->size(); local
1601 size_t size = fc->size(); local
1618 addChunkToFreeListsAtEndRecordingStats( HeapWord* chunk, size_t size) argument
1654 addChunkToFreeLists(HeapWord* chunk, size_t size) argument
1672 addChunkAndRepairOffsetTable(HeapWord* chunk, size_t size, bool coalesced) argument
1687 size_t size = fc->size(); local
1701 size_t size = fc->size(); local
1713 size_t size = fc->size(); local
1781 size_t size = chunk->size(); local
2059 coalOverPopulated(size_t size) argument
2069 smallCoalBirth(size_t size) argument
2076 smallCoalDeath(size_t size) argument
2083 coalBirth(size_t size) argument
2093 coalDeath(size_t size) argument
2103 smallSplitBirth(size_t size) argument
2110 smallSplitDeath(size_t size) argument
2117 split_birth(size_t size) argument
2127 splitDeath(size_t size) argument
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/encoding/
H A DEncapsInputStream.java64 int size, boolean littleEndian,
66 super(orb, ByteBuffer.wrap(buf), size, littleEndian,
80 int size, boolean littleEndian,
82 super(orb, byteBuffer, size, littleEndian,
96 public EncapsInputStream(org.omg.CORBA.ORB orb, byte[] data, int size) argument
98 this(orb, data, size, GIOPVersion.V1_2);
118 public EncapsInputStream(org.omg.CORBA.ORB orb, byte[] data, int size, GIOPVersion version) argument
120 this(orb, data, size, false, version);
131 int size,
136 size,
63 EncapsInputStream(org.omg.CORBA.ORB orb, byte[] buf, int size, boolean littleEndian, GIOPVersion version) argument
79 EncapsInputStream(org.omg.CORBA.ORB orb, ByteBuffer byteBuffer, int size, boolean littleEndian, GIOPVersion version) argument
129 EncapsInputStream(org.omg.CORBA.ORB orb, byte[] data, int size, GIOPVersion version, CodeBase codeBase) argument
[all...]
/openjdk10/hotspot/src/share/vm/services/
H A DclassLoadingService.cpp128 // add the class size
129 size_t size = compute_class_size(k); local
130 _classbytes_unloaded->inc(size);
132 // Compute method size & subtract from running total.
137 _class_methods_size->inc(-methods->at(i)->size());
157 // add the class size
158 size_t size = compute_class_size(k); local
159 classbytes_counter->inc(size);
168 class_size += k->size();
171 class_size += k->methods()->size();
[all...]
/openjdk10/hotspot/src/share/vm/opto/
H A Dregmask.hpp59 // RM_SIZE is the size of a register mask in words.
86 // Also, consider the maximum alignment size for a normally allocated
137 // unbounded in size. Returns FALSE if mask is finite size.
196 // Test for a single adjacent set of ideal register's size.
210 OptoReg::Name find_first_set(const int size) const;
212 // Clear out partial bits; leave only aligned adjacent bit sets of size.
213 void clear_to_sets(const int size);
215 void smear_to_sets(const int size);
217 void verify_sets(int size) cons
[all...]

Completed in 471 milliseconds

<<11121314151617181920>>