Searched refs:space (Results 1 - 25 of 89) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DColorModelCMYK.java35 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 DColorModelHSV.java35 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 DColorModelHSL.java35 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/jdk/src/share/classes/java/rmi/server/
H A DObjID.java53 * <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/src/share/vm/gc_implementation/parallelScavenge/
H A DpsMarkSweepDecorator.hpp53 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 DpsMarkSweepDecorator.cpp85 // This method "precompacts" objects inside its space to dest. It places forwarding
87 // finish by compacting into our own space.
91 set_compaction_top(space()->bottom());
93 /* We allow some amount of garbage towards the bottom of the space, so
105 allowed_deadspace = space()->capacity_in_words() * ratio / 100;
113 HeapWord* compact_end = dest->space()->end();
115 HeapWord* q = space()->bottom();
116 HeapWord* t = space()->top();
120 HeapWord* first_dead = space()->end(); /* The first dead object. */
138 // This should only happen if a space i
[all...]
H A DpsParallelCompact.cpp212 tty->print_cr("space bottom top end new_top");
216 const MutableSpace* space = _space_info[id].space(); local
221 summary_data().addr_to_region_idx(space->bottom()),
222 summary_data().addr_to_region_idx(space->top()),
223 summary_data().addr_to_region_idx(space->end()),
276 const MutableSpace* space = space_info[id].space(); local
277 print_generic_summary_data(summary_data, space->bottom(),
278 MAX2(space
297 print_initial_summary_data(ParallelCompactData& summary_data, const MutableSpace* space) argument
367 const MutableSpace* space; local
982 MutableSpace* const space = _space_info[id].space(); local
1121 const MutableSpace* const space = _space_info[id].space(); local
1223 const MutableSpace* const space = _space_info[id].space(); local
1415 const MutableSpace* const space = _space_info[id].space(); local
1523 MutableSpace* space = _space_info[id].space(); local
1557 MutableSpace* const space = _space_info[id].space(); local
1616 MutableSpace* space; local
1702 const MutableSpace* space = _space_info[i].space(); local
1804 const MutableSpace* space = _space_info[id].space(); local
1940 const MutableSpace* space = _space_info[id].space(); local
2557 MutableSpace* const space = space_info->space(); local
2609 const MutableSpace* const space = _space_info[space_id].space(); local
3104 const MutableSpace* const space = space_info->space(); local
[all...]
H A DpsVirtualspace.hpp38 // 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/memory/
H A Dwatermark.hpp31 // 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 Dfilemap.cpp209 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...]
H A Dfilemap.hpp29 #include "memory/space.hpp"
35 // read-write space from CompactingPermGenGen
36 // read-only space from CompactingPermGenGen
58 // FileMapHeader describes the shared space data in the file to be
71 size_t _used; // for setting space top on read
72 bool _read_only; // read only space?
73 bool _allow_exec; // executable code in space?
123 void write_space(int i, CompactibleSpace* space, bool read_only);
128 bool map_space(int i, ReservedSpace rs, ContiguousSpace *space);
136 // Remap the shared readonly space t
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DcSpaceCounters.hpp29 #include "memory/space.inline.hpp"
33 // that track a space;
79 ContiguousSpaceUsedHelper(ContiguousSpace* space) : _space(space) { } argument
H A DgcTraceSend.cpp165 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 DmutableNUMASpace.cpp63 // It can be called on a numa space during a full compaction.
67 // It can be called on a numa space during a full compaction.
91 MutableSpace *s = ls->space();
150 s += lgrp_spaces()->at(i)->space()->used_in_words();
158 s += lgrp_spaces()->at(i)->space()->free_in_words();
172 // have equal size because the whole space will be reinitialized.
185 return lgrp_spaces()->at(i)->space()->capacity_in_bytes();
204 return lgrp_spaces()->at(i)->space()->free_in_bytes();
223 return lgrp_spaces()->at(i)->space()->capacity_in_words();
312 // Update space layou
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jstat/resources/
H A Djstat_options132 data sun.gc.generation.0.space.1.capacity
140 data sun.gc.generation.0.space.2.capacity
148 data sun.gc.generation.0.space.1.used
156 data sun.gc.generation.0.space.2.used
164 data sun.gc.generation.0.space.0.capacity
172 data sun.gc.generation.0.space.0.used
180 data sun.gc.generation.1.space.0.capacity
188 data sun.gc.generation.1.space.0.used
196 data sun.gc.generation.2.space.0.capacity
204 data sun.gc.generation.2.space
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DGenerationIsInClosure.java45 Space space() { method in class:GenerationIsInClosure
/openjdk7/hotspot/src/share/vm/services/
H A DpsMemoryPool.hpp34 #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 DpsMemoryPool.cpp64 // 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 DmemoryPool.hpp31 #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/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DHeapSummary.java205 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/demo/applets/Blink/
H A DBlink.java97 int x = 0, y = fontSize, space;
104 space = fm.stringWidth(" ");
108 int w = fm.stringWidth(word) + space;
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/resources/
H A Daliasmap31 * a white space separated list of counter names from previous releases.
318 alias sun.gc.generation.0.space.0.capacity // 1.5.0 b39
319 hotspot.gc.generation.0.space.0.capacity // 1.4.2
321 alias sun.gc.generation.0.space.0.maxCapacity // 1.5.0 b39
322 hotspot.gc.generation.0.space.0.size // 1.4.2
324 alias sun.gc.generation.0.space.0.name // 1.5.0 b39
325 hotspot.gc.generation.0.space.0.name // 1.4.2
326 alias sun.gc.generation.0.space.0.used // 1.5.0 b39
327 hotspot.gc.generation.0.space.0.used // 1.4.2
329 alias sun.gc.generation.0.space
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DStyleConstants.java178 * The amount of space to indent the first
181 * is Float and specifies the size of the space
201 * The amount of space between lines
208 * The amount of space above the paragraph.
214 * The amount of space below the paragraph.
670 Float space = (Float) a.getAttribute(LineSpacing);
671 if (space != null) {
672 return space.floatValue();
688 * Gets the space above setting.
694 Float space
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DBasicWriter.java106 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/jdk/src/share/classes/java/awt/image/
H A DPackedColorModel.java57 * 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...]

Completed in 112 milliseconds

1234