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

1234

/openjdk9/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;
/openjdk9/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...]
/openjdk9/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...]
/openjdk9/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...]
/openjdk9/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.cpp74 // This method "precompacts" objects inside its space to dest. It places forwarding
76 // finish by compacting into our own space.
80 set_compaction_top(space()->bottom());
82 /* We allow some amount of garbage towards the bottom of the space, so
93 allowed_deadspace = space()->capacity_in_words() * ratio / 100;
101 HeapWord* compact_end = dest->space()->end();
103 HeapWord* q = space()->bottom();
104 HeapWord* t = space()->top();
108 HeapWord* first_dead = space()->end(); /* The first dead object. */
123 // 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.cpp206 log.trace("space bottom top end new_top");
210 const MutableSpace* space = _space_info[id].space();
215 summary_data().addr_to_region_idx(space->bottom()),
216 summary_data().addr_to_region_idx(space->top()),
217 summary_data().addr_to_region_idx(space->end()),
282 const MutableSpace* space = space_info[id].space(); local
283 print_generic_summary_data(summary_data, space->bottom(),
284 MAX2(space
289 print_initial_summary_data(ParallelCompactData& summary_data, const MutableSpace* space) argument
377 const MutableSpace* space; local
922 MutableSpace* const space = _space_info[id].space(); local
1056 const MutableSpace* const space = _space_info[id].space(); local
1158 const MutableSpace* const space = _space_info[id].space(); local
1343 const MutableSpace* const space = _space_info[id].space(); local
1418 const MutableSpace* space = _space_info[i].space(); local
1502 const MutableSpace* space = _space_info[id].space(); local
1625 const MutableSpace* space = _space_info[id].space(); local
2243 MutableSpace* const space = space_info->space(); local
2280 const MutableSpace* const space = _space_info[space_id].space(); local
2573 const MutableSpace* const space = space_info->space(); local
[all...]
H A DmutableNUMASpace.cpp51 // It can be called on a numa space during a full compaction.
55 // It can be called on a numa space during a full compaction.
79 MutableSpace *s = ls->space();
138 s += lgrp_spaces()->at(i)->space()->used_in_words();
146 s += lgrp_spaces()->at(i)->space()->free_in_words();
160 // have equal size because the whole space will be reinitialized.
173 return lgrp_spaces()->at(i)->space()->capacity_in_bytes();
192 return lgrp_spaces()->at(i)->space()->used_in_bytes();
212 return lgrp_spaces()->at(i)->space()->free_in_bytes();
231 return lgrp_spaces()->at(i)->space()
[all...]
/openjdk9/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
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/
H A DGenerationIsInClosure.java45 Space space() { method in class:GenerationIsInClosure
/openjdk9/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;
/openjdk9/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
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/
H A DHeapSummary.java202 private void printMutableSpace(MutableSpace space) { argument
203 printValMB("capacity = ", space.capacity());
204 printValMB("used = ", space.used());
205 long free = space.capacity() - space.used();
207 System.out.println(alignment + (double)space.used() * 100.0 / space.capacity() + "% used");
219 private void printSpace(ContiguousSpace space) { argument
220 printValMB("capacity = ", space.capacity());
221 printValMB("used = ", space
[all...]
/openjdk9/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;
/openjdk9/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;
/openjdk9/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();
/openjdk9/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...]
/openjdk9/jdk/test/javax/swing/text/GlyphPainter2/6427244/
H A Dbug6427244.java50 "\u0020", // ASCII space
51 "\u2002", // EN space
52 "\u2003", // EM space
53 "\u2004", // THREE-PER-EM space
70 for (String space: SPACES) {
71 t.init(space);
80 void init(final String space) { argument
89 text += space;

Completed in 276 milliseconds

1234