Searched refs:VCD_NOOP (Results 1 - 8 of 8) sorted by relevance

/external/chromium/sdch/open-vcdiff/src/
H A Dcodetable.h32 VCD_NOOP = 0, enumerator in enum:open_vcdiff::VCDiffInstructionType
112 static const VCDiffInstructionType N = VCD_NOOP;
H A Ddecodetable.cc60 unsigned char instruction_type = VCD_NOOP;
79 if (code_table_data_->inst2[opcode] != VCD_NOOP) {
89 // This do-while loop is necessary in case inst1 == VCD_NOOP for an opcode
92 } while (instruction_type == VCD_NOOP);
H A Dcodetable_test.cc47 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1;
50 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2;
99 EXPECT_EQ(VCD_NOOP, code_table_data_.inst2[opcode]);
109 // will equal 8 (VCD_NOOP, VCD_ADD, VCD_RUN, VCD_COPY modes 0 - 4).
183 code_table_data_.inst1[20] = VCD_NOOP;
193 code_table_data_.inst1[20] = VCD_NOOP;
237 EXPECT_EQ(VCD_NOOP, code_table_data_.inst2[20]);
244 EXPECT_EQ(VCD_NOOP, code_table_data_.inst2[20]);
H A Dinstruction_map.cc160 if (code_table_data.inst2[opcode] == VCD_NOOP) {
168 } else if (code_table_data.inst1[opcode] == VCD_NOOP) {
180 if ((code_table_data.inst1[opcode] != VCD_NOOP) &&
181 (code_table_data.inst2[opcode] != VCD_NOOP)) {
H A Dinstruction_map_test.cc54 // will equal 8 (VCD_NOOP, VCD_ADD, VCD_RUN, VCD_COPY modes 0 - 4).
132 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1;
135 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2;
144 if (g_exercise_code_table_->inst1[found_opcode] == VCD_NOOP) {
145 // The opcode is backwards: (VCD_NOOP, [instruction])
150 EXPECT_EQ(VCD_NOOP, g_exercise_code_table_->inst1[found_opcode]);
158 EXPECT_EQ(VCD_NOOP, g_exercise_code_table_->inst2[found_opcode]);
182 EXPECT_EQ(kNoOpcode, default_map->LookupFirstOpcode(VCD_NOOP, 0, 0));
183 EXPECT_EQ(kNoOpcode, default_map->LookupFirstOpcode(VCD_NOOP, 0, 255));
184 EXPECT_EQ(kNoOpcode, default_map->LookupFirstOpcode(VCD_NOOP, 25
[all...]
H A Ddecodetable_test.cc50 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1;
53 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2;
96 if (inst == VCD_NOOP) return; // GetNextInstruction skips NOOPs
114 if (inst == VCD_NOOP) size = 0;
125 if (inst == VCD_NOOP) size = 0;
133 // will equal 8 (VCD_NOOP, VCD_ADD, VCD_RUN, VCD_COPY modes 0 - 4).
395 if ((g_exercise_code_table_->inst1[opcode] != VCD_NOOP) &&
403 if ((g_exercise_code_table_->inst2[opcode] != VCD_NOOP) &&
H A Dcodetable.cc32 case VCD_NOOP:
49 // at runtime. The letters "N", "A", "R", and "C" are defined as VCD_NOOP,
211 if ((inst == VCD_NOOP) && (size != 0)) {
252 (inst2[i] == VCD_NOOP) &&
259 if (i == VCD_NOOP) continue;
H A Dencodetable_test.cc59 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1;
62 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2;
134 // will equal 8 (VCD_NOOP, VCD_ADD, VCD_RUN, VCD_COPY modes 0 - 4).

Completed in 85 milliseconds