Home
last modified time | relevance | path

Searched refs:instructions_and_sizes_ (Results 1 – 6 of 6) sorted by relevance

/external/chromium/sdch/open-vcdiff/src/
Ddecodetable_test.cc33 : instructions_and_sizes_(instruction_buffer_size), in DecodeTableTest()
36 instructions_and_sizes_ptr_ = &instructions_and_sizes_[0]; in DecodeTableTest()
154 std::vector<char> instructions_and_sizes_; member in open_vcdiff::__anonf7aa8dae0111::DecodeTableTest
171 instructions_and_sizes_[0] = 1; in TEST_F()
172 VarintBE<VCDAddress>::Encode(257, &instructions_and_sizes_[1]); in TEST_F()
181 instructions_and_sizes_[0] = 0; in TEST_F()
182 VarintBE<VCDAddress>::Encode(111, &instructions_and_sizes_[1]); in TEST_F()
191 instructions_and_sizes_[0] = 58; in TEST_F()
192 instructions_and_sizes_[1] = 0; in TEST_F()
201 instructions_and_sizes_[0] = 175; in TEST_F()
[all …]
Dencodetable.cc79 data_for_add_and_run_ = &instructions_and_sizes_; in InitSectionPointers()
80 addresses_for_copy_ = &instructions_and_sizes_; in InitSectionPointers()
150 instructions_and_sizes_[last_opcode_index_]; in EncodeInstruction()
167 instructions_and_sizes_[last_opcode_index_] = in EncodeInstruction()
179 instructions_and_sizes_[last_opcode_index_] = in EncodeInstruction()
182 AppendSizeToString(size, &instructions_and_sizes_); in EncodeInstruction()
193 instructions_and_sizes_.push_back(static_cast<char>(opcode)); in EncodeInstruction()
194 last_opcode_index_ = static_cast<int>(instructions_and_sizes_.size() - 1); in EncodeInstruction()
205 instructions_and_sizes_.push_back(static_cast<char>(opcode)); in EncodeInstruction()
206 last_opcode_index_ = static_cast<int>(instructions_and_sizes_.size() - 1); in EncodeInstruction()
[all …]
Ddecodetable.cc31 instructions_and_sizes_(NULL), in VCDiffCodeTableReader()
52 if (!instructions_and_sizes_) { in GetNextInstruction()
57 last_instruction_start_ = *instructions_and_sizes_; in GetNextInstruction()
74 if (*instructions_and_sizes_ >= instructions_and_sizes_end_) { in GetNextInstruction()
78 opcode = **instructions_and_sizes_; in GetNextInstruction()
83 pending_second_instruction_ = **instructions_and_sizes_; in GetNextInstruction()
85 ++(*instructions_and_sizes_); in GetNextInstruction()
96 instructions_and_sizes_)) { in GetNextInstruction()
Ddecodetable.h62 instructions_and_sizes_ = instructions_and_sizes; in Init()
77 instructions_and_sizes_ = instructions_and_sizes; in UpdatePointers()
111 if (last_instruction_start_ > *instructions_and_sizes_) { in UnGetInstruction()
115 *instructions_and_sizes_ = last_instruction_start_; in UnGetInstruction()
139 const char** instructions_and_sizes_; variable
Dvcdecoder.cc222 instructions_and_sizes_.Init(data_pos, interleaved_bytes_expected_); in UpdateInterleavedSectionPointers()
224 instructions_and_sizes_.Init(data_pos, available_data); in UpdateInterleavedSectionPointers()
226 data_for_add_and_run_.Init(&instructions_and_sizes_); in UpdateInterleavedSectionPointers()
227 addresses_for_copy_.Init(&instructions_and_sizes_); in UpdateInterleavedSectionPointers()
276 DeltaWindowSection instructions_and_sizes_; member in open_vcdiff::VCDiffDeltaFileWindow
969 instructions_and_sizes_.Invalidate(); in Reset()
1011 instructions_and_sizes_.Init(data_for_add_and_run_.End(), in SetUpWindowSections()
1013 addresses_for_copy_.Init(instructions_and_sizes_.End(), addresses_length); in SetUpWindowSections()
1020 reader_.Init(instructions_and_sizes_.UnparsedDataAddr(), in SetUpWindowSections()
1021 instructions_and_sizes_.End()); in SetUpWindowSections()
[all …]
Dencodetable.h165 string instructions_and_sizes_; variable