/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/ |
D | UsMotionEvent.java | 39 public long baseTime; field in UsMotionEvent 48 public UsMotionEvent(MotionEvent event, long baseTime) { in UsMotionEvent() argument 49 createTime = RemoteClockInfo.microTime() - baseTime; in UsMotionEvent() 50 this.baseTime = baseTime; in UsMotionEvent() 52 kernelTime = getEventTimeMicro(event) - baseTime; in UsMotionEvent() 58 public UsMotionEvent(MotionEvent event, long baseTime, int pos) { in UsMotionEvent() argument 59 createTime = RemoteClockInfo.microTime() - baseTime; in UsMotionEvent() 60 this.baseTime = baseTime; in UsMotionEvent() 64 kernelTime = getHistoricalEventTimeMicro(event, pos) - baseTime; in UsMotionEvent()
|
D | AudioTest.java | 234 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 …]
|
D | RemoteClockInfo.java | 47 public long baseTime; field in RemoteClockInfo 54 return microTime() - baseTime; in micros() 62 return "Remote clock [us]: current time = " + micros() + " baseTime = " + baseTime + in toString()
|
D | MidiTest.java | 180 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()
|
D | TapLatencyFragment.java | 80 UsMotionEvent tapEvent = new UsMotionEvent(event, waltDevice.clock.baseTime); 132 traceLogger.log(tapEvent.physicalTime + waltDevice.clock.baseTime, in traceLogEvent() 133 tapEvent.kernelTime + waltDevice.clock.baseTime, title + " Physical", in traceLogEvent() 135 traceLogger.log(tapEvent.kernelTime + waltDevice.clock.baseTime, in traceLogEvent() 136 tapEvent.createTime + waltDevice.clock.baseTime, title + " App Callback", in traceLogEvent()
|
D | ScreenResponseFragment.java | 255 lastFrameStartTime = frameTimeNanos / 1000 - waltDevice.clock.baseTime; 256 lastFrameCallbackTime = System.nanoTime() / 1000 - waltDevice.clock.baseTime; 295 final long startTimeMicros = lastFrameStartTime + waltDevice.clock.baseTime; 296 final long finishTimeMicros = tmsg.t + waltDevice.clock.baseTime; 320 traceLogger.log(lastFrameCallbackTime + waltDevice.clock.baseTime, 321 lastFrameCallbackTime + waltDevice.clock.baseTime + 1000,
|
D | WaltUsbConnection.java | 145 remoteClock.baseTime = syncClock(fd, ep_out, ep_in); in syncClock()
|
D | DragLatencyFragment.java | 78 UsMotionEvent eh = new UsMotionEvent(event, waltDevice.clock.baseTime, i); 81 UsMotionEvent e = new UsMotionEvent(event, waltDevice.clock.baseTime);
|
D | WaltTcpConnection.java | 211 remoteClock.baseTime = RemoteClockInfo.microTime() - Long.parseLong(parts[1]); in updateClock()
|
D | WaltDevice.java | 247 clock.baseTime = RemoteClockInfo.microTime(); in simpleSyncClock()
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
D | animation.js | 218 _fireEvents: function(baseTime) { argument 221 var event = new AnimationEvent(this, this._currentTime, baseTime);
|
/external/walt/ios/WALT/ |
D | WALTClient.h | 76 @property (readonly, nonatomic) NSTimeInterval baseTime;
|
D | TapLatencyController.m | 124 actionString, _client.baseTime, physicalToKernel, kernelToCallback];
|
D | WALTClient.m | 580 - (NSTimeInterval)baseTime { method
|
/external/deqp/modules/gles3/performance/ |
D | es3pDepthTests.cpp | 76 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/ |
D | SimpleDateFormat.java | 1261 private void initializeDefaultCenturyStart(long baseTime) { in initializeDefaultCenturyStart() argument 1262 defaultCenturyBase = baseTime; in initializeDefaultCenturyStart() 1266 tmpCal.setTimeInMillis(baseTime); in initializeDefaultCenturyStart() 2748 long baseTime = localMillis + offsets[0]; in parse() local 2749 long time = baseTime; in parse() 2750 long limit = baseTime + MAX_DAYLIGHT_DETECTION_RANGE; in parse() 2769 time = baseTime; in parse() 2770 limit = baseTime - MAX_DAYLIGHT_DETECTION_RANGE; in parse()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | SimpleDateFormat.java | 1256 private void initializeDefaultCenturyStart(long baseTime) { in initializeDefaultCenturyStart() argument 1257 defaultCenturyBase = baseTime; in initializeDefaultCenturyStart() 1261 tmpCal.setTimeInMillis(baseTime); in initializeDefaultCenturyStart() 2733 long baseTime = localMillis + offsets[0]; in parse() local 2734 long time = baseTime; in parse() 2735 long limit = baseTime + MAX_DAYLIGHT_DETECTION_RANGE; in parse() 2754 time = baseTime; in parse() 2755 limit = baseTime - MAX_DAYLIGHT_DETECTION_RANGE; in parse()
|
/external/icu/icu4c/source/i18n/ |
D | smpdtfmt.cpp | 2635 UDate baseTime = localMillis + raw; in parse() local 2636 UDate time = baseTime; in parse() 2637 UDate limit = baseTime + MAX_DAYLIGHT_DETECTION_RANGE; in parse() 2657 time = baseTime; in parse() 2658 limit = baseTime - MAX_DAYLIGHT_DETECTION_RANGE; in parse()
|
/external/cronet/third_party/icu/source/i18n/ |
D | smpdtfmt.cpp | 2635 UDate baseTime = localMillis + raw; in parse() local 2636 UDate time = baseTime; in parse() 2637 UDate limit = baseTime + MAX_DAYLIGHT_DETECTION_RANGE; in parse() 2657 time = baseTime; in parse() 2658 limit = baseTime - MAX_DAYLIGHT_DETECTION_RANGE; in parse()
|