Searched refs:beyond_ (Results 1 – 1 of 1) sorted by relevance
36 : buffer_(buffer), cursor_(buffer), beyond_(buffer + len) { in DecodeBuffer()51 bool Empty() const { return cursor_ >= beyond_; } in Empty()52 bool HasData() const { return cursor_ < beyond_; } in HasData()54 QUICHE_DCHECK_LE(cursor_, beyond_); in Remaining()55 return beyond_ - cursor_; in Remaining()58 size_t FullSize() const { return beyond_ - buffer_; } in FullSize()121 const char* const beyond_; variable