Home
last modified time | relevance | path

Searched refs:next_in_ (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/core/lib/io/snappy/
Dsnappy_inputbuffer.cc30 next_in_(input_buffer_.get()), in SnappyInputBuffer()
65 next_in_ = input_buffer_.get(); in Reset()
105 if (!port::Snappy_GetUncompressedLength(next_in_, compressed_block_length, in Inflate()
117 bool status = port::Snappy_Uncompress(next_in_, compressed_block_length, in Inflate()
122 next_in_ += compressed_block_length; in Inflate()
141 *length = (*length << 8) | static_cast<unsigned char>(next_in_[0]); in ReadCompressedBlockLength()
143 next_in_++; in ReadCompressedBlockLength()
158 size_t read_bytes = next_in_ - input_buffer_.get(); in ReadFromFile()
162 memmove(input_buffer_.get(), next_in_, avail_in_); in ReadFromFile()
177 next_in_ = input_buffer_.get(); in ReadFromFile()
Dsnappy_outputbuffer.cc27 next_in_(input_buffer_.get()), in SnappyOutputBuffer()
98 next_in_ = const_cast<char*>(data.data()); in Write()
105 next_in_ = input_buffer_.get(); in Write()
142 const int32 read_bytes = next_in_ - input_buffer_.get(); in AddToInputBuffer()
148 memmove(input_buffer_.get(), next_in_, avail_in_); in AddToInputBuffer()
149 next_in_ = input_buffer_.get(); in AddToInputBuffer()
151 memcpy(next_in_ + avail_in_, data.data(), bytes_to_write); in AddToInputBuffer()
173 next_in_ = input_buffer_.get(); in DeflateBuffered()
196 if (!port::Snappy_Compress(next_in_, avail_in_, &output)) { in Deflate()
211 next_in_ += avail_in_; in Deflate()
Dsnappy_inputbuffer.h111 char* next_in_; variable
Dsnappy_outputbuffer.h141 char* next_in_; variable
/external/bsdiff/
Dbrotli_decompressor.h17 : brotli_decoder_state_(nullptr), next_in_(nullptr), available_in_(0) {} in BrotliDecompressor()
27 const uint8_t* next_in_; variable
Dbrotli_decompressor.cc23 next_in_ = input_data; in SetInputData()
40 brotli_decoder_state_, &available_in_, &next_in_, &available_out, in Read()
/external/pdfium/core/fxcodec/gif/
Dcfx_lzwdecompressor.cpp37 next_in_(nullptr), in CFX_LZWDecompressor()
54 next_in_ = src_buf; in Decode()
77 FX_SAFE_UINT32 safe_code = *next_in_++; in Decode()
Dcfx_lzwdecompressor.h57 const uint8_t* next_in_; variable