Searched refs:space (Results 26 - 50 of 93) sorted by relevance

1234

/openjdk9/jdk/src/java.desktop/share/classes/java/awt/image/
H A DPackedColorModel.java58 * the color space type (for example, TYPE_RGB), index 0
111 * @param space the specified {@code ColorSpace}
127 public PackedColorModel (ColorSpace space, int bits, argument
133 space, (alphaMask == 0 ? false : true),
145 DecomposeMask(colorMaskArray[i], i, space.getName(i));
172 * @param space the specified {@code ColorSpace}
191 * @throws IllegalArgumentException if {@code space} is not a
192 * TYPE_RGB space
195 public PackedColorModel(ColorSpace space, int bits, int rmask, int gmask, argument
201 space, (amas
[all...]
/openjdk9/hotspot/src/share/vm/services/
H A DmemoryPool.cpp29 #include "gc/shared/space.hpp"
186 ContiguousSpacePool::ContiguousSpacePool(ContiguousSpace* space,
191 CollectedMemoryPool(name, type, space->capacity(), max_size,
192 support_usage_threshold), _space(space) {
196 return space()->used();
233 CompactibleFreeListSpacePool::CompactibleFreeListSpacePool(CompactibleFreeListSpace* space,
238 CollectedMemoryPool(name, type, space->capacity(), max_size,
239 support_usage_threshold), _space(space) {
H A DmemoryPool.hpp157 ContiguousSpacePool(ContiguousSpace* space, const char* name, PoolType type, size_t max_size, bool support_usage_threshold);
159 ContiguousSpace* space() { return _space; } function in class:ContiguousSpacePool
186 CompactibleFreeListSpacePool(CompactibleFreeListSpace* space,
H A DmemoryService.hpp96 static MemoryPool* add_space(ContiguousSpace* space,
110 static MemoryPool* add_cms_space(CompactibleFreeListSpace* space,
/openjdk9/hotspot/src/share/vm/gc/shared/
H A DgcTraceSend.cpp317 TraceStructVirtualSpace space; local
318 space.set_start((TraceAddress)summary.start());
319 space.set_committedEnd((TraceAddress)summary.committed_end());
320 space.set_committedSize(summary.committed_size());
321 space.set_reservedEnd((TraceAddress)summary.reserved_end());
322 space.set_reservedSize(summary.reserved_size());
323 return space;
327 TraceStructObjectSpace space; local
328 space.set_start((TraceAddress)summary.start());
329 space
[all...]
H A Dspace.cpp33 #include "gc/shared/space.hpp"
34 #include "gc/shared/space.inline.hpp"
59 // Use the block_size() method of the space over which
60 // the iteration is being done. That space (e.g. CMS) may have
87 // As in the case of contiguous space above, we'd like to
90 // we'd need an interface change (it seems) to have the space
214 // collector in this space, which may have freed up objects after
274 "invalid space boundaries");
346 // Mangled only the unused space that has not previously
373 // First check if we should switch compaction space
[all...]
H A Dspace.hpp38 // A space is an abstraction for the "storage units" backing
40 // implementations for keeping track of free and used space,
100 // Returns a subregion of the space containing only the allocated objects in
101 // the space.
105 // allocated at the time of the last call to "save_marks". If the space
107 // (that is, if the space is contiguous), then this region must contain only
110 // the space must distinguish between objects in the region allocated before
117 // "initialize" should be called once on a space, before it is used for
118 // any purpose. The "mr" arguments gives the bounds of the space, and
128 // some unused space ma
310 CompactibleSpace* space; member in class:CompactPoint
[all...]
H A Dgeneration.cpp37 #include "gc/shared/space.inline.hpp"
49 vm_exit_during_initialization("Could not reserve enough space for "
315 CompactibleSpace* space = first_compaction_space(); local
316 while (space != NULL) {
317 space->prepare_for_compaction(cp);
318 space = space->next_compaction_space();
/openjdk9/hotspot/src/share/vm/gc/parallel/
H A DmutableNUMASpace.hpp35 * functionality. The space is split into chunks for each locality group
41 * sizing is to reduce the loss of the space in the eden due to fragmentation.
123 alloc_rate_sample = space()->capacity_in_bytes();
126 alloc_rate_sample = space()->used_in_bytes();
134 MutableSpace* space() const { return _space; } function in class:MutableNUMASpace::LGRPSpace
170 // Get default chunk size (equally divide the space).
197 // Update space layout if necessary. Do all adaptive resizing job.
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/util/
H A DByteOutputStream.java99 * Ensure that the buffer has at least this much space.
101 private void ensureCapacity(int space) { argument
102 int newcount = space + count;
/openjdk9/hotspot/src/share/vm/gc/serial/
H A DtenuredGeneration.hpp35 // contained in a single contiguous space.
45 ContiguousSpace* _the_space; // Actual space holding objects
54 ContiguousSpace* space() const { return _the_space; } function in class:TenuredGeneration
/openjdk9/hotspot/src/share/vm/gc/g1/
H A Dg1MarkSweep.hpp100 bool is_cp_initialized() const { return _cp.space != NULL; }
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/text/html/parser/
H A DParser.java56 * space should be used here, but I am using &nbsp to force the space to
84 private boolean space; field in class:Parser
371 space = false;
377 if ((!space) || (stack == null) || last.breaksFlow() ||
380 space = false;
385 if (space) {
394 // output pending space
400 space = false;
414 space
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DText.java106 String space = element.getAttribute("xml:space");
107 if ((space == null) || (!space.equals("preserve")))
/openjdk9/hotspot/src/share/vm/gc/cms/
H A DcompactibleFreeListSpace.hpp31 #include "gc/shared/space.hpp"
37 // space, in this case a CompactibleFreeListSpace.
70 // a free list space, such as used in the concurrent mark sweep
77 // Local alloc buffer for promotion into this space.
81 friend void CompactibleSpace::scan_and_adjust_pointers(SpaceType* space);
83 friend void CompactibleSpace::scan_and_compact(SpaceType* space);
85 friend void CompactibleSpace::verify_up_to_first_dead(SpaceType* space);
87 friend void CompactibleSpace::scan_and_forward(SpaceType* space, CompactPoint* cp);
113 // space are re-entrant.
158 // Used to keep track of limit of sweep for the space
[all...]
H A DpromotionInfo.hpp119 CompactibleFreeListSpace* _space; // the space to which this belongs
131 // ensure that spooling space exists; return true if there is spooling space
154 CompactibleFreeListSpace* space() const { return _space; } function in class:VALUE_OBJ_CLASS_SPEC
165 // ensure that spooling space exists
/openjdk9/hotspot/src/share/vm/runtime/
H A Drelocator.hpp48 methodHandle insert_space_at(int bci, int space, u_char inst_buffer[], TRAPS);
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/
H A DJFormatter.java91 * @param space
94 public JFormatter(PrintWriter s, String space) { argument
96 indentSpace = space;
/openjdk9/jdk/src/jdk.httpserver/share/classes/sun/net/httpserver/
H A DServerImpl.java553 int space = requestLine.indexOf (' ');
554 if (space == -1) {
559 String method = requestLine.substring (0, space);
560 int start = space+1;
561 space = requestLine.indexOf(' ', start);
562 if (space == -1) {
567 String uriStr = requestLine.substring (start, space);
569 start = space+1;
/openjdk9/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DResponseContent.java186 int space = returnBuffer.remaining();
188 int bytes2Copy = Math.min(bytesread, Math.min(bytesremaining, space));
/openjdk9/langtools/test/jdk/jshell/
H A DUITesting.java162 return backspace(what.length()) + space(what.length()) + backspace(what.length());
169 protected String space(int n) { method in class:UITesting
/openjdk9/jdk/src/java.base/share/classes/sun/security/util/
H A DDisabledAlgorithmConstraints.java237 int space = constraintEntry.indexOf(' ');
239 ((space > 0 ? constraintEntry.substring(0, space) :
246 if (space <= 0) {
251 String policy = constraintEntry.substring(space + 1);
/openjdk9/jdk/src/java.base/windows/classes/sun/nio/fs/
H A DWindowsNativeDispatcher.java481 DiskFreeSpace space = new DiskFreeSpace();
482 GetDiskFreeSpaceEx0(buffer.address(), space);
483 return space;
/openjdk9/jdk/test/java/io/File/
H A DGetXSpace.java135 private static ArrayList space(String f) throws IOException { method in class:GetXSpace
335 l = space(dirName);
348 l = space(null);
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/
H A DGeneration.java165 return (blk.space() != null);

Completed in 169 milliseconds

1234