Home
last modified time | relevance | path

Searched refs:STEP (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/utils/
H A DWatchedSparseBooleanMatrix.java81 static final int STEP = 64; field in WatchedSparseBooleanMatrix
141 this(STEP); in WatchedSparseBooleanMatrix()
151 if (mOrder < STEP) { in WatchedSparseBooleanMatrix()
152 mOrder = STEP; in WatchedSparseBooleanMatrix()
154 if (mOrder % STEP != 0) { in WatchedSparseBooleanMatrix()
155 mOrder = ((initialCapacity / STEP) + 1) * STEP; in WatchedSparseBooleanMatrix()
157 if (mOrder < STEP || (mOrder % STEP != 0)) { in WatchedSparseBooleanMatrix()
450 resizeMatrix(mOrder + STEP); in growMatrix()
457 if (newOrder % STEP != 0) { in resizeMatrix()
585 if (capacity % STEP != 0) { in setCapacity()
[all …]
/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphRunner.java50 private static final Event STEP_EVENT = new Event(Event.STEP, null);
92 public static final int STEP = 3; field in GraphRunner.Event
138 case Event.STEP: in loop()
/aosp14/frameworks/base/media/java/android/media/
H A DVolumeShaper.java568 case android.media.InterpolatorType.STEP: in interpolatorTypeFromAidl()
585 return android.media.InterpolatorType.STEP; in interpolatorTypeToAidl()
/aosp14/frameworks/base/services/core/java/com/android/server/vibrator/
H A DVibration.java336 dumpEffect(proto, SegmentProto.STEP, (StepSegment) segment); in dumpEffect()
/aosp14/frameworks/base/services/tests/PackageManagerServiceTests/server/src/com/android/server/pm/utils/
H A DWatcherTest.java1055 assertTrue("Matrix shrink", finalCapacity - matrix.size() < matrix.STEP); in matrixShrink()