Searched refs:ignore_bytes_ (Results 1 – 1 of 1) sorted by relevance
81 bool OutputFull() const { return !ignore_bytes_ && !output_buffer_remaining_; } in OutputFull()87 size_t ignore_bytes_ = 0; member in android::snapshot::StreamDecompressor102 ignore_bytes_ = ignore_bytes; in Decompress()169 while (ignore_bytes_ && z_.avail_in) { in PartialDecompress()171 size_t max_ignore = std::min(ignore_bytes_, ignore_buffer.size()); in PartialDecompress()182 CHECK_LE(returned, ignore_bytes_); in PartialDecompress()184 ignore_bytes_ -= returned; in PartialDecompress()243 while (available_in && ignore_bytes_ && !BrotliDecoderIsFinished(decoder_)) { in PartialDecompress()245 size_t max_ignore = std::min(ignore_bytes_, ignore_buffer.size()); in PartialDecompress()258 ignore_bytes_ -= max_ignore - ignore_size; in PartialDecompress()