Searched refs:before (Results 1 - 8 of 8) 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/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/test/098-ddmc/src/
H A DMain.java41 Allocations before = new Allocations(DdmVmInternal.getRecentAllocations());
42 System.out.println("before > 0=" + (before.numberOfEntries > 0));
50 System.out.println("before < overflowAllocations=" + (before.numberOfEntries < overflowAllocations));
51 System.out.println("after > before=" + (after.numberOfEntries > before.numberOfEntries));
/art/tools/dexfuzz/src/dexfuzz/listeners/
H A DUniqueProgramTrackerListener.java196 File before = new File(fuzzedFile);
198 boolean success = before.renameTo(after);
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc475 DexCacheStats before; local
479 PreloadDexCachesStatsFilled(&before);
546 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches strings total=%d before=%d after=%d",
547 total.num_strings, before.num_strings, after.num_strings);
548 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches types total=%d before=%d after=%d",
549 total.num_types, before.num_types, after.num_types);
550 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches fields total=%d before=%d after=%d",
551 total.num_fields, before.num_fields, after.num_fields);
552 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches methods total=%d before=%d after=%d",
553 total.num_methods, before
[all...]
/art/compiler/dex/quick/
H A Dcodegen_util.cc997 ConditionCode Mir2Lir::FlipComparisonOrder(ConditionCode before) { argument
999 switch (before) {
1007 LOG(FATAL) << "Unexpected ccode " << before;
1013 ConditionCode Mir2Lir::NegateComparison(ConditionCode before) { argument
1015 switch (before) {
1023 LOG(FATAL) << "Unexpected ccode " << before;
1217 * Insert an LIR instruction before the current instruction, which cannot be the
H A Dmir_to_lir.h674 ConditionCode FlipComparisonOrder(ConditionCode before);
675 ConditionCode NegateComparison(ConditionCode before);
1760 // Update references from prev_mir to mir in the same BB. If mir is null or before
1801 * in the CompilationUnit struct before codegen for each instruction.
/art/compiler/dex/
H A Dmir_graph.cc188 MIR* prev = nullptr; // Will be set to instruction before split.
1147 // Insert it before the first MIR.
1159 /* Insert a MIR instruction before the specified MIR. */
1243 // If there is nothing before the list, after_list is the first_mir.
1627 static const struct { const char before; const char after; } match[] = { member in struct:art::__anon7
1632 std::replace(str.begin(), str.end(), match[i].before, match[i].after);

Completed in 259 milliseconds