Searched defs:kinds (Results 1 - 4 of 4) sorted by relevance

/art/runtime/native/
H A Ddalvik_system_VMDebug.cc58 static void VMDebug_resetAllocCount(JNIEnv*, jclass, jint kinds) { argument
59 Runtime::Current()->ResetStats(kinds);
/art/runtime/
H A Druntime.cc1067 void Runtime::ResetStats(int kinds) { argument
1068 GetStats()->Clear(kinds & 0xffff);
1070 Thread::Current()->GetStats()->Clear(kinds >> 16);
H A Dthread.cc1169 // The "kinds" below are sorted by the frequency we expect to encounter them.
1821 std::vector<int32_t> kinds = verifier.DescribeVRegs(dex_pc); local
1823 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
1829 new_frame->SetVReg(reg, kinds.at((reg * 2) + 1));
/art/oatdump/
H A Doatdump.cc572 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc); local
575 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
586 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
590 os << "Constant: " << kinds.at((reg * 2) + 1);

Completed in 408 milliseconds