Searched refs:new_bits (Results 1 – 3 of 3) sorted by relevance
243 BitVector* new_bits = new (zone) BitVector(new_length, zone); in EnsureCapacity() local244 if (bits_ != NULL) new_bits->CopyFrom(*bits_); in EnsureCapacity()245 bits_ = new_bits; in EnsureCapacity()
212 const int new_bits = br->bit_pos_ + n_bits; in VP8LReadBits() local213 br->bit_pos_ = new_bits; in VP8LReadBits()
2301 int new_bits = zlib->window_bits; in zlib_advance() local2310 if (new_bits == 0) /* no change */ in zlib_advance()2313 else if (new_bits != file_bits) /* rewrite required */ in zlib_advance()2314 bIn = (png_byte)((bIn & 0xf) + ((new_bits-8) << 4)); in zlib_advance()