bottom            166 gc/cord/de_win.c     rectp -> bottom = rectp->top + char_height;
bottom            204 gc/cord/de_win.c       	   LINES = (client_area.bottom - client_area.top)/char_height;
bottom            278 gc/cord/de_win.c       	   LINES = (client_area.bottom - client_area.top)/char_height;
bottom            323 gc/include/private/gc_pmark.h mse * GC_mark_from GC_PROTO((mse * top, mse * bottom, mse *limit));
bottom           1303 gc/include/private/gc_priv.h void GC_push_all GC_PROTO((ptr_t bottom, ptr_t top));
bottom           1307 gc/include/private/gc_priv.h     ptr_t bottom, \
bottom           1310 gc/include/private/gc_priv.h     void (*push_fn) GC_PROTO((ptr_t bottom, ptr_t top)) ));
bottom           1330 gc/include/private/gc_priv.h       ptr_t bottom, ptr_t top, ptr_t cold_gc_frame ));
bottom           1194 gc/mark.c      void GC_push_all(bottom, top)
bottom           1195 gc/mark.c      ptr_t bottom;
bottom           1200 gc/mark.c          bottom = (ptr_t)(((word) bottom + ALIGNMENT-1) & ~(ALIGNMENT-1));
bottom           1202 gc/mark.c          if (top == 0 || bottom == top) return;
bottom           1207 gc/mark.c          length = top - bottom;
bottom           1212 gc/mark.c          GC_mark_stack_top -> mse_start = (word *)bottom;
bottom           1226 gc/mark.c      void GC_push_selected(bottom, top, dirty_fn, push_fn)
bottom           1227 gc/mark.c      ptr_t bottom;
bottom           1230 gc/mark.c      void (*push_fn) GC_PROTO((ptr_t bottom, ptr_t top));
bottom           1234 gc/mark.c          bottom = (ptr_t)(((long) bottom + ALIGNMENT-1) & ~(ALIGNMENT-1));
bottom           1237 gc/mark.c          if (top == 0 || bottom == top) return;
bottom           1238 gc/mark.c          h = HBLKPTR(bottom + HBLKSIZE);
bottom           1241 gc/mark.c      	    (*push_fn)(bottom, top);
bottom           1246 gc/mark.c              (*push_fn)(bottom, (ptr_t)h);
bottom           1283 gc/mark.c      void GC_push_conditional(bottom, top, all)
bottom           1284 gc/mark.c      ptr_t bottom;
bottom           1292 gc/mark.c      	    GC_push_selected(bottom, top, GC_page_was_ever_dirty, GC_push_all);
bottom           1294 gc/mark.c      	    GC_push_all(bottom, top);
bottom           1297 gc/mark.c            	GC_push_all(bottom, top);
bottom           1300 gc/mark.c      	GC_push_selected(bottom, top, GC_page_was_dirty, GC_push_all);
bottom           1449 gc/mark.c      void GC_push_all_eager(bottom, top)
bottom           1450 gc/mark.c      ptr_t bottom;
bottom           1453 gc/mark.c          word * b = (word *)(((word) bottom + ALIGNMENT-1) & ~(ALIGNMENT-1));
bottom           1483 gc/mark.c      void GC_push_all_stack_partially_eager(bottom, top, cold_gc_frame)
bottom           1484 gc/mark.c      ptr_t bottom;
bottom           1494 gc/mark.c      	GC_push_all_stack(bottom, top);
bottom           1497 gc/mark.c          GC_ASSERT(bottom <= cold_gc_frame && cold_gc_frame <= top);
bottom           1500 gc/mark.c      	GC_push_all_eager(bottom, cold_gc_frame);
bottom           1502 gc/mark.c      	GC_push_all(bottom, cold_gc_frame + sizeof(ptr_t));
bottom           1506 gc/mark.c          GC_push_all_eager(bottom, top);
bottom           1509 gc/mark.c            GC_add_trace_entry("GC_push_all_stack", bottom, top);
bottom           1514 gc/mark.c      void GC_push_all_stack(bottom, top)
bottom           1515 gc/mark.c      ptr_t bottom;
bottom           1519 gc/mark.c          GC_push_all(bottom, top);
bottom           1521 gc/mark.c          GC_push_all_eager(bottom, top);
bottom            460 gc/mark_rts.c  void GC_push_conditional_with_exclusions(bottom, top, all)
bottom            461 gc/mark_rts.c  ptr_t bottom;
bottom            468 gc/mark_rts.c      while (bottom < top) {
bottom            469 gc/mark_rts.c          next = GC_next_exclusion(bottom);
bottom            471 gc/mark_rts.c  	    GC_push_conditional(bottom, top, all);
bottom            474 gc/mark_rts.c  	if (excl_start > bottom) GC_push_conditional(bottom, excl_start, all);
bottom            475 gc/mark_rts.c  	bottom = next -> e_end;
bottom            690 gc/solaris_threads.c     register ptr_t bottom, top;
bottom            693 gc/solaris_threads.c #   define PUSH(bottom,top) \
bottom            695 gc/solaris_threads.c 	GC_push_selected((bottom), (top), GC_page_was_ever_dirty, \
bottom            698 gc/solaris_threads.c         GC_push_all_stack((bottom), (top)); \
bottom            706 gc/solaris_threads.c             bottom = p -> stack;
bottom            710 gc/solaris_threads.c             bottom = GC_stackbottom - GC_get_orig_stack_size() + GC_page_size;
bottom            713 gc/solaris_threads.c         if ((word)sp > (word)bottom && (word)sp < (word)top) bottom = sp;
bottom            714 gc/solaris_threads.c         PUSH(bottom, top);
bottom            724 gc/solaris_threads.c     register ptr_t bottom, top;
bottom            319 gc/win32_threads.c 	ptr_t bottom;
bottom            323 gc/win32_threads.c 	    bottom = info.BaseAddress;
bottom            324 gc/win32_threads.c 	    VirtualQuery(bottom - 1, &info, sizeof(info));
bottom            327 gc/win32_threads.c 	return(bottom);