Searched defs:changed (Results 1 - 9 of 9) sorted by relevance

/art/libartbase/base/
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);
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...]
/art/compiler/optimizing/
H A Dssa_liveness_analysis.cc255 bool changed; local
257 changed = false;
267 changed = true;
270 } while (changed);
275 bool changed = false; local
279 changed = true;
282 return changed;
H A Dloop_optimization.cc554 bool changed = false; local
557 // loop if the induction of any inner loop has changed.
568 changed = simplified_ || changed;
572 changed = OptimizeInnerLoop(node) || changed;
575 return changed;
/art/runtime/verifier/
H A Dregister_line.cc100 size_t changed = 0; local
104 changed++;
112 DCHECK_GT(changed, 0u);
429 bool changed = false; local
437 changed = changed || !cur_type.Equals(new_type);
538 changed = true;
540 return changed;
H A Dmethod_verifier.cc1808 /* Begin by marking the first instruction as "changed". */
1812 /* Continue until no instructions are marked "changed". */
1835 // "changed" flags, we need to load the set of registers from the table.
1837 // situation where we have a stray "changed" flag set on an instruction that isn't a branch
1865 /* Clear "changed" and mark as visited. */
3460 /* update branch target, set "changed" if appropriate */
3599 // Merge registers into what we have for the next instruction, and set the "changed" flag if
3608 * prior state was. We have to assume that something has changed and re-evaluate it.
4828 // Note: see b/34966607. This and above may be changed in the future.
4940 bool changed local
[all...]
/art/openjdkjvmti/
H A DOpenjdkJvmTi.cc1172 jvmtiCapabilities changed = {}; local
1184 changed.e = 1; \
1195 changed, local
1205 jvmtiCapabilities changed = {}; local
1211 changed.e = 1; \
1219 changed, local
/art/compiler/utils/mips/
H A Dassembler_mips.cc3879 bool changed; local
3881 changed = false;
3889 changed = true;
3896 } while (changed);
4598 // If element_size_shift is non-negative at entry, it won't be changed, but offset
/art/compiler/utils/mips64/
H A Dassembler_mips64.cc3042 bool changed; local
3044 changed = false;
3051 changed = true;
3058 } while (changed);
3449 // If element_size_shift is non-negative at entry, it won't be changed, but offset

Completed in 155 milliseconds