Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/lib/io/snappy/
Dsnappy_outputbuffer.cc27 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()
Dsnappy_inputbuffer.cc30 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()
Dsnappy_outputbuffer.h105 char* next_in_; variable
Dsnappy_inputbuffer.h111 char* next_in_; variable
/external/pdfium/core/fxcodec/gif/
Dcfx_gifcontext_unittest.cpp26 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()
Dcfx_lzwdecompressor.cpp38 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()
Dcfx_gifcontext.cpp33 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()
Dcfx_lzwdecompressor.h59 uint8_t* next_in_; variable
Dcfx_gifcontext.h57 uint8_t* 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()