Home
last modified time | relevance | path

Searched refs:Double (Results 1 – 25 of 34) sorted by relevance

12

/tools/trebuchet/trebuchet/startup-common/src/
DStartupCommon.kt52 val startTime : Double, in <lambda>()
53 val endTime : Double, in <lambda>()
54 val serverSideForkTime : Double, in <lambda>()
55 val reportFullyDrawnTime : Double?, in <lambda>()
56 val firstSliceTime : Double, in <lambda>()
57 val undifferentiatedTime : Double, in <lambda>()
58 val schedTimings : Map<SchedulingState, Double>, in <lambda>()
66 var totalTime : Double = 0.0 in <lambda>()
68 val values : MutableMap<String, Pair<Int, Double>> = mutableMapOf() in <lambda>()
81 constructor(name : String, lowerBound : Double, upperBound : Double) {
[all …]
/tools/trebuchet/trebuchet/viewer/src/main/kotlin/traceviewer/ui/
DAnimator.kt22 fun animate(start: Double, end: Double, setter: (Double) -> Unit) { in animate()
26 class Animator(val start: Double, val end: Double, val setter: (Double) -> Unit, val duration: Int …
31 val value: Double = ((end - start) * frac) + start in animate()
DRenderState.kt22 class RenderState(minX: Double, maxX: Double, viewWidth: Int) { in <lambda>()
23 var scale: Double in <lambda>()
25 var panX: Double in <lambda>()
41 fun zoomBy(amount: Double, viewX: Int) { in <lambda>()
/tools/trebuchet/core/model/src/main/kotlin/trebuchet/model/fragments/
DSchedulingProcessFragment.kt21 …sModelFragment, val thread: ThreadModelFragment, override val startTime: Double) : CpuProcessSlice…
22 override var endTime: Double = Double.MAX_VALUE
27 … fun switchProcess(process: ProcessModelFragment, thread: ThreadModelFragment, timestamp: Double) { in switchProcess()
29 if (_slices.last().endTime == Double.MAX_VALUE) { in switchProcess()
62 override val didNotFinish: Boolean get() = endTime == Double.MAX_VALUE
DAsyncSlicesBuilder.kt23 override val startTime: Double,
24 override var endTime: Double,
40 fun openAsyncSlice(pid: Int, name: String, cookie: Int, startTime: Double) { in openAsyncSlice()
41 openSlices[key(name, cookie)] = AsyncSlice(startTime, Double.NaN, name, cookie, in openAsyncSlice()
45 fun closeAsyncSlice(pid: Int, name: String, cookie: Int, endTime: Double) { in closeAsyncSlice()
53 fun autoCloseOpenSlices(maxTimestamp: Double) { in autoCloseOpenSlices()
DSliceGroupBuilder.kt47 fun autoCloseOpenSlices(maxTimestamp: Double) { in autoCloseOpenSlices()
60 class MutableSliceGroup(override var startTime: Double = Double.NaN,
61 override var endTime: Double = Double.NaN,
DSchedulingSliceFragment.kt23 class SchedulingSliceFragment(override val state: SchedulingState, override val startTime: Double)
25 override var endTime: Double = Double.MAX_VALUE
32 fun switchState(newState: SchedulingState, timestamp: Double) { in switchState()
DModelFragment.kt22 var globalStartTime: Double = 0.0
23 var globalEndTime: Double = 0.0
24 var parentTimestamp: Double = 0.0
DAutoCloseable.kt20 fun autoClose(maxTimestamp: Double)
DProcessModelFragment.kt59 fun addCounterSample(name: String, timestamp: Double, value: Long) { in <lambda>()
/tools/trebuchet/core/model/src/main/kotlin/trebuchet/model/base/
DSlice.kt23 val startTime: Double
27 val endTime: Double
34 val duration: Double get() = endTime - startTime
41 val durationSelf: Double get() = duration
DSliceGroup.kt27 override val durationSelf: Double get() {
/tools/trebuchet/core/model/src/main/kotlin/trebuchet/model/
DModel.kt24 val beginTimestamp: Double
25 val endTimestamp: Double
26 val parentTimestamp: Double
33 var beginTimestamp = Double.MAX_VALUE
DCounter.kt21 data class CounterValue(val timestamp: Double, val count: Long)
29 infix fun Double.hasCount(value: Long): CounterValue = CounterValue(this, value)
/tools/metalava/stub-annotations/src/main/java/androidx/annotation/
DFloatRange.java33 double from() default Double.NEGATIVE_INFINITY; in from()
35 double to() default Double.POSITIVE_INFINITY; in to()
/tools/trebuchet/trebuchet/analyzer/src/
DAnalyzer.kt58 …cutoff = if (index < latchBuffers.size - 1) latchBuffers[index + 1].startTime else Double.MAX_VALUE in measureRotator()
77 private fun Double.toMilliseconds() = this / 1000.0 in toMilliseconds() method
/tools/trebuchet/trebuchet/system-server-analyzer/src/
DSystemServerAnalyzer.kt60 fun Double.durationString(): String { in Double() method
64 fun printLine(output: PrintStream, name: String, duration: Double, csvFormat: Boolean = false) { in printLine()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/importers/ftrace/
DFtraceLine.kt36 private var _timestamp: Double = 0.0
56 private fun set(taskName: String?, pid: Int, tgid: Int, cpu: Int, timestamp: Double, in set()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/util/
DTime.kt19 fun Double.secondValueToMillisecondString() = "%.3f ms".format(this * 1000.0) method
/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/metric/
DLoopSummary.java178 Double.compare(that.jankRate, jankRate) == 0 && in equals()
181 Double.compare(that.avgFrameTime, avgFrameTime) == 0 && in equals()
185 Double.compare(that.targetPercentile, targetPercentile) == 0; in equals()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/extras/
DImportUtils.kt24 fun Double.format(digits: Int) = String.format("%.${digits}f", this) in format() method
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/importers/ftrace/events/
DFtraceEvent.kt30 val timestamp: Double, in <lambda>()
/tools/dexter/testdata/expected/
Dexit_hooks.asm95 72| invoke-static {v6,v7}, java.lang.Double.valueOf(double):java.lang.Double
314 13| invoke-static {v7,v8}, java.lang.Double.valueOf(double):java.lang.Double
Dexit_hooks.rewrite95 72| invoke-static {v6,v7}, java.lang.Double.valueOf(double):java.lang.Double
316 13| invoke-static {v7,v8}, java.lang.Double.valueOf(double):java.lang.Double
/tools/test/graphicsbenchmark/functional_tests/java/src/com/android/game/qualification/tests/
DChoreoTest.java66 double min = Double.MAX_VALUE, max = 0; in choreoCallbackTimes()

12