Home
last modified time | relevance | path

Searched refs:baseTime (Results 1 – 16 of 16) sorted by relevance

/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
DUsMotionEvent.java38 public long baseTime; field in UsMotionEvent
47 public UsMotionEvent(MotionEvent event, long baseTime) { in UsMotionEvent() argument
48 createTime = RemoteClockInfo.microTime() - baseTime; in UsMotionEvent()
49 this.baseTime = baseTime; in UsMotionEvent()
51 kernelTime = getEventTimeMicro(event) - baseTime; in UsMotionEvent()
57 public UsMotionEvent(MotionEvent event, long baseTime, int pos) { in UsMotionEvent() argument
58 createTime = RemoteClockInfo.microTime() - baseTime; in UsMotionEvent()
59 this.baseTime = baseTime; in UsMotionEvent()
63 kernelTime = getHistoricalEventTimeMicro(event, pos) - baseTime; in UsMotionEvent()
DAudioTest.java234 long enqueueTime = getTePlay() - waltDevice.clock.baseTime;
251 traceLogger.log(lastBeepTime + waltDevice.clock.baseTime,
252 enqueueTime + waltDevice.clock.baseTime,
255 traceLogger.log(enqueueTime + waltDevice.clock.baseTime,
256 tmsg.t + waltDevice.clock.baseTime,
304 lastBeepTime = playTone() - waltDevice.clock.baseTime;
308 traceLogger.log(javaBeepTime + waltDevice.clock.baseTime,
309 lastBeepTime + waltDevice.clock.baseTime, "Java-to-native",
357 … long te = getTeRec() - waltDevice.clock.baseTime; // When a buffer was enqueued for recording
358 …long tc = getTcRec() - waltDevice.clock.baseTime; // When callback receiving a recorded buffer fi…
[all …]
DRemoteClockInfo.java47 public long baseTime; field in RemoteClockInfo
54 return microTime() - baseTime; in micros()
62 return "Remote clock [us]: current time = " + micros() + " baseTime = " + baseTime + in toString()
DMidiTest.java180 last_tWalt = tmsg.t + waltDevice.clock.baseTime;
304 last_tSys = timestamp / 1000 - waltDevice.clock.baseTime; in onSend()
324 traceLogger.log(last_tWalt + waltDevice.clock.baseTime, in onSend()
325 last_tSys + waltDevice.clock.baseTime, "MIDI Input Subsystem", in onSend()
327 traceLogger.log(last_tSys + waltDevice.clock.baseTime, in onSend()
328 last_tJava + waltDevice.clock.baseTime, "MIDI Input Java", in onSend()
DTapLatencyFragment.java77 UsMotionEvent tapEvent = new UsMotionEvent(event, waltDevice.clock.baseTime);
129 traceLogger.log(tapEvent.physicalTime + waltDevice.clock.baseTime, in traceLogEvent()
130 tapEvent.kernelTime + waltDevice.clock.baseTime, title + " Physical", in traceLogEvent()
132 traceLogger.log(tapEvent.kernelTime + waltDevice.clock.baseTime, in traceLogEvent()
133 tapEvent.createTime + waltDevice.clock.baseTime, title + " App Callback", in traceLogEvent()
DScreenResponseFragment.java254 lastFrameStartTime = frameTimeNanos / 1000 - waltDevice.clock.baseTime;
255 lastFrameCallbackTime = System.nanoTime() / 1000 - waltDevice.clock.baseTime;
294 final long startTimeMicros = lastFrameStartTime + waltDevice.clock.baseTime;
295 final long finishTimeMicros = tmsg.t + waltDevice.clock.baseTime;
319 traceLogger.log(lastFrameCallbackTime + waltDevice.clock.baseTime,
320 lastFrameCallbackTime + waltDevice.clock.baseTime + 1000,
DWaltUsbConnection.java145 remoteClock.baseTime = syncClock(fd, ep_out, ep_in); in syncClock()
DDragLatencyFragment.java75 UsMotionEvent eh = new UsMotionEvent(event, waltDevice.clock.baseTime, i);
78 UsMotionEvent e = new UsMotionEvent(event, waltDevice.clock.baseTime);
DWaltTcpConnection.java211 remoteClock.baseTime = RemoteClockInfo.microTime() - Long.parseLong(parts[1]); in updateClock()
DWaltDevice.java232 clock.baseTime = RemoteClockInfo.microTime(); in simpleSyncClock()
/external/walt/ios/WALT/
DWALTClient.h76 @property (readonly, nonatomic) NSTimeInterval baseTime;
DTapLatencyController.m124 actionString, _client.baseTime, physicalToKernel, kernelToCallback];
DWALTClient.m580 - (NSTimeInterval)baseTime { method
/external/deqp/modules/gles3/performance/
Des3pDepthTests.cpp76 deInt64 baseTime; member
633 if (samples[ndx].baseTime != 0 || samples[ndx].nullTime != 0) in logSamples()
671 …orkload << sample.order << sample.testTime << sample.nullTime << sample.baseTime << TestLog::EndSa… in logSamples()
824 sample.baseTime = 0; in renderSample()
1035 sample.baseTime = now - prev; in renderSample()
1060 baseSamples[ndx] = Vec2((float)sample.workload, (float)sample.baseTime); in logAnalysis()
1761 sample.baseTime = now - prev; in renderSample()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSimpleDateFormat.java1250 private void initializeDefaultCenturyStart(long baseTime) { in initializeDefaultCenturyStart() argument
1251 defaultCenturyBase = baseTime; in initializeDefaultCenturyStart()
1255 tmpCal.setTimeInMillis(baseTime); in initializeDefaultCenturyStart()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSimpleDateFormat.java1245 private void initializeDefaultCenturyStart(long baseTime) { in initializeDefaultCenturyStart() argument
1246 defaultCenturyBase = baseTime; in initializeDefaultCenturyStart()
1250 tmpCal.setTimeInMillis(baseTime); in initializeDefaultCenturyStart()