Searched defs:new_top (Results 1 - 5 of 5) sorted by relevance

/external/v8/src/
H A Dspaces-inl.h254 Address new_top = current_top + size_in_bytes; local
255 if (new_top > allocation_info_.limit) return NULL;
257 allocation_info_.top = new_top;
H A Dincremental-marking.cc583 int new_top = current; local
595 array[new_top] = dest;
596 new_top = ((new_top + 1) & mask);
597 ASSERT(new_top != marking_deque_.bottom());
607 array[new_top] = obj;
608 new_top = ((new_top + 1) & mask);
609 ASSERT(new_top != marking_deque_.bottom());
617 marking_deque_.set_top(new_top);
[all...]
H A Dstore-buffer.cc260 Address* new_top = old_start_; local
272 *new_top++ = addr;
275 old_top_ = new_top;
H A Dspaces.cc1199 Address new_top = old_top + size_in_bytes; local
1207 int bytes_allocated = static_cast<int>(new_top - top_on_previous_step_);
1210 top_on_previous_step_ = new_top;
2210 Address new_top = current_top + size_in_bytes; local
2211 if (new_top <= allocation_info_.limit) return true;
/external/freetype/src/truetype/
H A Dttinterp.h131 FT_UInt new_top; /* new top after exec. */ member in struct:TT_ExecContextRec_

Completed in 133 milliseconds