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

  /external/webkit/Source/WebCore/platform/audio/
ReverbConvolverStage.cpp 62 size_t totalDelay = stageOffset + reverbTotalLatency;
66 ASSERT(totalDelay >= halfSize);
67 if (totalDelay >= halfSize)
68 totalDelay -= halfSize;
72 int maxPreDelayLength = std::min(halfSize, totalDelay);
73 m_preDelayLength = totalDelay > 0 ? renderPhase % maxPreDelayLength : 0;
74 if (m_preDelayLength > totalDelay)
77 m_postDelayLength = totalDelay - m_preDelayLength;
  /frameworks/base/core/java/android/view/animation/
GridLayoutAnimationController.java 315 float totalDelay;
325 totalDelay = rowsCount * rowDelay + columnsCount * rowsCount * rowDelay;
329 totalDelay = columnsCount * columnDelay + rowsCount * columnsCount * columnDelay;
334 totalDelay = columnsCount * columnDelay + rowsCount * rowDelay;
338 float normalizedDelay = viewDelay / totalDelay;
341 return (long) (normalizedDelay * totalDelay);
LayoutAnimationController.java 378 final float totalDelay = delay * params.count;
384 float normalizedDelay = viewDelay / totalDelay;
387 return (long) (normalizedDelay * totalDelay);
  /frameworks/base/services/java/com/android/server/
PowerManagerService.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java     [all...]

Completed in 133 milliseconds