Searched defs:next_out_ (Results 1 - 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/core/lib/io/snappy/
H A Dsnappy_inputbuffer.h85 // Starts reading bytes at `next_out_` till either `bytes_to_read`
86 // bytes have been read or `next_out_` is reached.
87 // Returns the number of bytes read and advances the `next_out_`
114 char* next_out_; member in class:tensorflow::io::SnappyInputBuffer
119 // Number of unread bytes bytes available at `next_out_` in `output_buffer_`.
H A Dsnappy_outputbuffer.h111 char* next_out_; member in class:tensorflow::io::SnappyOutputBuffer
/external/brotli/c/enc/
H A Dencode.c100 uint8_t* next_out_; member in struct:BrotliEncoderStateStruct
699 s->next_out_ = NULL;
1415 if (s->next_out_) {
1416 destination = s->next_out_ + s->available_out_;
1419 s->next_out_ = destination;
1439 memcpy(*next_out, s->next_out_, copy_output_size);
1442 s->next_out_ += copy_output_size;
1456 s->next_out_ = 0;
1557 s->next_out_ = storage;
1597 &s->available_out_, &s->next_out_);
[all...]

Completed in 136 milliseconds