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

  /system/extras/tests/sdcard/
stopwatch.cpp 60 mDeltas(NULL), mUsed(false)
75 delete [] mDeltas;
139 SNPRINTF_OR_RETURN(*str, *size, "%f %f\n", double(second) + double(nano) / 1.0e9, mDeltas[i]);
163 // mDeltas.
169 mDeltas= new double[n];
175 mDeltas[i / 2] = double(second) + double(nano) / 1.0e9;
182 mMinDuration = mMaxDuration = mDeltas[i];
186 if (mMaxDuration < mDeltas[i])
188 mMaxDuration = mDeltas[i];
191 if (mMinDuration > mDeltas[i]
    [all...]
stopwatch.h 129 // Allocate mDeltas and fill it in. Search for the min and max.
149 double *mDeltas;
  /frameworks/native/libs/gui/
FrameTimestamps.cpp 270 for (auto& d : delta.mDeltas) {
456 delta->mDeltas.emplace_back(i, *frame, mFramesDirty[i]);
469 delta->mDeltas.reserve(mFramesDirty.size());
627 if (CC_UNLIKELY(!mDeltas.empty())) {
630 mDeltas = std::move(src.mDeltas);
631 ALOGE_IF(src.mDeltas.empty(), "Source mDeltas not empty.");
636 return sizeof(uint32_t) + // mDeltas.size()
642 std::accumulate(mDeltas.begin(), mDeltas.end(), size_t(0)
    [all...]
  /frameworks/native/include/gui/
FrameTimestamps.h 331 std::vector<FrameEventsDelta> mDeltas;

Completed in 351 milliseconds