Lines Matching refs:position_
61 position_(0), in Writer()
71 return position_; in position()
98 Ensure(position_ + sizeof(T)); in Write()
99 *RawSlotAt<T>(position_) = val; in Write()
100 position_ += sizeof(T); in Write()
116 uintptr_t slot_position = position_; in CreateSlotsHere()
117 position_ += sizeof(T) * count; in CreateSlotsHere()
118 Ensure(position_); in CreateSlotsHere()
134 uintptr_t delta = position_ % align; in Align()
137 Ensure(position_ += padding); in Align()
138 ASSERT((position_ % align) == 0); in Align()
183 uintptr_t position_; member in v8::internal::BASE_EMBEDDED