HomeSort by relevance Sort by last modified time
    Searched refs:instructions_and_sizes_ (Results 1 - 6 of 6) sorted by null

  /external/chromium/sdch/open-vcdiff/src/
decodetable.cc 31 instructions_and_sizes_(NULL),
52 if (!instructions_and_sizes_) {
57 last_instruction_start_ = *instructions_and_sizes_;
74 if (*instructions_and_sizes_ >= instructions_and_sizes_end_) {
78 opcode = **instructions_and_sizes_;
83 pending_second_instruction_ = **instructions_and_sizes_;
85 ++(*instructions_and_sizes_);
96 instructions_and_sizes_)) {
decodetable.h 62 instructions_and_sizes_ = instructions_and_sizes;
77 instructions_and_sizes_ = instructions_and_sizes;
87 // In the first of these cases, increments *instructions_and_sizes_
111 if (last_instruction_start_ > *instructions_and_sizes_) {
115 *instructions_and_sizes_ = last_instruction_start_;
139 const char** instructions_and_sizes_; member in class:open_vcdiff::VCDiffCodeTableReader
decodetable_test.cc 33 : instructions_and_sizes_(instruction_buffer_size),
36 instructions_and_sizes_ptr_ = &instructions_and_sizes_[0];
154 std::vector<char> instructions_and_sizes_; member in class:open_vcdiff::__anon4255::DecodeTableTest
171 instructions_and_sizes_[0] = 1;
172 VarintBE<VCDAddress>::Encode(257, &instructions_and_sizes_[1]);
181 instructions_and_sizes_[0] = 0;
182 VarintBE<VCDAddress>::Encode(111, &instructions_and_sizes_[1]);
191 instructions_and_sizes_[0] = 58;
192 instructions_and_sizes_[1] = 0;
201 instructions_and_sizes_[0] = 175
    [all...]
encodetable.cc 79 data_for_add_and_run_ = &instructions_and_sizes_;
80 addresses_for_copy_ = &instructions_and_sizes_;
119 // instructions_and_sizes_, followed by a representation of its size
122 // As an example, say instructions_and_sizes_ contains 10 bytes, the last
131 // need to be written to the instructions_and_sizes_ string separately
133 // this property, then instructions_and_sizes_ might contain a
150 instructions_and_sizes_[last_opcode_index_];
167 instructions_and_sizes_[last_opcode_index_] =
179 instructions_and_sizes_[last_opcode_index_] =
182 AppendSizeToString(size, &instructions_and_sizes_);
    [all...]
encodetable.h 123 // addresses_for_copy_ to point at instructions_and_sizes_,
135 // instructions_and_sizes_ string.
165 string instructions_and_sizes_; member in class:open_vcdiff::VCDiffCodeTableWriter
170 // separate_data_for_add_and_run_ or to instructions_and_sizes_.
178 // separate_addresses_for_copy_ or to instructions_and_sizes_.
202 // The zero-based index within instructions_and_sizes_ of the byte
206 // because instructions_and_sizes_ may be resized, which would invalidate
vcdecoder.cc 156 // instructions_and_sizes_, data_for_add_and_run_, and addresses_for_copy_ so
177 // It sets up the DeltaWindowSections instructions_and_sizes_,
222 instructions_and_sizes_.Init(data_pos, interleaved_bytes_expected_);
224 instructions_and_sizes_.Init(data_pos, available_data);
226 data_for_add_and_run_.Init(&instructions_and_sizes_);
227 addresses_for_copy_.Init(&instructions_and_sizes_);
237 // data_for_add_and_run_ should point at instructions_and_sizes_.
274 // instructions_and_sizes_; otherwise, they will be separate data sections.
276 DeltaWindowSection instructions_and_sizes_; member in class:open_vcdiff::VCDiffDeltaFileWindow
280 // The expected bytes left to decode in instructions_and_sizes_. Only use
    [all...]

Completed in 59 milliseconds