Searched defs:space (Results 26 - 47 of 47) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DAbstractWriter.java383 * @param space an int representing the space to indent mapping.
385 protected void setIndentSpace(int space) { argument
386 indentSpace = space;
390 * Returns the amount of space to indent.
461 * out is indent level times the space to map mapping. If the current
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DParser.java58 * space should be used here, but I am using &nbsp to force the space to
86 private boolean space; field in class:Parser
324 space = false;
330 if ((!space) || (stack == null) || last.breaksFlow() ||
333 space = false;
338 if (space) {
347 // output pending space
353 space = false;
367 space
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dgeneration.hpp49 // contiguous space with card marking
50 // - TenuredGeneration - tenured (old object) space (markSweepCompact)
239 // If some space in the generation contains the given "addr", return a
240 // pointer to that space, else return "NULL".
246 // Returns the first space, if any, in the generation that can participate
274 virtual HeapWord* allocation_limit_reached(Space* space, HeapWord* top, argument
308 // "obj" is the address of an object in a younger generation. Allocate space
310 // the newly allocated space, if possible, returning the result (or NULL if
319 // "word_sz". If possible, allocate space for "obj", copy obj into it
382 // Otherwise, attempting to (at least) free enough space t
693 OneContigSpaceCardGeneration(ReservedSpace rs, size_t initial_byte_size, size_t min_heap_delta_bytes, int level, GenRemSet* remset, ContiguousSpace* space) argument
[all...]
H A Dgeneration.cpp40 #include "memory/space.inline.hpp"
50 vm_exit_during_initialization("Could not reserve enough space for "
355 CompactibleSpace* space = first_compaction_space(); local
356 while (space != NULL) {
357 space->prepare_for_compaction(cp);
358 space = space->next_compaction_space();
511 // If there's not enough expansion space available, give up.
584 // Expand space -- also expands space'
[all...]
H A Dspace.hpp51 // A space is an abstraction for the "storage units" backing
53 // implementations for keeping track of free and used space,
59 // - CompactibleSpace -- a space supporting compaction
61 // - ContiguousSpace -- a compactible space in which all free space
63 // - EdenSpace -- contiguous space used as nursery
64 // - ConcEdenSpace -- contiguous space with a 'soft end safe' allocation
65 // - OffsetTableContigSpace -- contiguous space with a block offset array
68 // - ContigPermSpace -- an offset table contiguous space for perm gen
145 // Returns a subregion of the space containin
381 CompactibleSpace* space; member in class:CompactPoint
[all...]
H A Ddump.cpp150 // When a symbol is being copied to a shared space
434 // space.
442 MoveMarkedObjects(OffsetTableContigSpace* space, bool read_only) { argument
443 _space = space;
593 guarantee(f->is_shared(), "Oop doesn't refer to shared space.");
605 // of moving to the shared space.
682 assert(obj->klass()->is_shared(), "Klass not pointing into shared space.");
743 "Oop in shared space not pointing into shared space.");
821 // High level summary of the read-only space
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DmemoryService.cpp225 MemoryPool* MemoryService::add_space(ContiguousSpace* space, argument
231 ContiguousSpacePool* pool = new ContiguousSpacePool(space, name, type, max_size, support_usage_threshold);
250 MemoryPool* MemoryService::add_cms_space(CompactibleFreeListSpace* space, argument
256 CompactibleFreeListSpacePool* pool = new CompactibleFreeListSpacePool(space, name, type, max_size, support_usage_threshold);
273 // Add a memory pool for each space and young gen doesn't
293 // Add a memory pool for each space and young gen doesn't
394 // Add a memory pool for each space and young gen doesn't
630 // GC manager type depends on the type of Generation. Depending on the space
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp259 // object size (which today is a header's worth of space);
279 // space be allocated before initiating a new collection cycle.
398 // Start a cms collection if there isn't enough space to promote
756 // Support for parallelizing survivor space rescan
881 // part of the space ends in a free block we should add that to
1133 static inline size_t percent_of_space(Space* space, HeapWord* addr) argument
1135 size_t delta = pointer_delta(addr, space->bottom());
1136 return (size_t)(delta * 100.0 / (space->capacity() / HeapWordSize));
1152 // then compute the offset from the endpoints of the space.
1201 CMSCollector::allocation_limit_reached(Space* space, HeapWor argument
[all...]
H A DcompactibleFreeListSpace.cpp126 // The small linAB initially has all the space and will allocate
171 // First check if we should switch compaction space
172 assert(this == cp->space, "'this' should be current compaction space.");
174 assert(adjustObjectSize(size) == cp->space->adjust_object_size_v(size),
185 // switch to next compaction space
186 cp->space->set_compaction_top(compact_top);
187 cp->space = cp->space->next_compaction_space();
188 if (cp->space
1321 size_t space = obj_size; local
[all...]
H A DconcurrentMarkSweepGeneration.hpp48 // space. Neither of these restrictions appears essential, and will be
102 // the following is one past the last word in space
174 VirtualSpace _virtual_space; // space for the stack
443 // Rate at which space in the cms generation is being consumed (sum of the
748 void sample_eden(); // ... sample Eden space top
759 // Support for parallelizing survivor space rescan
933 HeapWord* allocation_limit_reached(Space* space, HeapWord* top,
954 // Support for parallel remark of survivor space
1058 CompactibleFreeListSpace* _cmsSpace; // underlying space (only one for now)
1121 // Maximum available space i
1580 MarkFromDirtyCardsClosure(CMSCollector* collector, MemRegion span, CompactibleFreeListSpace* space, CMSBitMap* bit_map, CMSMarkStack* mark_stack, CMSMarkStack* revisit_stack, MarkRefsIntoAndScanClosure* cl) argument
1592 MarkFromDirtyCardsClosure(CMSCollector* collector, MemRegion span, CompactibleFreeListSpace* space, CMSBitMap* bit_map, OopTaskQueue* work_queue, CMSMarkStack* revisit_stack, Par_MarkRefsIntoAndScanClosure* cl) argument
1605 set_space(CompactibleFreeListSpace* space) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparallelScavengeHeap.cpp182 "Could not reserve enough space for object heap");
194 "Could not reserve enough space for barrier set");
204 // Split the reserved space into perm gen and the main heap (everything else).
715 // the collection fails to return enough space and an OOM is thrown
922 PSVirtualSpace* space = perm_gen()->virtual_space(); local
924 (HeapWord*)space->low_boundary(),
925 (HeapWord*)space->high(),
926 (HeapWord*)space->high_boundary());
1002 // the reserved space for the young and old generations
1019 // the reserved space fo
[all...]
H A DpsParallelCompact.hpp55 // all the live data in a region is copied to a single destination space (e.g.,
67 // copied to another space (call it dest_space_1). The live data to the right
68 // of the partial object will be copied either within the space itself, or to a
69 // different destination space (distinct from dest_space_1).
76 // destination space than anything to its right, thus the partial object should
90 // At most one region is split per space, so the amount of data required is
93 // A region is split only when the destination space would overflow. Once that
94 // happens, the destination space is abandoned and no other data (even from
95 // other source spaces) is targeted to that destination space. Abandoning the
96 // destination space ma
173 MutableSpace* space() const { return _space; } function in class:SpaceInfo
[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...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DHierarchicalLayoutManager.java557 private ArrayList<Integer>[] space; field in class:HierarchicalLayoutManager.AssignXCoordinates2
563 n.x = space[n.layer].get(n.pos);
569 space = new ArrayList[layers.length];
574 space[i] = new ArrayList<Integer>();
580 space[i].add(curX);
660 NodeRow r = new NodeRow(space[i]);
668 NodeRow r = new NodeRow(space[i]);
678 NodeRow r = new NodeRow(space[i]);
688 NodeRow r = new NodeRow(space[i]);
700 private ArrayList<Integer> space; field in class:HierarchicalLayoutManager.NodeRow
702 NodeRow(ArrayList<Integer> space) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DSynthFileChooserUIImpl.java703 final static int space = 10; field in class:SynthFileChooserUIImpl
712 icon.paintIcon(c, g, x+depth*space, y);
720 return ((icon != null) ? icon.getIconWidth() : 0) + depth*space;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSplitPaneUI.java1821 * and the right component to the remainder of the space.
1897 // set to min sizes and distribute any extra space.
1921 * Distributes <code>space</code> between the two components
1922 * (divider won't get any extra space) based on the weighting. This
1926 * it gets none of the extra space
1928 void distributeSpace(int space, boolean keepHidden) { argument
1951 int lExtra = (int)(weight * (double)space);
1952 int rExtra = (space - lExtra);
2006 sizes[0] = Math.max(0, sizes[0] + space);
2009 sizes[1] = Math.max(0, sizes[1] + space);
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalFileChooserUI.java879 final static int space = 10; field in class:MetalFileChooserUI
887 icon.paintIcon(c, g, x+depth*space, y);
894 return icon.getIconWidth() + depth*space;
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsFileChooserUI.java1005 final static int space = 10; field in class:WindowsFileChooserUI
1013 icon.paintIcon(c, g, x+depth*space, y);
1020 return icon.getIconWidth() + depth*space;
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlWriter.java779 * Print "&#38;nbsp;", non-breaking space.
781 public void space() { method in class:HtmlWriter
786 * Return "&#38;nbsp;", non-breaking space.
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrutil.c370 png_size_t space = avail; /* > 0, see above */ local
376 if (space < copy)
377 copy = space;
381 count += space;
1334 png_warning(png_ptr, "No space in chunk cache for sPLT");
2171 png_warning(png_ptr, "No space in chunk cache for tEXt");
2277 png_warning(png_ptr, "No space in chunk cache for zTXt");
2408 png_warning(png_ptr, "No space in chunk cache for iTXt");
2569 png_warning(png_ptr, "No space in chunk cache for unknown chunk");
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscgats.c2004 // gobble any space at the right
2241 int words = 1, space = 0, quot = 0; local
2258 if(!quot && !space)
2259 space = 1;
2267 words += space;
2268 space = 0;
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c172 * allocated on demand so that we don't waste too much space.
269 /* Used by the space allocator */
3454 char space[CCSegSize]; member in struct:CCpool
3469 context->CCfree_ptr = &new->space[0];
3473 /* Reuse all the space that we have in the context's heap. */
3479 context->CCfree_ptr = &first->space[0];
3530 context->CCfree_ptr = &new->space[0];

Completed in 135 milliseconds

12