Searched refs:next_in_ (Results 1 – 8 of 8) sorted by relevance
/external/tensorflow/tensorflow/core/lib/io/snappy/ |
D | snappy_inputbuffer.cc | 30 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()
|
D | snappy_outputbuffer.cc | 27 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()
|
D | snappy_inputbuffer.h | 111 char* next_in_; variable
|
D | snappy_outputbuffer.h | 141 char* next_in_; variable
|
/external/bsdiff/ |
D | brotli_decompressor.h | 17 : brotli_decoder_state_(nullptr), next_in_(nullptr), available_in_(0) {} in BrotliDecompressor() 27 const uint8_t* next_in_; variable
|
D | brotli_decompressor.cc | 23 next_in_ = input_data; in SetInputData() 40 brotli_decoder_state_, &available_in_, &next_in_, &available_out, in Read()
|
/external/pdfium/core/fxcodec/gif/ |
D | cfx_lzwdecompressor.cpp | 37 next_in_(nullptr), in CFX_LZWDecompressor() 54 next_in_ = src_buf; in Decode() 77 FX_SAFE_UINT32 safe_code = *next_in_++; in Decode()
|
D | cfx_lzwdecompressor.h | 57 const uint8_t* next_in_; variable
|