HomeSort by relevance Sort by last modified time
    Searched refs:m_opcodeSampleCount (Results 1 - 2 of 2) sorted by null

  /external/webkit/JavaScriptCore/bytecode/
SamplingTool.cpp 175 m_opcodeSampleCount++;
190 ++m_opcodeSampleCount;
299 double percentOfVM = (static_cast<double>(count) * 100) / m_opcodeSampleCount;
307 printf("\tSamples inside VM:\t\t%lld / %lld (%.3f%%)\n", m_opcodeSampleCount, m_sampleCount, (static_cast<double>(m_opcodeSampleCount) * 100) / m_sampleCount);
308 printf("\tSamples inside host code:\t%lld / %lld (%.3f%%)\n\n", m_sampleCount - m_opcodeSampleCount, m_sampleCount, (static_cast<double>(m_sampleCount - m_opcodeSampleCount) * 100) / m_sampleCount);
372 printf(" Samples on a call / return boundary: %d / %d (%.3f%%)\n\n", record->m_sampleCount - record->m_opcodeSampleCount, record->m_sampleCount, (static_cast<double>(record->m_sampleCount - record->m_opcodeSampleCount) * 100) / record->m_sampleCount);
SamplingTool.h 102 , m_opcodeSampleCount(0)
119 int m_opcodeSampleCount;
196 , m_opcodeSampleCount(0)
266 long long m_opcodeSampleCount;

Completed in 157 milliseconds