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

  /external/chromium/sdch/open-vcdiff/src/
codetable.h 32 VCD_NOOP = 0,
112 static const VCDiffInstructionType N = VCD_NOOP;
decodetable.cc 60 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);
codetable_test.cc 47 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]);
instruction_map.cc 160 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)) {
instruction_map_test.cc 54 // 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, 255, 0))
    [all...]
decodetable_test.cc 50 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) &&
codetable.cc 32 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;
encodetable_test.cc 59 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 177 milliseconds