Home | History | Annotate | Download | only in Wrap

Lines Matching refs:buffer

117     // front of the buffer. This allows us to assume
129 // Assume the buffer contents have been used,
134 // If we don't have an input, we can't refill the buffer at all.
167 uint8_t buffer[kWordSize];
168 buffer[3] = (value >> 24) & 0xFF;
169 buffer[2] = (value >> 16) & 0xFF;
170 buffer[1] = (value >> 8) & 0xFF;
171 buffer[0] = (value >> 0) & 0xFF;
172 return outfile_->Write(buffer, kWordSize);
176 // This buffer may have to be bigger if we start using the fields
178 uint8_t buffer[kMaxVariableFieldSize];
181 if (!it->Write(buffer, kMaxVariableFieldSize) ||
182 !outfile_->Write(buffer, it->GetTotalSize())) {
313 // Be sure buffer is non-empty before writing.
320 // copy the buffer to the output file.