Lines Matching refs:to_process
591 const size_t to_process = data_available - tag_length_;
592 const size_t to_process_from_tag_buf = min(to_process, tag_buf_length_);
593 const size_t to_process_from_input = to_process - to_process_from_tag_buf;
595 if (!output->reserve(to_process + AES_BLOCK_SIZE))
612 bool AesEvpDecryptOperation::ProcessTagBufContentsAsData(size_t to_process, Buffer* output,
614 assert(to_process <= tag_buf_length_);
615 if (!InternalUpdate(tag_buf_.get(), to_process, output, error))
617 if (to_process < tag_buf_length_)
618 memmove(tag_buf_.get(), tag_buf_.get() + to_process, tag_buf_length_ - to_process);
619 tag_buf_length_ -= to_process;