Lines Matching refs:puff_buf_out_
44 if (puff_buf_out_ != nullptr) { in Insert()
49 memmove(&puff_buf_out_[len_index_ + 3], in Insert()
50 &puff_buf_out_[len_index_ + 1], cur_literals_length_); in Insert()
57 if (puff_buf_out_ != nullptr) { in Insert()
61 puff_buf_out_[index_] = pd.byte; in Insert()
63 TEST_AND_RETURN_FALSE(pd.read_fn(&puff_buf_out_[index_], length)); in Insert()
86 if (puff_buf_out_ != nullptr) { in Insert()
90 puff_buf_out_[index_++] = in Insert()
96 if (puff_buf_out_ != nullptr) { in Insert()
100 puff_buf_out_[index_++] = kLenDistHeader | 127; in Insert()
101 puff_buf_out_[index_++] = static_cast<uint8_t>(pd.length - 3 - 127); in Insert()
107 if (puff_buf_out_ != nullptr) { in Insert()
109 WriteUint16ToByteArray(pd.distance - 1, &puff_buf_out_[index_]); in Insert()
121 if (puff_buf_out_ != nullptr) { in Insert()
125 WriteUint16ToByteArray(pd.length - 1, &puff_buf_out_[index_]); in Insert()
129 if (puff_buf_out_ != nullptr) { in Insert()
130 memcpy(&puff_buf_out_[index_], pd.block_metadata, pd.length); in Insert()
140 if (puff_buf_out_ != nullptr) { in Insert()
144 puff_buf_out_[index_++] = kLenDistHeader | 127; in Insert()
145 puff_buf_out_[index_++] = static_cast<uint8_t>(259 - 3 - 127); in Insert()
168 if (puff_buf_out_ != nullptr) { in FlushLiterals()
169 puff_buf_out_[len_index_] = in FlushLiterals()
179 if (puff_buf_out_ != nullptr) { in FlushLiterals()
180 puff_buf_out_[len_index_++] = kLiteralsHeader | 127; in FlushLiterals()
183 &puff_buf_out_[len_index_]); in FlushLiterals()