Home
last modified time | relevance | path

Searched defs:times (Results 1 – 25 of 58) sorted by relevance

123

/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/clocks/
DVPoint.kt96 operator fun times(pt: VPoint) = VPointF(x * pt.x, y * pt.y) in component1() method
98 operator fun times(pt: VPointF) = VPointF(x * pt.x, y * pt.y) in component1() method
100 operator fun times(value: Int) = VPointF(x * value, y * value) in component1() method
102 operator fun times(value: Float) = VPointF(x * value, y * value) in component1() method
127 operator fun Int.times(value: VPointF) = VPointF(this * value.x, this * value.y) in component1() method
129 operator fun Float.times(value: VPointF) = VPointF(this * value.x, this * value.y) in component1() method
181 operator fun times(pt: VPoint) = VPoint(x * pt.x, y * pt.y) in toPoint() method
183 operator fun times(pt: VPointF) = VPointF(x * pt.x, y * pt.y) in toPoint() method
185 operator fun times(value: Int) = VPoint(x * value, y * value) in toPoint() method
187 operator fun times(value: Float) = VPointF(x * value, y * value) in toPoint() method
[all …]
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/
DTouchAnimatorTest.java216 private void verifyOnAnimationAtStart(int times) { in verifyOnAnimationAtStart()
220 private void verifyOnAnimationAtEnd(int times) { in verifyOnAnimationAtEnd()
224 private void verifyOnAnimationStarted(int times) { in verifyOnAnimationStarted()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/pip/tv/
DTvPipMenuControllerTest.java356 private void assertSwitchedToMoveMode(int times) { in assertSwitchedToMoveMode()
367 private void showAndAssertAllActionsMenu(boolean focusChange, int times) { in showAndAssertAllActionsMenu()
376 private void assertSwitchedToAllActionsMode(int times) { in assertSwitchedToAllActionsMode()
401 private void assertMenuClosed(int times) { in assertMenuClosed()
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
DKernelCpuUidActiveTimeReaderTest.java105 final long[][] times = increaseTime(new long[mUids.length][mCpus]); in testReadDelta() local
234 private void setCpusAndData(long[][] times) throws IOException { in setCpusAndData()
256 private String uidLines(int[] uids, long[][] times) { in uidLines()
285 private long getActiveTime(long[] times) { in getActiveTime()
DKernelCpuUidClusterTimeReaderTest.java236 private void setCoresAndData(long[][] times) throws IOException { in setCoresAndData()
258 private long[] clusterTime(long[] times) { in clusterTime()
264 private String uidLines(int[] uids, long[][] times) { in uidLines()
316 public void onUidCpuTime(int uid, long[] times) { in onUidCpuTime()
DKernelCpuUidFreqTimeReaderTest.java111 final long[][] times = increaseTime(new long[mUids.length][freqs.length]); in testReadDelta() local
249 private void setFreqsAndData(long[] freqs, long[][] times) throws IOException { in setFreqsAndData()
288 private String uidLines(int[] uids, long[][] times) { in uidLines()
340 public void onUidCpuTime(int uid, long[] times) { in onUidCpuTime()
DKernelCpuUidUserSysTimeReaderTest.java250 private String uidLines(int[] uids, long[][] times) { in uidLines()
302 public void onUidCpuTime(int uid, long[] times) { in onUidCpuTime()
/frameworks/native/services/surfaceflinger/tests/unittests/
DRefreshRateStatsTest.cpp67 auto times = mRefreshRateStats->getTotalTimes(); in TEST_F() local
114 auto times = mRefreshRateStats->getTotalTimes(); in TEST_F() local
DVSyncDispatchRealtimeTest.cpp191 cbs.with_callback_times([](auto times) { EXPECT_THAT(times.size(), Eq(mIterations)); }); in TEST_F()
212 cb_receiver.with_callback_times([](auto times) { EXPECT_THAT(times.size(), Eq(mIterations)); }); in TEST_F()
234 cb_receiver.with_callback_times([](auto times) { EXPECT_THAT(times.size(), Eq(mIterations)); }); in TEST_F()
/frameworks/native/libs/cputimeinstate/
Dtesttimeinstate.cpp61 auto times = getTotalCpuFreqTimes(); in TEST_F() local
67 auto times = getUidCpuFreqTimes(0); in TEST_F() local
133 auto times = getUidCpuFreqTimes(0); in TEST_F() local
369 auto times = kv.second; in TEST_F() local
392 auto times = kv.second; in TEST_F() local
489 auto times = kv.second; in TEST_F() local
501 auto times = getUidsCpuFreqTimes(); in TEST_F() local
529 auto times = getUidCpuFreqTimes(uid); in TEST_F() local
567 auto times = getUidCpuFreqTimes(0); in TEST_F() local
670 auto times = getUidsCpuFreqTimes(); in TEST_F() local
/frameworks/base/core/java/android/gesture/
DGestureStroke.java52 final long[] times = new long[count]; in GestureStroke() local
87 private GestureStroke(RectF bbx, float len, float[] pts, long[] times) { in GestureStroke()
202 final long[] times = timestamps; in serialize() local
/frameworks/base/apct-tests/perftests/core/src/android/os/
DISomeService.aidl4 void readDisk(int times); in readDisk()
/frameworks/rs/toolkit/test/
DBufferUtils.kt47 operator fun times(other: Int4) = Int4(x * other.x, y * other.y, z * other.z, w * other.w) in plus() method in com.example.testapp.Int4
48 operator fun times(n: Int) = Int4(x * n, y * n, z * n, w * n) in plus() method in com.example.testapp.Int4
70 operator fun times(other: Float4) = Float4(x * other.x, y * other.y, z * other.z, w * other.w) in plus() method in com.example.testapp.Float4
71 operator fun times(f: Float) = Float4(x * f, y * f, z * f, w * f) in plus() method in com.example.testapp.Float4
124 operator fun times(other: Rgba) = Rgba(r * other.r, g * other.g, b * other.b, a * other.a) shr 8 in plus() method in com.example.testapp.Rgba
125 operator fun times(scalar: Int) = Rgba(r * scalar, g * scalar, b * scalar, a * scalar) shr 8 in plus() method in com.example.testapp.Rgba
424 operator fun FloatArray.times(other: FloatArray) = FloatArray(size) { this[it] * other[it] } in <lambda>() method
425 operator fun FloatArray.times(other: Float) = FloatArray(size) { this[it] * other } in <lambda>() method
/frameworks/base/core/proto/android/os/
Dcpufreq.proto42 repeated TimeInState times = 2; field
/frameworks/base/services/core/jni/
Dcom_android_server_power_stats_CpuPowerStatsCollector.cpp113 static int flatten(JNIEnv *env, const std::vector<std::vector<uint64_t>> &times, in flatten()
134 static int combineByBracket(JNIEnv *env, const std::vector<std::vector<uint64_t>> &times, in combineByBracket()
/frameworks/libs/systemui/toruslib/torus-math/src/main/java/com/google/android/torus/math/
DVector2.kt168 operator fun times(value: Float): Vector2 { in times() method in com.google.android.torus.math.Vector2
172 operator fun times(vector: Vector2): Vector2 { in times() method in com.google.android.torus.math.Vector2
DVector3.kt195 operator fun times(value: Float): Vector3 { in times() method in com.google.android.torus.math.Vector3
199 operator fun times(vector: Vector3): Vector3 { in times() method in com.google.android.torus.math.Vector3
/frameworks/base/media/java/android/media/
DVolumeShaper.java534 final float[] times = new float[length / 2]; in fromParcelable() local
680 @NonNull float[] times, in Configuration()
767 private static @Nullable String checkCurveForErrors( in checkCurveForErrors()
809 private static void checkCurveForErrorsAndThrowException( in checkCurveForErrorsAndThrowException()
1010 public @NonNull Builder setCurve(@NonNull float[] times, @NonNull float[] volumes) { in setCurve()
/frameworks/base/tools/preload/
DLoadedClass.java90 int[] times = new int[size]; in calculateMedian() local
/frameworks/native/opengl/libs/EGL/
DMultifileBlobCache.cpp467 struct timespec times[2]; in get() local
502 struct timespec times[2]; in get() local
1007 struct timespec times[2]; in processTask() local
/frameworks/base/services/core/java/com/android/server/display/utils/
DRollingBuffer.java162 long[] times = new long[size]; in expandBuffer() local
/frameworks/base/packages/EasterEgg/src/com/android/egg/landroid/
DComposeTools.kt40 operator fun Easing.times(next: Easing) = { x: Float -> next.transform(transform(x)) } in times() method
/frameworks/native/opengl/tests/fillrate/
Dfillrate.cpp130 nsecs_t times[32]; in main() local
/frameworks/native/services/inputflinger/tests/
DTimerProvider_test.cpp45 std::vector<stime_t>* times = static_cast<std::vector<stime_t>*>(data); in pushTimeOntoVector() local
116 std::vector<stime_t>* times = static_cast<std::vector<stime_t>*>(callbackData); in TEST_F() local
/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
DPoint.java68 public Point times(float s) { in times() method in Point

123