OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VCD_COPY
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/sdch/open-vcdiff/src/
instruction_map_test.cc
54
// will equal 8 (VCD_NOOP, VCD_ADD, VCD_RUN,
VCD_COPY
modes 0 - 4).
88
if (inst_mode1 >
VCD_COPY
) {
89
inst1 =
VCD_COPY
;
90
mode1 = inst_mode1 -
VCD_COPY
;
97
if (inst_mode2 >
VCD_COPY
) {
98
inst2 =
VCD_COPY
;
99
mode2 = inst_mode2 -
VCD_COPY
;
223
EXPECT_EQ(19, default_map->LookupFirstOpcode(
VCD_COPY
, 0, 0));
224
EXPECT_EQ(20, default_map->LookupFirstOpcode(
VCD_COPY
, 4, 0));
225
EXPECT_EQ(21, default_map->LookupFirstOpcode(
VCD_COPY
, 5, 0))
[
all
...]
codetable.h
35
VCD_COPY
= 3,
36
VCD_LAST_INSTRUCTION_TYPE =
VCD_COPY
,
115
static const VCDiffInstructionType C =
VCD_COPY
;
codetable_test.cc
61
if (inst_mode1 >
VCD_COPY
) {
62
inst1 =
VCD_COPY
;
63
mode1 = inst_mode1 -
VCD_COPY
;
70
if (inst_mode2 >
VCD_COPY
) {
71
inst2 =
VCD_COPY
;
72
mode2 = inst_mode2 -
VCD_COPY
;
109
// will equal 8 (VCD_NOOP, VCD_ADD, VCD_RUN,
VCD_COPY
modes 0 - 4).
133
VerifyInstruction(/* opcode */ 131,
VCD_COPY
, /* size */ 0, /* mode */ 7);
162
VerifyInstruction(/* opcode */ 131,
VCD_COPY
, /* size */ 0, /* mode */ 7);
182
VerifyInstruction(/* opcode */ 20,
VCD_COPY
, /* size */ 4, /* mode */ 0)
[
all
...]
decodetable_test.cc
64
if (inst_mode1 >
VCD_COPY
) {
65
inst1 =
VCD_COPY
;
66
mode1 = inst_mode1 -
VCD_COPY
;
73
if (inst_mode2 >
VCD_COPY
) {
74
inst2 =
VCD_COPY
;
75
mode2 = inst_mode2 -
VCD_COPY
;
133
// will equal 8 (VCD_NOOP, VCD_ADD, VCD_RUN,
VCD_COPY
modes 0 - 4).
195
EXPECT_EQ(
VCD_COPY
, found_inst);
209
EXPECT_EQ(
VCD_COPY
, found_inst);
219
EXPECT_EQ(
VCD_COPY
, found_inst)
[
all
...]
instruction_map.h
112
int inst_mode = (inst ==
VCD_COPY
) ? (inst + mode) : inst;
124
// rather (number of VCDiffInstructionType values other than
VCD_COPY
)
128
//
VCD_COPY
being the last instruction type. The inst+mode values are:
encodetable_test.cc
72
if (inst_mode1 >
VCD_COPY
) {
73
inst1 =
VCD_COPY
;
74
mode1 = inst_mode1 -
VCD_COPY
;
81
if (inst_mode2 >
VCD_COPY
) {
82
inst2 =
VCD_COPY
;
83
mode2 = inst_mode2 -
VCD_COPY
;
118
// will equal 8 (VCD_NOOP, VCD_ADD, VCD_RUN,
VCD_COPY
modes 0 - 4).
codetable.cc
38
case
VCD_COPY
:
50
// VCD_ADD, VCD_RUN, and
VCD_COPY
respectively (see the definition of
218
if ((inst !=
VCD_COPY
) && (mode != 0)) {
261
if (i >=
VCD_COPY
) {
263
"COPY, size 0, mode " << (i -
VCD_COPY
) << VCD_ENDL;
instruction_map.cc
140
int inst_mode = (inst ==
VCD_COPY
) ? (inst + mode) : inst;
encodetable.cc
157
// EncodeInstruction is then called with inst =
VCD_COPY
, size = 4, mode = 0.
264
EncodeInstruction(
VCD_COPY
, size, mode);
vcdecoder.cc
[
all
...]
Completed in 2293 milliseconds