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

1234

/openjdk10/hotspot/src/share/vm/gc/shared/
H A DcardGeneration.inline.hpp29 #include "gc/shared/space.hpp"
32 return space()->capacity();
36 return space()->used();
40 return space()->free();
44 return space()->used_region();
48 return space()->is_in(p);
52 return space();
H A Dspace.inline.hpp31 #include "gc/shared/space.hpp"
85 DeadSpacer(CompactibleSpace* space) : _space(space), _allowed_deadspace_words(0) { argument
90 assert(!UseG1GC, "G1 should not be using dead space");
92 // We allow some amount of garbage towards the bottom of the space, so
97 _allowed_deadspace_words = (space->capacity() * ratio / 100) / HeapWordSize;
118 log_develop_trace(gc, compaction)("Inserting object to dead space: " PTR_FORMAT ", " PTR_FORMAT ", " SIZE_FORMAT "b",
131 inline void CompactibleSpace::scan_and_forward(SpaceType* space, CompactPoint* cp) { argument
136 // space, so this is a good time to initialize this:
137 space
217 scan_and_adjust_pointers(SpaceType* space) argument
252 verify_up_to_first_dead(SpaceType* space) argument
272 clear_empty_region(SpaceType* space) argument
290 scan_and_compact(SpaceType* space) argument
[all...]
H A DcardGeneration.cpp33 #include "gc/shared/space.inline.hpp"
80 MemRegion mr(space()->bottom(), new_word_size);
88 MemRegion mangle_region(space()->end(),
93 // Expand space -- also expands space's BOT
95 space()->set_end((HeapWord*)_virtual_space.high());
97 // update the space and generation capacity counters
160 // Shrink committed space
162 // Shrink space; this also shrinks the space'
[all...]
H A DcardGeneration.hpp59 virtual CompactibleSpace* space() const = 0;
/openjdk10/jdk/src/java.desktop/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...]
/openjdk10/jdk/test/java/io/FileInputStream/
H A DNegativeAvailable.java62 long space = skipBytes(fis, SKIP, SIZE);
63 space = skipBytes(fis, NEGATIVE_SKIP, space);
64 space = skipBytes(fis, SKIP, space);
65 space = skipBytes(fis, SKIP, space);
66 space = skipBytes(fis, SKIP, space);
67 space
76 skipBytes(FileInputStream fis, int toSkip, long space) argument
[all...]
/openjdk10/jdk/src/java.rmi/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...]
/openjdk10/hotspot/src/share/vm/gc/parallel/
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
66 MutableSpace* space() { return _space; } function in class:PSMarkSweepDecorator
H A DpsMarkSweepDecorator.cpp76 // This method "precompacts" objects inside its space to dest. It places forwarding
78 // finish by compacting into our own space.
82 set_compaction_top(space()->bottom());
84 /* We allow some amount of garbage towards the bottom of the space, so
95 allowed_deadspace = space()->capacity_in_words() * ratio / 100;
103 HeapWord* compact_end = dest->space()->end();
105 HeapWord* q = space()->bottom();
106 HeapWord* t = space()->top();
110 HeapWord* first_dead = space()->end(); /* The first dead object. */
125 // This should only happen if a space i
[all...]
H A DpsVirtualspace.hpp38 // The space is committed/uncommitted 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);
102 // Helper class to verify a space when entering/leaving a block.
107 PSVirtualSpaceVerifier(PSVirtualSpace* space): _space(space) { argument
127 // A virtual space that grows from high addresses to low addresses.
136 virtual size_t expand_into(PSVirtualSpace* space, size_t bytes);
H A DpsParallelCompact.cpp210 log.trace("space bottom top end new_top");
214 const MutableSpace* space = _space_info[id].space();
219 summary_data().addr_to_region_idx(space->bottom()),
220 summary_data().addr_to_region_idx(space->top()),
221 summary_data().addr_to_region_idx(space->end()),
286 const MutableSpace* space = space_info[id].space(); local
287 print_generic_summary_data(summary_data, space->bottom(),
288 MAX2(space
293 print_initial_summary_data(ParallelCompactData& summary_data, const MutableSpace* space) argument
381 const MutableSpace* space; local
926 MutableSpace* const space = _space_info[id].space(); local
1064 const MutableSpace* const space = _space_info[id].space(); local
1166 const MutableSpace* const space = _space_info[id].space(); local
1351 const MutableSpace* const space = _space_info[id].space(); local
1426 const MutableSpace* space = _space_info[i].space(); local
1510 const MutableSpace* space = _space_info[id].space(); local
1633 const MutableSpace* space = _space_info[id].space(); local
2251 MutableSpace* const space = space_info->space(); local
2288 const MutableSpace* const space = _space_info[space_id].space(); local
2582 const MutableSpace* const space = space_info->space(); local
[all...]
/openjdk10/hotspot/src/share/vm/gc/serial/
H A DcSpaceCounters.hpp29 #include "gc/shared/space.hpp"
33 // that track a space;
71 ContiguousSpaceUsedHelper(ContiguousSpace* space) : _space(space) { } argument
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/
H A DGenerationIsInClosure.java45 Space space() { method in class:GenerationIsInClosure
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/internal/jshell/tool/
H A DContinuousCompletionProvider.java63 int space = prefix.indexOf(' ');
69 if (space == (-1)) {
76 String rest = prefix.substring(space + 1);
77 String word = prefix.substring(0, space);
84 result = candidates.get(0).completionSuggestions(rest, cursor - space - 1, anchor).stream();
88 anchor[0] += space + 1;
/openjdk10/hotspot/src/share/vm/services/
H A DpsMemoryPool.hpp34 #include "gc/shared/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.cpp55 // Max size of PS eden space is changing due to ergonomic.
59 MutableSpace* space,
63 CollectedMemoryPool(name, type, space->capacity_in_bytes(),
67 _space(space) {
79 // current capacity of the from-space
58 EdenMutableSpacePool(PSYoungGen* young_gen, MutableSpace* space, const char* name, PoolType type, bool support_usage_threshold) argument
H A DmemoryPool.cpp29 #include "gc/shared/space.hpp"
185 ContiguousSpacePool::ContiguousSpacePool(ContiguousSpace* space,
190 CollectedMemoryPool(name, type, space->capacity(), max_size,
191 support_usage_threshold), _space(space) {
195 return space()->used();
232 CompactibleFreeListSpacePool::CompactibleFreeListSpacePool(CompactibleFreeListSpace* space,
237 CollectedMemoryPool(name, type, space->capacity(), max_size,
238 support_usage_threshold), _space(space) {
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/
H A DHeapSummary.java196 private void printMutableSpace(MutableSpace space) { argument
197 printValMB("capacity = ", space.capacity());
198 printValMB("used = ", space.used());
199 long free = space.capacity() - space.used();
201 System.out.println(alignment + (double)space.used() * 100.0 / space.capacity() + "% used");
213 private void printSpace(ContiguousSpace space) { argument
214 printValMB("capacity = ", space.capacity());
215 printValMB("used = ", space
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-fallback-shape.cc110 hb_codepoint_t space; local
111 bool has_space = (bool) font->get_nominal_glyph (' ', &space);
123 info[i].codepoint = space;
/openjdk10/jdk/src/demo/share/applets/Blink/
H A DBlink.java97 int x = 0, y = fontSize, space;
104 space = fm.stringWidth(" ");
108 int w = fm.stringWidth(word) + space;
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/
H A DMethod.java200 int space = method.indexOf(' ');
201 int start = method.indexOf('(', space) + 1;
203 if (space == -1 || start == -1 || end == -1) {
206 String returnType = method.substring(0, space);
207 String methodName = method.substring(space + 1, start - 1).trim();
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DStyleConstants.java177 * The amount of space to indent the first
180 * is Float and specifies the size of the space
200 * The amount of space between lines
207 * The amount of space above the paragraph.
213 * The amount of space below the paragraph.
669 Float space = (Float) a.getAttribute(LineSpacing);
670 if (space != null) {
671 return space.floatValue();
687 * Gets the space above setting.
693 Float space
[all...]
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1MarkSweep.hpp84 bool is_cp_initialized() const { return _cp.space != NULL; }

Completed in 230 milliseconds

1234