Searched defs:size (Results 51 - 75 of 1126) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DBasicObjectLock.java45 size = (int) type.getSize();
50 private static int size; field in class:BasicObjectLock
59 /** Note: Use frame::interpreter_frame_monitor_size() for the size
61 includes machine-specific padding. This routine returns a size
63 public static int size() { return size; } method in class:BasicObjectLock
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DFindObjectByType.java44 public void prologue(long size) {} argument
H A DLivenessPathList.java36 public int size() { method in class:LivenessPathList
37 return list.size();
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLSessionContext.java119 * Sets the size of the cache used for storing
123 * @param size the new session cache size limit; zero means there is no
125 * @exception IllegalArgumentException if the specified size is < 0.
128 public void setSessionCacheSize(int size) argument
132 * Returns the size of the cache used for storing
136 * @return size of the session cache; zero means there is no size limit.
/openjdk7/jdk/src/share/classes/sun/awt/
H A DEventListenerAggregate.java166 public synchronized int size() { method in class:EventListenerAggregate
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextMembershipEvent.java99 public int size() { return children.size(); } method in class:BeanContextMembershipEvent
/openjdk7/jdk/src/share/classes/java/io/
H A DBufferedOutputStream.java65 * size.
68 * @param size the buffer size.
69 * @exception IllegalArgumentException if size &lt;= 0.
71 public BufferedOutputStream(OutputStream out, int size) { argument
73 if (size <= 0) {
74 throw new IllegalArgumentException("Buffer size <= 0");
76 buf = new byte[size];
118 /* If the request length exceeds the size of the output buffer,
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DFileLock.java64 * held, the type and validity of the lock, and the position and size of the
108 * whole multiple of the underlying hardware's page size. Some network
123 private final long size; field in class:FileLock
136 * @param size
137 * The size of the locked region; must be non-negative, and the sum
138 * <tt>position</tt>&nbsp;+&nbsp;<tt>size</tt> must be non-negative
148 long position, long size, boolean shared)
152 if (size < 0)
153 throw new IllegalArgumentException("Negative size");
154 if (position + size <
147 FileLock(FileChannel channel, long position, long size, boolean shared) argument
185 FileLock(AsynchronousFileChannel channel, long position, long size, boolean shared) argument
247 public final long size() { method in class:FileLock
267 overlaps(long position, long size) argument
[all...]
H A DSeekableByteChannel.java39 * the current <i>size</i> of the entity to which the channel is connected. The
40 * size increases when bytes are written beyond its current size; the size
99 * <p> Setting the position to a value that is greater than the current size
100 * is legal but does not change the size of the entity. A later attempt to
128 * Returns the current size of entity to which this channel is connected.
130 * @return The current size, measured in bytes
137 long size() throws IOException; method in interface:SeekableByteChannel
141 * size
167 truncate(long size) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DBasicFileAttributes.java110 * Returns the size of the file (in bytes). The size may differ from the
111 * actual size on the file system due to compression, support for sparse
112 * files, or other reasons. The size of files that are not {@link
116 * @return the file size, in bytes
118 long size(); method in interface:BasicFileAttributes
H A DUserDefinedFileAttributeView.java47 * intended for use where the size of an attribute value is larger than {@link
99 * Returns the size of the value of a user-defined attribute.
104 * @return The size of the attribute value, in bytes.
107 * If the size of the attribute is larger than {@link Integer#MAX_VALUE}
117 int size(String name) throws IOException; method in interface:UserDefinedFileAttributeView
126 * is the size of the attribute value. The first byte in the sequence is at
138 * ByteBuffer buf = ByteBuffer.allocate(view.size(name));
163 * @see #size
171 * a sequence of bytes. The size of the value to transfer is {@code r},
186 * attribute name or value exceed an implementation specific maximum size
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DAlgorithmParameterGenerator.java43 * generators share the concept of a "size" and a
44 * source of randomness. The measure of size is universally shared
47 * the <i>DSA</i> algorithm, "size" corresponds to the size
51 * derived from the specified size.<P>
58 * consist of the size of the prime modulus and the size of the
66 * default modulus prime size of 1024 bits for the generation of DSA
274 * Initializes this parameter generator for a certain size.
282 * @param size th
284 init(int size) argument
295 init(int size, SecureRandom random) argument
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DCharacterIteratorFieldDelegate.java39 * for a region > size, a new instance of AttributedString is added to
49 private int size; field in class:CharacterIteratorFieldDelegate
59 if (start < size) {
61 int index = size;
62 int asIndex = attributedStrings.size() - 1;
76 if (size < start) {
79 buffer.substring(size, start)));
80 size = start;
82 if (size < end) {
84 int aStart = Math.max(start, size);
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DDictionary.java63 abstract public int size(); method in class:Dictionary
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleRelationSet.java52 * @see #size
167 public int size() { method in class:AccessibleRelationSet
171 return relations.size();
195 int len = relations.size();
216 = new AccessibleRelation[relations.size()];
233 if ((relations != null) && (relations.size() > 0)) {
235 for (int i = 1; i < relations.size(); i++) {
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DAttributes.java84 int size(); method in interface:Attributes
/openjdk7/hotspot/src/share/vm/ci/
H A DciSignature.hpp63 int size() const { return _size; } function in class:ciSignature
66 int arg_size_for_bc(Bytecodes::Code bc) { return size() + (Bytecodes::has_receiver(bc) ? 1 : 0); }
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcmsPermGen.cpp53 HeapWord* CMSPermGen::mem_allocate(size_t size) { argument
58 return mem_allocate_in_gen(size, _gen);
60 return mem_allocate_in_gen(size, _gen);
65 size_t size,
67 HeapWord* obj = gen->expand_and_allocate(size, false);
64 request_expand_and_allocate(Generation* gen, size_t size, GCCause::Cause prev_cause ) argument
H A DfreeChunk.cpp39 void FreeChunk::mangleAllocated(size_t size) { argument
42 assert(size >= MinChunkSize, "smallest size of object");
43 // we can't assert that _size == size because this may be an
49 Copy::fill_to_words(addr + hdr, size - hdr, baadbabeHeapWord);
56 assert(sz >= MinChunkSize, "smallest size of object");
57 assert(sz == size(), "just checking");
67 assert(size() == nextFC->size(), "wrong size");
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegion.inline.hpp28 inline HeapWord* G1OffsetTableContigSpace::allocate(size_t size) { argument
29 HeapWord* res = ContiguousSpace::allocate(size);
31 _offsets.alloc_block(res, size);
39 inline HeapWord* G1OffsetTableContigSpace::par_allocate(size_t size) { argument
42 HeapWord* res = ContiguousSpace::allocate(size);
44 _offsets.alloc_block(res, size);
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.inline.hpp80 size_t size) {
81 freed(blk, blk + size);
79 freed(HeapWord* blk, size_t size) argument
H A Dclassify.cpp113 size_t size = obj->size() * HeapWordSize; local
114 object_size[i] += size;
115 total_object_size += size;
132 assert(size_objects == total_object_size, "Object size mismatch!");
H A DresourceArea.cpp48 extern char* resource_allocate_bytes(size_t size, AllocFailType alloc_failmode) { argument
49 return Thread::current()->resource_area()->allocate_bytes(size, alloc_failmode);
51 extern char* resource_allocate_bytes(Thread* thread, size_t size, AllocFailType alloc_failmode) { argument
52 return thread->resource_area()->allocate_bytes(size, alloc_failmode);
60 extern void resource_free_bytes( char *old, size_t size ) {
61 Thread::current()->resource_area()->Afree(old, size);
H A DthreadLocalAllocBuffer.inline.hpp34 inline HeapWord* ThreadLocalAllocBuffer::allocate(size_t size) { argument
37 if (pointer_delta(end(), obj) >= size) {
44 Copy::fill_to_words(obj + hdr_size, size - hdr_size, badHeapWordVal);
47 // at least size below end, so the add can't wrap.
48 set_top(obj + size);
59 // Compute the size for the new TLAB.
87 // Raise size required to bypass TLAB next time. Why? Else there's
89 // size will get stuck on this slow path.
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DHackJavaValue.java50 private int size; field in class:HackJavaValue
52 public HackJavaValue(String value, int size) { argument
54 this.size = size;
62 return size;

Completed in 78 milliseconds

1234567891011>>