Home | History | Annotate | Download | only in dec

Lines Matching defs:buf_

58   uint8_t* buf_;        // We don't own this buffer in case WebPIUpdate()
90 if (br->buf_ != NULL) {
91 br->buf_ += offset;
102 const uint8_t* const new_base = mem->buf_ + mem->start_;
124 dec->parts_[last_part].buf_end_ = mem->buf_ + mem->end_;
132 // Appends data to the end of MemBuffer->buf_. It expands the allocated memory
137 const uint8_t* const old_base = mem->buf_ + mem->start_;
153 free(mem->buf_);
154 mem->buf_ = new_buf;
160 memcpy(mem->buf_ + mem->end_, data, data_size);
164 DoRemap(idec, mem->buf_ + mem->start_ - old_base);
171 const uint8_t* const old_base = mem->buf_ + mem->start_;
176 mem->buf_ = (uint8_t*)data;
179 DoRemap(idec, mem->buf_ + mem->start_ - old_base);
185 mem->buf_ = NULL;
194 free(mem->buf_);
259 idec->io_.data = mem->buf_ + mem->start_;
266 const uint8_t* data = mem->buf_ + mem->start_;
309 const uint8_t* data = idec->mem_.buf_ + idec->mem_.start_;
334 const size_t psize = br->buf_end_ - br->buf_;
346 memcpy(part0_buf, br->buf_, psize);
348 br->buf_ = part0_buf;
433 idec->mem_.start_ = token_br->buf_ - idec->mem_.buf_;