Searched refs:next_in_ (Results 1 – 11 of 11) sorted by relevance
/external/tensorflow/tensorflow/core/lib/io/snappy/ |
D | snappy_outputbuffer.cc | 27 next_in_(input_buffer_.get()), in SnappyOutputBuffer() 61 next_in_ = const_cast<char*>(data.data()); in Write() 68 next_in_ = input_buffer_.get(); in Write() 105 const int32 read_bytes = next_in_ - input_buffer_.get(); in AddToInputBuffer() 111 memmove(input_buffer_.get(), next_in_, avail_in_); in AddToInputBuffer() 112 next_in_ = input_buffer_.get(); in AddToInputBuffer() 114 memcpy(next_in_ + avail_in_, data.data(), bytes_to_write); in AddToInputBuffer() 136 next_in_ = input_buffer_.get(); in DeflateBuffered() 159 if (!port::Snappy_Compress(next_in_, avail_in_, &output)) { in Deflate() 174 next_in_ += avail_in_; in Deflate()
|
D | snappy_inputbuffer.cc | 30 next_in_(input_buffer_.get()) {} in SnappyInputBuffer() 59 next_in_ = input_buffer_.get(); in Reset() 99 if (!port::Snappy_GetUncompressedLength(next_in_, compressed_block_length, in Inflate() 111 bool status = port::Snappy_Uncompress(next_in_, compressed_block_length, in Inflate() 116 next_in_ += compressed_block_length; in Inflate() 135 *length = (*length << 8) | static_cast<unsigned char>(next_in_[0]); in ReadCompressedBlockLength() 137 next_in_++; in ReadCompressedBlockLength() 152 size_t read_bytes = next_in_ - input_buffer_.get(); in ReadFromFile() 156 memmove(input_buffer_.get(), next_in_, avail_in_); in ReadFromFile() 171 next_in_ = input_buffer_.get(); in ReadFromFile()
|
D | snappy_outputbuffer.h | 105 char* next_in_; variable
|
D | snappy_inputbuffer.h | 111 char* next_in_; variable
|
/external/pdfium/core/fxcodec/gif/ |
D | cfx_gifcontext_unittest.cpp | 26 EXPECT_EQ(nullptr, context.next_in_); in TEST() 31 EXPECT_EQ(nullptr, context.next_in_); in TEST() 37 EXPECT_EQ(buffer, context.next_in_); in TEST() 42 EXPECT_EQ(buffer, context.next_in_); in TEST() 47 EXPECT_EQ(buffer, context.next_in_); in TEST() 70 EXPECT_EQ(reinterpret_cast<uint8_t*>(src_buffer), context.next_in_); in TEST() 79 EXPECT_EQ(src_buffer, context.next_in_); in TEST() 88 EXPECT_EQ(src_buffer, context.next_in_); in TEST() 96 EXPECT_EQ(src_buffer, context.next_in_); in TEST() 104 EXPECT_EQ(src_buffer, context.next_in_); in TEST()
|
D | cfx_lzwdecompressor.cpp | 38 next_in_(nullptr), in CFX_LZWDecompressor() 55 next_in_ = src_buf; in Decode() 78 pdfium::base::CheckedNumeric<uint32_t> safe_code = *next_in_++; in Decode()
|
D | cfx_gifcontext.cpp | 33 next_in_(nullptr), in CFX_GifContext() 337 next_in_ = src_buf; in SetInputBuffer() 346 *avail_buf = next_in_; in GetAvailInput() 352 if (!next_in_) in ReadData() 363 *des_buf_pp = next_in_ + skip_size_; in ReadData() 422 next_in_ += skip_size_; in SaveDecodingStatus()
|
D | cfx_lzwdecompressor.h | 59 uint8_t* next_in_; variable
|
D | cfx_gifcontext.h | 57 uint8_t* 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()
|