/external/chromium-trace/catapult/devil/devil/android/perf/ |
D | surface_stats_collector.py | 47 (refresh_period, timestamps) = self._GetDataFromThread() 52 return (refresh_period, timestamps) 56 timestamps = [] 63 if refresh_period is None or timestamps is None: 76 timestamps += [timestamp for timestamp in new_timestamps 78 if len(timestamps): 79 last_timestamp = timestamps[-1] 83 self._data_queue.put((refresh_period, timestamps)) 84 timestamps = [] 173 timestamps = [] [all …]
|
/external/perfetto/src/trace_processor/ |
D | event_tracker_unittest.cc | 56 const auto& timestamps = context.storage->slices().start_ns(); in TEST_F() local 60 ASSERT_EQ(timestamps.size(), 1); in TEST_F() 66 ASSERT_EQ(timestamps.size(), 2ul); in TEST_F() 67 ASSERT_EQ(timestamps[0], timestamp); in TEST_F() 84 const auto& timestamps = context.storage->slices().start_ns(); in TEST_F() local 88 ASSERT_EQ(timestamps.size(), 1); in TEST_F() 100 ASSERT_EQ(timestamps.size(), 4ul); in TEST_F() 101 ASSERT_EQ(timestamps[0], timestamp); in TEST_F() 126 ASSERT_EQ(context.storage->counter_values().timestamps().at(0), timestamp); in TEST_F() 129 ASSERT_EQ(context.storage->counter_values().timestamps().at(1), in TEST_F() [all …]
|
D | trace_storage.cc | 119 MaybeUpdateMinMax(counter_values_.timestamps().begin(), in GetTraceTimestampBoundsNs() 120 counter_values_.timestamps().end(), &start_ns, &end_ns); in GetTraceTimestampBoundsNs() 121 MaybeUpdateMinMax(instants_.timestamps().begin(), in GetTraceTimestampBoundsNs() 122 instants_.timestamps().end(), &start_ns, &end_ns); in GetTraceTimestampBoundsNs() 125 MaybeUpdateMinMax(android_log_.timestamps().begin(), in GetTraceTimestampBoundsNs() 126 android_log_.timestamps().end(), &start_ns, &end_ns); in GetTraceTimestampBoundsNs()
|
/external/autotest/site_utils/rpm_control_system/ |
D | utils.py | 88 self.timestamps = {} 107 self.timestamps.pop(removed_key) 109 self.timestamps[key] = time.time() 115 key in self.timestamps and 116 time.time() - self.timestamps[key] > self.expiration_secs): 118 self.timestamps.pop(key)
|
D | utils_unittest.py | 143 self.assertEqual(len(cache.timestamps), 1) 145 self.assertTrue('host2' in cache.timestamps)
|
/external/deqp/modules/egl/ |
D | teglGetFrameTimestampsTests.cpp | 80 … EGLuint64KHR frameId, eglw::EGLint numTimestamps, const eglw::EGLint *timestamps, EGLnsecsANDROID… 526 TimestampInfoMap timestamps; in executeForConfig() local 527 timestamps[EGL_REQUESTED_PRESENT_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig() 528 timestamps[EGL_RENDERING_COMPLETE_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig() 529 timestamps[EGL_COMPOSITION_LATCH_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig() 530 timestamps[EGL_FIRST_COMPOSITION_START_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig() 531 timestamps[EGL_LAST_COMPOSITION_START_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig() 532 timestamps[EGL_FIRST_COMPOSITION_GPU_FINISHED_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig() 533 timestamps[EGL_DISPLAY_PRESENT_TIME_ANDROID] = TimestampInfo(false, false, 0); in executeForConfig() 534 timestamps[EGL_DEQUEUE_READY_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig() [all …]
|
/external/v8/tools/ |
D | parse-processor.js | 131 rawTimestampMin(...timestamps) { argument 132 timestamps = timestamps.length == 1 ? timestamps[0] : timestamps; 133 let result = timestamps.reduce((min, item) => { 138 timestampMin(...timestamps) { argument 139 let result = this.rawTimestampMin(...timestamps); 142 'Invalid timestamp min:', {result, timestamps, script: this}); property 148 timestampMax(...timestamps) { argument 149 timestamps = timestamps.length == 1 ? timestamps[0] : timestamps; 150 let result = Math.max(...timestamps); 153 'Invalid timestamp max:', {result, timestamps, script: this}); property
|
/external/autotest/client/site_tests/hardware_TPMTakeOwnership/ |
D | hardware_TPMTakeOwnership.py | 78 timestamps = dict() 117 timestamps[i] = self.tpm_obj.takeTpmOwnership() 127 for k, v in timestamps.iteritems(): 133 self.perf_dict['num_total_iterations'] = len(timestamps)
|
/external/toolchain-utils/cros_utils/ |
D | logger.py | 44 timestamps = [] 53 timestamps.append(os.stat(cmd_file).st_mtime) 59 suffix = str(timestamps.index(min(timestamps))) 216 timestamps = [] 225 timestamps.append(os.stat(cmd_file).st_mtime) 231 suffix = str(timestamps.index(min(timestamps)))
|
/external/perfetto/ui/src/tracks/counter/ |
D | frontend.ts | 64 assertTrue(data.timestamps.length === data.values.length); 101 const startTime = data.timestamps[i]; 191 const [left, right] = searchSegment(data.timestamps, time); 192 this.hoveredTs = left === -1 ? undefined : data.timestamps[left]; 193 this.hoveredTsEnd = right === -1 ? undefined : data.timestamps[right];
|
D | controller.ts | 112 timestamps: new Float64Array(numRows), 120 data.timestamps[row] = startSec;
|
/external/perfetto/ui/src/frontend/ |
D | logs_panel.ts | 115 const timestamps = this.entries.timestamps; constant 119 for (let i = 0; i < this.entries.timestamps.length; i++) { 121 const ts = timestamps[i];
|
/external/bcc/tools/ |
D | cachestat_example.txt | 11 ./cachestat -T # run with default option of 5 seconds delay with timestamps 13 ./cachestat -T 1 # include timestamps with one second samples 15 ./cachestat -T 1 5 # include timestamps with interval of one second for five iterations
|
D | biolatency_example.txt | 41 For efficiency, biolatency uses an in-kernel eBPF map to store timestamps 49 print timestamps with the output, and to print 1 second summaries 5 times: 222 ./biolatency -mT 1 # 1s summaries, milliseconds, and timestamps
|
/external/perfetto/ui/src/tracks/android_log/ |
D | controller.ts | 59 timestamps: new Float64Array(rowCount), 64 result.timestamps[i] = fromNs(+cols[0].longValues![i]);
|
D | frontend.ts | 101 for (let i = 0; i < data.timestamps.length; i++) { 109 const px = Math.floor(timeScale.timeToPx(data.timestamps[i]));
|
/external/perfetto/ui/src/controller/ |
D | logs_controller.ts | 79 timestamps: [], 86 const timestamps = rowsResult.columns[0].longValues! as number[]; constant 93 timestamps,
|
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/stats/ |
D | MutableAggregationTest.java | 168 List<Timestamp> timestamps = in testAdd_DistributionWithExemplarAttachments() local 176 mutableDistribution.add(values.get(i), attachmentsList.get(i), timestamps.get(i)); in testAdd_DistributionWithExemplarAttachments() 177 mutableDistributionNoHistogram.add(values.get(i), attachmentsList.get(i), timestamps.get(i)); in testAdd_DistributionWithExemplarAttachments() 185 Exemplar.create(values.get(2), timestamps.get(2), attachmentsList.get(2)), in testAdd_DistributionWithExemplarAttachments() 186 Exemplar.create(values.get(4), timestamps.get(4), attachmentsList.get(4)), in testAdd_DistributionWithExemplarAttachments() 187 Exemplar.create(values.get(3), timestamps.get(3), attachmentsList.get(3))); in testAdd_DistributionWithExemplarAttachments()
|
/external/autotest/client/site_tests/platform_TraceClockMonotonic/ |
D | control | 13 Ensure the the kernel properly supports monotonic timestamps for 18 or the timestamps aren't in the proper order
|
/external/iputils/doc/ |
D | clockdiff.sgml | 65 Some nodes (Cisco) use non-standard timestamps, which is allowed 66 by RFC, but makes timestamps mostly useless. 69 Some nodes generate messed timestamps (Solaris>2.4), when 72 randomly making timestamps mostly useless. Good news is that you can
|
/external/walt/android/WALT/app/src/main/jni/ |
D | README.md | 22 message (denote it as `t_local`) and have the remote reply with his timestamps 36 only after that get the remote timestamps for all of them. This helps deal with 43 then the timestamps according to his clock of when they were sent. We record the 44 local timestamps when we receive them.
|
/external/skqp/src/compute/hs/vk/bench/ |
D | main.c | 1009 uint64_t timestamps[2]; in main() local 1012 0,ARRAY_LENGTH_MACRO(timestamps), in main() 1013 sizeof(timestamps), in main() 1014 timestamps, in main() 1015 sizeof(timestamps[0]), in main() 1019 uint64_t const t = timestamps[1] - timestamps[0]; in main()
|
/external/skia/src/compute/hs/vk/bench/ |
D | main.c | 1009 uint64_t timestamps[2]; in main() local 1012 0,ARRAY_LENGTH_MACRO(timestamps), in main() 1013 sizeof(timestamps), in main() 1014 timestamps, in main() 1015 sizeof(timestamps[0]), in main() 1019 uint64_t const t = timestamps[1] - timestamps[0]; in main()
|
/external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/ |
D | VideoCapturerAndroidTestFixtures.java | 111 private List<Long> timestamps = new ArrayList<Long>(); field in VideoCapturerAndroidTestFixtures.FakeCapturerObserver 129 timestamps.add(timeStamp); in onByteBufferFrameCaptured() 142 timestamps.add(timeStamp); in onTextureFrameCaptured() 184 ArrayList<Long> list = new ArrayList<Long>(timestamps); in getCopyAndResetListOftimeStamps() 185 timestamps.clear(); in getCopyAndResetListOftimeStamps()
|
/external/ltp/testcases/kernel/fs/ext4-new-features/ |
D | README | 14 field on disk, journal checksumming, nanosec timestamps, online defrag, persist 89 ext4-nsec-timestamps 91 Directory containing the shell script which is used to test nanosec timestamps
|