Searched defs:changed (Results 1 - 7 of 7) sorted by path

/art/compiler/optimizing/
H A Dssa_liveness_analysis.cc327 bool changed; local
329 changed = false;
341 changed = true;
344 } while (changed);
349 bool changed = false; local
353 changed = true;
356 return changed;
/art/compiler/utils/mips/
H A Dassembler_mips.cc1969 bool changed; local
1971 changed = false;
1978 changed = true;
1985 } while (changed);
/art/compiler/utils/mips64/
H A Dassembler_mips64.cc1637 bool changed; local
1639 changed = false;
1646 changed = true;
1653 } while (changed);
/art/runtime/base/
H A Dbit_vector.cc141 bool changed = false; local
145 return changed;
153 changed = true;
165 changed = true;
169 return changed;
175 bool changed = false; local
179 return changed;
201 changed = true;
210 changed = true;
214 return changed;
[all...]
H A Dbit_vector_test.cc152 bool changed = first.UnionIfNotIn(&second, &third); local
154 EXPECT_FALSE(changed);
163 bool changed = first.UnionIfNotIn(&second, &third); local
165 EXPECT_TRUE(changed);
/art/runtime/verifier/
H A Dmethod_verifier.cc1807 /* Begin by marking the first instruction as "changed". */
1811 /* Continue until no instructions are marked "changed". */
1834 // "changed" flags, we need to load the set of registers from the table.
1836 // situation where we have a stray "changed" flag set on an instruction that isn't a branch
1864 /* Clear "changed" and mark as visited. */
3459 /* update branch target, set "changed" if appropriate */
3596 // Merge registers into what we have for the next instruction, and set the "changed" flag if
3605 * prior state was. We have to assume that something has changed and re-evaluate it.
3782 // a class has changed, and will be flagged as an error in later checks.
4914 bool changed local
[all...]
H A Dregister_line.cc97 size_t changed = 0; local
101 changed++;
109 DCHECK_GT(changed, 0u);
430 bool changed = false; local
437 changed = changed || !cur_type.Equals(new_type);
541 changed = true;
543 return changed;

Completed in 200 milliseconds