Searched defs:before (Results 1 - 4 of 4) 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;
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc425 DexCacheStats before; local
429 PreloadDexCachesStatsFilled(&before);
497 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches strings total=%d before=%d after=%d",
498 total.num_strings, before.num_strings, after.num_strings);
499 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches types total=%d before=%d after=%d",
500 total.num_types, before.num_types, after.num_types);
501 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches fields total=%d before=%d after=%d",
502 total.num_fields, before.num_fields, after.num_fields);
503 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches methods total=%d before=%d after=%d",
504 total.num_methods, before
[all...]
/art/compiler/dex/
H A Dmir_graph.cc1087 // Insert it before the first MIR.
1099 /* Insert a MIR instruction before the specified MIR. */
1183 // If there is nothing before the list, after_list is the first_mir.
1347 static const struct { const char before; const char after; } match[] = { member in struct:art::__anon5
1352 std::replace(str.begin(), str.end(), match[i].before, match[i].after);
1800 return true; // The block has been inserted by a suspend check before.
/art/compiler/dex/quick/
H A Dcodegen_util.cc957 ConditionCode Mir2Lir::FlipComparisonOrder(ConditionCode before) { argument
959 switch (before) {
968 LOG(FATAL) << "Unexpected ccode " << before;
973 ConditionCode Mir2Lir::NegateComparison(ConditionCode before) { argument
975 switch (before) {
984 LOG(FATAL) << "Unexpected ccode " << before;
1158 * Insert an LIR instruction before the current instruction, which cannot be the

Completed in 338 milliseconds