/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/ |
H A D | GenerationIsInClosure.java | 45 Space space() { method in class:GenerationIsInClosure
|
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/ |
H A D | ColorModelCMYK.java | 35 void setColor(int color, float[] space) { argument 36 super.setColor(color, space); 37 space[4] = space[3]; 38 RGBtoCMYK(space, space); 42 int getColor(float[] space) { argument 43 CMYKtoRGB(space, space); 44 space[ [all...] |
H A D | ColorModelHSV.java | 35 void setColor(int color, float[] space) { argument 36 super.setColor(color, space); 37 RGBtoHSV(space, space); 38 space[3] = 1.0f - space[3]; 42 int getColor(float[] space) { argument 43 space[3] = 1.0f - space[3]; 44 HSVtoRGB(space, spac [all...] |
H A D | ColorModelHSL.java | 35 void setColor(int color, float[] space) { argument 36 super.setColor(color, space); 37 RGBtoHSL(space, space); 38 space[3] = 1.0f - space[3]; 42 int getColor(float[] space) { argument 43 space[3] = 1.0f - space[3]; 44 HSLtoRGB(space, spac [all...] |
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/ |
H A D | psMarkSweepDecorator.hpp | 53 PSMarkSweepDecorator(MutableSpace* space, ObjectStartArray* start_array, argument 55 _space(space), _start_array(start_array), 59 // spaces in a given order. We want to fill space A, space B, and so 67 MutableSpace* space() { return _space; } function in class:PSMarkSweepDecorator
|
H A D | psVirtualspace.hpp | 38 // The space is committed/uncommited in chunks of size _alignment. The 50 // The entire space has been committed and pinned in memory, no 90 virtual size_t expand_into(PSVirtualSpace* space, size_t bytes); 103 // Helper class to verify a space when entering/leaving a block. 108 PSVirtualSpaceVerifier(PSVirtualSpace* space): _space(space) { argument 128 // A virtual space that grows from high addresses to low addresses. 137 virtual size_t expand_into(PSVirtualSpace* space, size_t bytes);
|
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/ |
H A D | cSpaceCounters.hpp | 29 #include "memory/space.inline.hpp" 33 // that track a space; 79 ContiguousSpaceUsedHelper(ContiguousSpace* space) : _space(space) { } argument
|
H A D | gcTraceSend.cpp | 165 TraceStructVirtualSpace space; local 166 space.set_start((TraceAddress)summary.start()); 167 space.set_committedEnd((TraceAddress)summary.committed_end()); 168 space.set_committedSize(summary.committed_size()); 169 space.set_reservedEnd((TraceAddress)summary.reserved_end()); 170 space.set_reservedSize(summary.reserved_size()); 171 return space; 175 TraceStructObjectSpace space; local 176 space.set_start((TraceAddress)summary.start()); 177 space [all...] |
H A D | mutableNUMASpace.hpp | 36 * functionality. The space is split into chunks for each locality group 42 * sizing is to reduce the loss of the space in the eden due to fragmentation. 124 alloc_rate_sample = space()->capacity_in_bytes(); 127 alloc_rate_sample = space()->used_in_bytes(); 135 MutableSpace* space() const { return _space; } function in class:MutableNUMASpace::LGRPSpace 171 // Get default chunk size (equally divide the space). 198 // Update space layout if necessary. Do all adaptive resizing job.
|
/openjdk7/hotspot/src/share/vm/memory/ |
H A D | watermark.hpp | 31 // A water mark points into a space and is used during GC to keep track of 43 Space* space() const { return _space; } function in class:VALUE_OBJ_CLASS_SPEC 54 return (x.point() == y.point()) && (x.space() == y.space());
|
H A D | compactingPermGenGen.cpp | 136 ContiguousSpace* space, 139 level, remset, space) { 146 // Break virtual space into address ranges for all spaces. 162 assert((char*)shared_bottom == shared_rs.base(), "shared space mismatch"); 179 assert((char*)shared_bottom == rs.base()+rs.size(), "shared space mismatch"); 180 assert(unshared_end > unshared_bottom, "shared space mismatch"); 199 // Allocate the unshared (default) space. 209 // If mapping a shared file, the space is not committed, don't 241 vm_exit_during_initialization("Could not allocate a shared space"); 297 // Do a complete scan of the shared read write space t 132 CompactingPermGenGen(ReservedSpace rs, ReservedSpace shared_rs, size_t initial_byte_size, int level, GenRemSet* remset, ContiguousSpace* space, PermanentGenerationSpec* spec_) argument [all...] |
H A D | filemap.cpp | 209 void FileMapInfo::write_space(int i, CompactibleSpace* space, bool read_only) { argument 212 write_region(i, (char*)space->bottom(), space->used(), 213 space->capacity(), read_only, false); 301 // Memory map a shared space from the archive file. 303 bool FileMapInfo::map_space(int i, ReservedSpace rs, ContiguousSpace* space) { argument 305 if (space != NULL) { 306 if (si->_base != (char*)space->bottom() || 307 si->_capacity != space->capacity()) { 308 fail_continue("Shared space bas [all...] |
/openjdk7/hotspot/src/share/vm/services/ |
H A D | psMemoryPool.cpp | 64 // Max size of PS eden space is changing due to ergonomic. 68 MutableSpace* space, 72 CollectedMemoryPool(name, type, space->capacity_in_bytes(), 75 _gen(gen), _space(space) { 87 // current capacity of the from-space 67 EdenMutableSpacePool(PSYoungGen* gen, MutableSpace* space, const char* name, PoolType type, bool support_usage_threshold) argument
|
H A D | psMemoryPool.hpp | 34 #include "memory/space.hpp" 59 MutableSpace* space, 64 MutableSpace* space() { return _space; } function in class:EdenMutableSpacePool 66 size_t used_in_bytes() { return space()->used_in_bytes(); } 92 // Return current committed size of the from-space
|
H A D | memoryPool.hpp | 31 #include "memory/space.hpp" 162 ContiguousSpacePool(ContiguousSpace* space, const char* name, PoolType type, size_t max_size, bool support_usage_threshold); 164 ContiguousSpace* space() { return _space; } function in class:ContiguousSpacePool 166 size_t used_in_bytes() { return space()->used(); } 195 CompactibleFreeListSpacePool(CompactibleFreeListSpace* space,
|
/openjdk7/jdk/src/share/classes/java/rmi/server/ |
H A D | ObjID.java | 53 * <code>long</code>) and an address space identifier (of type 54 * {@link UID}). In a unique <code>ObjID</code>, the address space 56 * well-known <code>ObjID</code>, the address space identifier is 98 * @serial address space identifier (unique to host over time) 100 private final UID space; field in class:ObjID 118 space = new UID(); 121 space = mySpace; 136 space = new UID((short) 0); 143 private ObjID(long objNum, UID space) { argument 145 this.space [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/ |
H A D | HeapSummary.java | 205 private void printMutableSpace(MutableSpace space) { argument 206 printValMB("capacity = ", space.capacity()); 207 printValMB("used = ", space.used()); 208 long free = space.capacity() - space.used(); 210 System.out.println(alignment + (double)space.used() * 100.0 / space.capacity() + "% used"); 222 private void printSpace(ContiguousSpace space) { argument 223 printValMB("capacity = ", space.capacity()); 224 printValMB("used = ", space [all...] |
/openjdk7/jdk/src/share/classes/java/awt/image/ |
H A D | PackedColorModel.java | 57 * the color space type (for example, TYPE_RGB), index 0 109 * @param space the specified <code>ColorSpace</code> 125 public PackedColorModel (ColorSpace space, int bits, argument 131 space, (alphaMask == 0 ? false : true), 143 DecomposeMask(colorMaskArray[i], i, space.getName(i)); 170 * @param space the specified <code>ColorSpace</code> 189 * @throws IllegalArgumentException if <code>space</code> is not a 190 * TYPE_RGB space 193 public PackedColorModel(ColorSpace space, int bits, int rmask, int gmask, argument 199 space, (amas [all...] |
H A D | DirectColorModel.java | 89 * Color space: sRGB 136 * The <code>ColorSpace</code> is the default sRGB space. The 164 * premultiplied. The <code>ColorSpace</code> is the default sRGB space. 212 * @param space the specified <code>ColorSpace</code> 226 * @throws IllegalArgumentException if <code>space</code> is not a 227 * TYPE_RGB space or if the min/max normalized component 230 public DirectColorModel(ColorSpace space, int bits, int rmask, argument 234 super (space, bits, rmask, gmask, bmask, amask, 251 // super constructor checks that space is TYPE_RGB 253 if ((space [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/ |
H A D | ByteOutputStream.java | 94 * Ensure that the buffer has at least this much space. 96 private void ensureCapacity(int space) { argument 97 int newcount = space + count;
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/ |
H A D | BasicWriter.java | 106 protected String space(int w) { method in class:BasicWriter 178 space(indentCount * indentWidth + tabColumn - buffer.length()); 182 space(indentCount * indentWidth); 185 private void space(int n) { method in class:BasicWriter.LineWriter
|
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/ |
H A D | promotionInfo.hpp | 140 CompactibleFreeListSpace* _space; // the space to which this belongs 152 // ensure that spooling space exists; return true if there is spooling space 175 CompactibleFreeListSpace* space() const { return _space; } function in class:VALUE_OBJ_CLASS_SPEC 186 // ensure that spooling space exists
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/ |
H A D | JFormatter.java | 91 * @param space 94 public JFormatter(PrintWriter s, String space) { argument 96 indentSpace = space;
|
/openjdk7/jdk/test/java/io/File/ |
H A D | GetXSpace.java | 134 private static ArrayList space(String f) throws IOException { method in class:GetXSpace 334 l = space(dirName); 347 l = space(null);
|
/openjdk7/jdk/src/share/demo/jvmti/heapViewer/ |
H A D | heapViewer.c | 63 int space; member in struct:__anon528 97 d->space += (int)size; 106 return ((ClassDetails*)p2)->space - ((ClassDetails*)p1)->space; 132 fatal_error("ERROR: Ran out of malloc space\n"); 168 /* Sort details by space used */ 179 if ( details[i].space == 0 || i > 20 ) { 183 details[i].space, details[i].count, details[i].signature); 187 /* Free up all allocated space */
|