/external/bsdiff/ |
brotli_decompressor.h | 17 : brotli_decoder_state_(nullptr), next_in_(nullptr), available_in_(0) {} 26 const uint8_t* next_in_; member in class:bsdiff::BrotliDecompressor
|
brotli_decompressor.cc | 18 next_in_ = input_data; 31 brotli_decoder_state_, &available_in_, &next_in_, &available_out,
|
/external/tensorflow/tensorflow/core/lib/io/snappy/ |
snappy_inputbuffer.cc | 30 next_in_(input_buffer_.get()) {} 59 next_in_ = input_buffer_.get(); 99 if (!port::Snappy_GetUncompressedLength(next_in_, compressed_block_length, 111 bool status = port::Snappy_Uncompress(next_in_, compressed_block_length, 116 next_in_ += compressed_block_length; 135 *length = (*length << 8) | static_cast<unsigned char>(next_in_[0]); 137 next_in_++; 152 size_t read_bytes = next_in_ - input_buffer_.get(); 156 memmove(input_buffer_.get(), next_in_, avail_in_); 171 next_in_ = input_buffer_.get() [all...] |
snappy_outputbuffer.cc | 27 next_in_(input_buffer_.get()), 61 next_in_ = const_cast<char*>(data.data()); 68 next_in_ = input_buffer_.get(); 94 // Data in the input stream is sharded as shown above. next_in_ could 105 const int32 read_bytes = next_in_ - input_buffer_.get(); 111 memmove(input_buffer_.get(), next_in_, avail_in_); 112 next_in_ = input_buffer_.get(); 114 memcpy(next_in_ + avail_in_, data.data(), bytes_to_write); 136 next_in_ = input_buffer_.get(); 159 if (!port::Snappy_Compress(next_in_, avail_in_, &output)) [all...] |
snappy_outputbuffer.h | 93 // Compresses `avail_in_` bytes at `next_in_` location in `input_buffer_` and 105 char* next_in_; member in class:tensorflow::io::SnappyOutputBuffer
|
snappy_inputbuffer.h | 67 // Looks up `next_in_` to check how much data in `input_buffer_` 80 // `next_in_`. Uncompresses the next compressed block and writes the output 111 char* next_in_; member in class:tensorflow::io::SnappyInputBuffer 116 // Number of unread bytes bytes available at `next_in_` in `input_buffer_`.
|
/external/pdfium/core/fxcodec/gif/ |
cfx_gifcontext_unittest.cpp | 26 EXPECT_EQ(nullptr, context.next_in_); 31 EXPECT_EQ(nullptr, context.next_in_); 37 EXPECT_EQ(buffer, context.next_in_); 42 EXPECT_EQ(buffer, context.next_in_); 47 EXPECT_EQ(buffer, context.next_in_); 70 EXPECT_EQ(reinterpret_cast<uint8_t*>(src_buffer), context.next_in_); 79 EXPECT_EQ(src_buffer, context.next_in_); 88 EXPECT_EQ(src_buffer, context.next_in_); 96 EXPECT_EQ(src_buffer, context.next_in_); 104 EXPECT_EQ(src_buffer, context.next_in_); [all...] |
cfx_lzwdecompressor.cpp | 38 next_in_(nullptr), 55 next_in_ = src_buf; 78 pdfium::base::CheckedNumeric<uint32_t> safe_code = *next_in_++;
|
cfx_lzwdecompressor.h | 59 uint8_t* next_in_; member in class:CFX_LZWDecompressor
|
cfx_gifcontext.h | 57 uint8_t* next_in_; member in class:CFX_GifContext
|
cfx_gifcontext.cpp | 33 next_in_(nullptr), 337 next_in_ = src_buf; 346 *avail_buf = next_in_; 352 if (!next_in_) 363 *des_buf_pp = next_in_ + skip_size_; 422 next_in_ += skip_size_;
|