Searched refs:new_bits (Results 1 – 4 of 4) sorted by relevance
241 BitVector* new_bits = new(zone) BitVector(new_length, zone); in EnsureCapacity() local242 if (bits_ != NULL) new_bits->CopyFrom(*bits_); in EnsureCapacity()243 bits_ = new_bits; in EnsureCapacity()
200 const int new_bits = br->bit_pos_ + n_bits; in VP8LReadBits() local201 br->bit_pos_ = new_bits; in VP8LReadBits()
359 FX_DWORD new_bits = m_CodeLen - m_nLeftBits; in v_FilterIn() local360 FX_DWORD code = (m_LeftBits << new_bits) | (src_buf[i] >> (8 - new_bits)); in v_FilterIn()361 m_nLeftBits = 8 - new_bits; in v_FilterIn()
2302 int new_bits = zlib->window_bits; in zlib_advance() local2311 if (new_bits == 0) /* no change */ in zlib_advance()2314 else if (new_bits != file_bits) /* rewrite required */ in zlib_advance()2315 bIn = (png_byte)((bIn & 0xf) + ((new_bits-8) << 4)); in zlib_advance()