Searched defs:before (Results 1 - 5 of 5) sorted by relevance

/art/runtime/
H A Dclass_table-inl.h89 const uint32_t before = data_.LoadRelaxed(); local
90 ObjPtr<mirror::Class> const before_ptr(ExtractPtr(before));
96 data_.CompareExchangeStrongRelease(before, Encode(after_ptr, MaskHash(before)));
103 const uint32_t before = data_.LoadRelaxed(); local
104 ObjPtr<mirror::Class> before_ptr(ExtractPtr(before));
111 data_.CompareExchangeStrongRelease(before, Encode(after_ptr, MaskHash(before)));
H A Dmonitor_pool.cc78 Monitor* before = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(last) - local
80 before->next_free_ = last;
82 before->monitor_id_ = OffsetToMonitorId(MonitorIdToOffset(last->monitor_id_) -
85 last = before;
/art/tools/dexfuzz/src/dexfuzz/program/
H A DMutatableCode.java168 * Checks if any MTryBlock's instruction refs pointed at the 'before' MInsn,
170 * was pointed to, and point refs to the 'before' insn.
174 private void updateTryBlocksWithReplacementInsn(MInsn before, MInsn after, argument
178 if (mTryBlock.startInsn == before) {
183 mTryBlock.startInsn = before;
185 if (mTryBlock.endInsn == before) {
190 mTryBlock.endInsn = before;
192 if (mTryBlock.catchAllHandler == before) {
197 mTryBlock.catchAllHandler = before;
208 if (handler == before) {
[all...]
/art/runtime/mirror/
H A Ddex_cache-inl.h304 T* const before = source.object.template Read<kReadBarrierOption>(); local
306 if (source.object.template Read<kReadBarrierOption>() != before) {
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc502 DexCacheStats before; local
506 PreloadDexCachesStatsFilled(&before);
573 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches strings total=%d before=%d after=%d",
574 total.num_strings, before.num_strings, after.num_strings);
575 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches types total=%d before=%d after=%d",
576 total.num_types, before.num_types, after.num_types);
577 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches fields total=%d before=%d after=%d",
578 total.num_fields, before.num_fields, after.num_fields);
579 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches methods total=%d before=%d after=%d",
580 total.num_methods, before
[all...]

Completed in 469 milliseconds