Searched defs:bottom (Results 26 - 50 of 75) sorted by relevance

123

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1HRPrinter.hpp73 // only prints the region's bottom. The parameters type and top are
79 // bottom and end. Used for Commit / Uncommit events.
80 static void print(ActionType action, HeapWord* bottom, HeapWord* end);
147 void commit(HeapWord* bottom, HeapWord* end) { argument
149 print(Commit, bottom, end);
153 void uncommit(HeapWord* bottom, HeapWord* end) { argument
155 print(Uncommit, bottom, end);
/openjdk7/hotspot/src/share/vm/memory/
H A DtenuredGeneration.cpp43 HeapWord* bottom = (HeapWord*) _virtual_space.low(); local
45 _the_space = new TenuredSpace(_bts, MemRegion(bottom, end));
H A Dspace.cpp76 HeapWord* bottom,
86 for (; bottom < top; bottom += _sp->block_size(bottom)) {
93 if (_sp->block_is_obj(bottom) &&
94 !_sp->obj_allocated_since_save_marks(oop(bottom))) {
95 oop(bottom)->oop_iterate(_cl, mr);
121 HeapWord* bottom = mr.start(); local
137 bottom_obj = _sp->block_start(bottom);
140 assert(bottom_obj <= bottom, "jus
75 walk_mem_region(MemRegion mr, HeapWord* bottom, HeapWord* top) argument
209 walk_mem_region(MemRegion mr, HeapWord* bottom, HeapWord* top) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsTableHeaderUI.java104 contentBottom = margins.bottom;
217 private final int bottom; field in class:WindowsTableHeaderUI.IconBorder
222 * @param top, left, bottom, right - outer insets for this border
225 int bottom, int right) {
229 this.bottom = bottom;
233 return new Insets(icon.getIconHeight() + top, left, bottom, right);
224 IconBorder(Icon icon, int top, int left, int bottom, int right) argument
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DSynthModel.java136 @XmlAttribute private int bottom; field in class:Border
143 painter, top, left, bottom, right);
146 top, left, bottom, right);
156 @XmlAttribute int bottom; field in class:Insets
163 public Insets(int top, int left, int bottom, int right) { argument
166 this.bottom = bottom;
173 uiSuffix, top, left, bottom, right);
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_FourByteAbgrPre.c191 int right, bottom; local
203 bottom = top + height;
215 if (bottom > clipBottom) {
216 bottom = clipBottom;
218 if (right <= left || bottom <= top) {
222 height = bottom - top;
H A Dvis_IntArgb.c388 int right, bottom; local
400 bottom = top + height;
412 if (bottom > clipBottom) {
413 bottom = clipBottom;
415 if (right <= left || bottom <= top) {
419 height = bottom - top;
H A Dvis_IntArgbBm.c567 int right, bottom; local
579 bottom = top + height;
591 if (bottom > clipBottom) {
592 bottom = clipBottom;
594 if (right <= left || bottom <= top) {
598 height = bottom - top;
H A Dvis_IntBgr.c848 int right, bottom; local
860 bottom = top + height;
872 if (bottom > clipBottom) {
873 bottom = clipBottom;
875 if (right <= left || bottom <= top) {
879 height = bottom - top;
H A Dvis_IntRgb.c574 int right, bottom; local
586 bottom = top + height;
598 if (bottom > clipBottom) {
599 bottom = clipBottom;
601 if (right <= left || bottom <= top) {
605 height = bottom - top;
H A Dvis_ByteGray_Mask.c649 int right, bottom; local
661 bottom = top + height;
673 if (bottom > clipBottom) {
674 bottom = clipBottom;
676 if (right <= left || bottom <= top) {
680 height = bottom - top;
H A Dvis_IntArgbPre.c1109 int right, bottom; local
1121 bottom = top + height;
1133 if (bottom > clipBottom) {
1134 bottom = clipBottom;
1136 if (right <= left || bottom <= top) {
1140 height = bottom - top;
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11TextRenderer_md.c110 int y, left, top, right, bottom, width, height; local
135 bottom = top + height;
147 if (bottom > clipBottom) {
148 bottom = clipBottom;
150 if (right <= left || bottom <= top) {
154 height = bottom - top;
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DConfigurationImpl.java100 * Argument for command line option "-bottom".
102 public String bottom = ""; field in class:ConfigurationImpl
241 } else if (opt.equals("-bottom")) {
242 bottom = os[1];
328 option.equals("-bottom") ||
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCellTypeState.java164 "check to make sure top/bottom info is not used");
216 "merge of bottom values is handled elsewhere");
292 public static CellTypeState bottom = CellTypeState.makeBottom(); field in class:CellTypeState
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DcardTableExtension.cpp136 jbyte* current_card = byte_for(sp->bottom());
147 oop* bottom = (oop*)addr_for(first_nonclean_card); local
149 oop* bottom_obj = (oop*)start_array->object_start((HeapWord*)bottom);
150 // bottom_obj = (oop*)start_array->object_start((HeapWord*)bottom);
151 assert(bottom_obj <= bottom, "just checking");
153 if (bottom < prev_top) bottom = prev_top;
232 jbyte* start_card = byte_for(sp->bottom());
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dos_bsd_zero.cpp321 static void current_stack_region(address *bottom, size_t *size) { argument
431 *bottom = stack_bottom;
436 address bottom; local
438 current_stack_region(&bottom, &size);
439 return bottom + size;
444 address bottom; local
446 current_stack_region(&bottom, &size);
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dos_linux_x86.cpp697 // ** P1 (aka bottom) and size ( P2 = P1 - size) are the address and stack size returned from
700 static void current_stack_region(address * bottom, size_t * size) { argument
704 *bottom = os::Linux::initial_thread_stack_bottom();
720 if (pthread_attr_getstack(&attr, (void **)bottom, size) != 0) {
727 assert(os::current_stack_pointer() >= *bottom &&
728 os::current_stack_pointer() < *bottom + *size, "just checking");
732 address bottom;
734 current_stack_region(&bottom, &size);
735 return (bottom + size);
740 address bottom;
[all...]
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.cpp311 static void current_stack_region(address *bottom, size_t *size) { argument
375 *bottom = stack_bottom;
380 address bottom; local
382 current_stack_region(&bottom, &size);
383 return bottom + size;
388 address bottom; local
390 current_stack_region(&bottom, &size);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaUtilControlSize.java226 this.insets = new InsetsUIResource(desc.insets.top, desc.insets.left, desc.insets.bottom, desc.insets.right);
227 this.margins = new InsetsUIResource(desc.margins.top, desc.margins.left, desc.margins.bottom, desc.margins.right);
240 this.insets = new InsetsUIResource(i.top, i.left, i.bottom, i.right);
244 public SizeVariant alterInsets(final int top, final int left, final int bottom, final int right) { argument
245 insets = generateInsets(insets, top, left, bottom, right);
254 public SizeVariant alterMargins(final int top, final int left, final int bottom, final int right) { argument
255 margins = generateInsets(margins, top, left, bottom, right);
276 static Insets generateInsets(final Insets i, final int top, final int left, final int bottom, final int right) { argument
277 if (i == null) return new InsetsUIResource(top, left, bottom, right);
280 i.bottom
[all...]
H A DAquaSpinnerUI.java172 height = height - insets.top - insets.bottom;
475 public SpinPainter(final AbstractButton top, final AbstractButton bottom) { argument
480 if (bottom != null) {
481 fBottomModel = bottom.getModel();
575 size.height += insets.top + insets.bottom;
592 final int availHeight = parent.getHeight() - (insets.top + insets.bottom);
/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/
H A DJulesAATileGenerator.java52 int left, right, top, bottom, width, height; field in class:JulesAATileGenerator
106 bottom = traps.getBottom();
113 bbox[3] = bottom;
116 height = bottom - top;
136 int bottom = traps.getBottom(i) - topFP;
146 bottom = bottom > 0 ? bottom - 1 : bottom;
149 int endTileY = bottom / TILE_SIZE_F
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTreeUI.java518 int bottom) {
520 paintContext, "Tree.verticalLine", g, x, top, x, bottom, linesStyle);
517 paintVerticalLine(Graphics g, JComponent c, int x, int top, int bottom) argument
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dos_bsd_x86.cpp928 // ** P1 (aka bottom) and size ( P2 = P1 - size) are the address and stack size returned from
931 static void current_stack_region(address * bottom, size_t * size) { argument
936 *bottom = (address) stacktop - *size;
944 *bottom = (address)((char *)ss.ss_sp - ss.ss_size);
960 if (pthread_attr_getstackaddr(&attr, (void **)bottom) != 0 ||
970 *bottom = os::Bsd::initial_thread_stack_bottom();
986 if (pthread_attr_getstack(&attr, (void **)bottom, size) != 0) {
994 assert(os::current_stack_pointer() >= *bottom &&
995 os::current_stack_pointer() < *bottom + *size, "just checking");
999 address bottom;
[all...]
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dos_linux_sparc.cpp167 static void current_stack_region(address* bottom, size_t* size) { argument
171 *bottom = os::Linux::initial_thread_stack_bottom();
187 if (pthread_attr_getstack(&attr, (void**)bottom, size) != 0) {
193 assert(os::current_stack_pointer() >= *bottom &&
194 os::current_stack_pointer() < *bottom + *size, "just checking");
198 address bottom;
200 current_stack_region(&bottom, &size);
201 return bottom + size;
206 address bottom;
208 current_stack_region(&bottom,
[all...]

Completed in 105 milliseconds

123