Home
last modified time | relevance | path

Searched refs:next_out_ (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/core/lib/io/snappy/
Dsnappy_outputbuffer.cc30 next_out_(output_buffer_.get()), in SnappyOutputBuffer()
121 memcpy(next_out_, data, bytes_to_copy); in AddToOutputBuffer()
123 next_out_ += bytes_to_copy; in AddToOutputBuffer()
146 next_out_ = output_buffer_.get(); in FlushOutputBufferToFile()
Dsnappy_inputbuffer.cc68 result->append(next_out_, can_read_bytes); in ReadBytesFromCache()
69 next_out_ += can_read_bytes; in ReadBytesFromCache()
109 next_out_ = output_buffer_.get(); in Inflate()
Dsnappy_outputbuffer.h111 char* next_out_; variable
Dsnappy_inputbuffer.h114 char* next_out_; variable
/external/brotli/c/enc/
Dencode.c102 uint8_t* next_out_; member
743 s->next_out_ = NULL; in BrotliEncoderInitState()
1511 if (s->next_out_) { in InjectBytePaddingBlock()
1512 destination = s->next_out_ + s->available_out_; in InjectBytePaddingBlock()
1515 s->next_out_ = destination; in InjectBytePaddingBlock()
1536 memcpy(*next_out, s->next_out_, copy_output_size); in InjectFlushOrPushOutput()
1539 s->next_out_ += copy_output_size; in InjectFlushOrPushOutput()
1553 s->next_out_ = 0; in CheckFlushComplete()
1655 s->next_out_ = storage; in BrotliEncoderCompressStreamFast()
1695 &s->available_out_, &s->next_out_); in ProcessMetadata()
[all …]