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

/art/runtime/
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;
H A Dclass_table-inl.h91 const uint32_t before = data_.LoadRelaxed(); local
92 ObjPtr<mirror::Class> const before_ptr(ExtractPtr(before));
98 data_.CompareAndSetStrongRelease(before, Encode(after_ptr, MaskHash(before)));
105 const uint32_t before = data_.LoadRelaxed(); local
106 ObjPtr<mirror::Class> before_ptr(ExtractPtr(before));
113 data_.CompareAndSetStrongRelease(before, Encode(after_ptr, MaskHash(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.h294 T* const before = source.object.template Read<kReadBarrierOption>(); local
296 if (source.object.template Read<kReadBarrierOption>() != before) {
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc540 DexCacheStats before; local
544 PreloadDexCachesStatsFilled(&before);
608 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches strings total=%d before=%d after=%d",
609 total.num_strings, before.num_strings, after.num_strings);
610 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches types total=%d before=%d after=%d",
611 total.num_types, before.num_types, after.num_types);
612 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches fields total=%d before=%d after=%d",
613 total.num_fields, before.num_fields, after.num_fields);
614 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches methods total=%d before=%d after=%d",
615 total.num_methods, before
[all...]

Completed in 1489 milliseconds