Searched defs:bot (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DcardTableExtension.cpp436 jbyte* bot = card_table->byte_for(mr.start()); local
438 while(bot <= top) {
439 assert(*bot == clean_card || *bot == verify_card, "Found unwanted or unknown card mark");
440 if (*bot == verify_card)
441 *bot = youngergen_card;
442 bot++;
H A DpsParallelCompact.cpp983 HeapWord* const bot = space->bottom(); local
987 const idx_t beg_bit = _mark_bitmap.addr_to_bit(bot);
991 const size_t beg_region = _summary_data.addr_to_region_idx(bot);
/openjdk7/hotspot/src/share/vm/opto/
H A Daddnode.cpp214 const Type *bot = bottom_type(); local
215 if( (t1 == bot) || (t2 == bot) ||
217 return bot;
H A Ddivnode.cpp503 const Type *bot = bottom_type(); local
504 if( (t1 == bot) || (t2 == bot) ||
506 return bot;
602 const Type *bot = bottom_type(); local
603 if( (t1 == bot) || (t2 == bot) ||
605 return bot;
665 const Type *bot = bottom_type(); local
666 if( (t1 == bot) || (t
753 const Type *bot = bottom_type(); local
981 const Type *bot = bottom_type(); local
1154 const Type *bot = bottom_type(); local
1189 const Type *bot = bottom_type(); local
1233 const Type *bot = bottom_type(); local
[all...]
H A Dmulnode.cpp391 const Type *bot = bottom_type(); local
392 if( (t1 == bot) || (t2 == bot) ||
394 return bot;
H A Dsubnode.cpp387 const Type *bot = bottom_type(); local
388 if( (t1 == bot) || (t2 == bot) ||
390 return bot;
539 return TypeInt::CC_LE; // 0 <= bot
541 return TypeInt::CC_GE; // bot >= 0
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageScanPoly.c72 mlib_s32 top, bot; local
234 bot = -1;
354 bot = y2;
392 for (i = top; i <= bot; i++) {
478 for (i = top; i <= bot; i++) {
561 while (leftEdges[top] > rightEdges[top] && top <= bot)
564 if (top < bot)
565 while (leftEdges[bot] > rightEdges[bot])
566 bot
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.hpp195 uint dirty_size(uint bot, uint top) const { argument
196 return (bot - top) & MOD_N_MASK;
199 // Returns the size corresponding to the given "bot" and "top".
200 uint size(uint bot, uint top) const { argument
201 uint sz = dirty_size(bot, top);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegion.hpp317 HeapWord* bot = bottom(); local
318 _prev_top_at_mark_start = bot;
319 _next_top_at_mark_start = bot;

Completed in 997 milliseconds