Lines Matching refs:end_
62 : start_(start), pc_(pc), end_(end), buffer_offset_(buffer_offset) {
73 if (V8_UNLIKELY(pc > end_ || length > static_cast<uint32_t>(end_ - pc))) {
227 pc_ = end_;
231 // Check that at least {size} bytes exist between {pc_} and {end_}.
233 DCHECK_LE(pc_, end_);
234 if (V8_UNLIKELY(size > static_cast<uint32_t>(end_ - pc_))) {
293 traceByteRange(pc_, end_);
313 end_ = end;
324 bool more() const { return pc_ < end_; }
346 const byte* end() const { return end_; }
347 void set_end(const byte* end) { end_ = end; }
351 DCHECK_LE(pc_, end_);
352 return end_ - pc_ > offset && pc_[offset] == expected;
358 const byte* end_;
390 pc_ = end_;
408 if ((!validate || V8_LIKELY(pc < end_)) && !(*pc & 0x80)) {
444 const bool at_end = validate && pc >= end_;
447 DCHECK_LT(pc, end_);