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

  /external/chromium/sdch/open-vcdiff/src/
codetable_test.cc 29 : code_table_data_(VCDiffCodeTableData::kDefaultCodeTableData) { }
96 EXPECT_EQ(inst, code_table_data_.inst1[opcode]);
97 EXPECT_EQ(size, code_table_data_.size1[opcode]);
98 EXPECT_EQ(mode, code_table_data_.mode1[opcode]);
99 EXPECT_EQ(VCD_NOOP, code_table_data_.inst2[opcode]);
100 EXPECT_EQ(0, code_table_data_.size2[opcode]);
101 EXPECT_EQ(0, code_table_data_.mode2[opcode]);
105 return code_table_data_.Validate();
123 VCDiffCodeTableData code_table_data_; member in class:open_vcdiff::__anon4254::CodeTableTest
134 code_table_data_.size1[131] = 0xFF
    [all...]
decodetable.cc 29 : code_table_data_(&VCDiffCodeTableData::kDefaultCodeTableData),
45 code_table_data_ = non_default_code_table_data_.get();
69 instruction_type = code_table_data_->inst2[opcode];
70 instruction_size = code_table_data_->size2[opcode];
71 instruction_mode = code_table_data_->mode2[opcode];
79 if (code_table_data_->inst2[opcode] != VCD_NOOP) {
86 instruction_type = code_table_data_->inst1[opcode];
87 instruction_size = code_table_data_->size1[opcode];
88 instruction_mode = code_table_data_->mode1[opcode];
decodetable.h 128 const VCDiffCodeTableData* code_table_data_; member in class:open_vcdiff::VCDiffCodeTableReader
encodetable.cc 44 code_table_data_(&VCDiffCodeTableData::kDefaultCodeTableData),
63 code_table_data_(&code_table_data),
72 if (code_table_data_ != &VCDiffCodeTableData::kDefaultCodeTableData) {
90 if (code_table_data_ == &VCDiffCodeTableData::kDefaultCodeTableData) {
93 instruction_map_ = new VCDiffInstructionMap(*code_table_data_, max_mode_);
155 (code_table_data_->inst1[last_opcode] == VCD_ADD)) {
encodetable.h 194 const VCDiffCodeTableData* code_table_data_; member in class:open_vcdiff::VCDiffCodeTableWriter
198 // of the same information that is found in code_table_data_.

Completed in 102 milliseconds