Home | History | Annotate | Download | only in cctest

Lines Matching refs:pos1

65       : pos1(pos1_param), pos2(pos2_param),
67 int pos1;
82 void AddChunk(int pos1, int pos2, int len1, int len2) {
83 current_chunk_ = new(zone_) DiffChunkStruct(pos1, pos2, len1, len2);
109 int pos1 = 0;
117 int diff_pos1 = chunk->pos1;
118 int similar_part_length = diff_pos1 - pos1;
124 CHECK(pos1 + j < len1);
126 CHECK_EQ(s1[pos1 + j], s2[pos2 + j]);
129 pos1 = diff_pos1 + chunk->len1;
134 int similar_part_length = len1 - pos1;
138 CHECK(pos1 + j < len1);
140 CHECK_EQ(s1[pos1 + j], s2[pos2 + j]);