Searched refs:end_ (Results 1 – 2 of 2) sorted by relevance
93 end_ = NULL; in Decoder()135 end_ = buf_ + rval; in Open()140 assert(next_ <= end_); in FillBuffer()142 if (end_ - next_ < kDecodingSpace && end_ == &buf_[kBufSize]) { in FillBuffer()145 int len = end_ - next_; in FillBuffer()162 end_ = &buf_[len + rval]; in FillBuffer()170 int nbytes = end_ - next_; in Read()173 nbytes = end_ - next_; in Read()208 if (end_ - next_ < kDecodingSpace) in Decode()217 if (next_ + len > end_) { in Decode()[all …]
15 bool IsEOF() { return (end_ == next_) && feof(fstream_); } in IsEOF()27 uint8_t *end_; variable