Home
last modified time | relevance | path

Searched refs:end_ns (Results 1 – 19 of 19) sorted by relevance

/external/perfetto/src/trace_processor/storage/
Dtrace_storage.cc120 int64_t end_ns = std::numeric_limits<int64_t>::min(); in GetTraceTimestampBoundsNs() local
122 DbTableMaybeUpdateMinMax(raw_table_.ts(), &start_ns, &end_ns); in GetTraceTimestampBoundsNs()
123 DbTableMaybeUpdateMinMax(sched_slice_table_.ts(), &start_ns, &end_ns, in GetTraceTimestampBoundsNs()
125 DbTableMaybeUpdateMinMax(counter_table_.ts(), &start_ns, &end_ns); in GetTraceTimestampBoundsNs()
126 DbTableMaybeUpdateMinMax(slice_table_.ts(), &start_ns, &end_ns, in GetTraceTimestampBoundsNs()
129 &end_ns); in GetTraceTimestampBoundsNs()
130 DbTableMaybeUpdateMinMax(thread_state_table_.ts(), &start_ns, &end_ns); in GetTraceTimestampBoundsNs()
131 DbTableMaybeUpdateMinMax(android_log_table_.ts(), &start_ns, &end_ns); in GetTraceTimestampBoundsNs()
133 &start_ns, &end_ns); in GetTraceTimestampBoundsNs()
134 DbTableMaybeUpdateMinMax(perf_sample_table_.ts(), &start_ns, &end_ns); in GetTraceTimestampBoundsNs()
[all …]
/external/bcc/libbpf-tools/
Dfsslower.bpf.c61 __u64 end_ns, delta_ns; in probe_exit() local
77 end_ns = bpf_ktime_get_ns(); in probe_exit()
78 delta_ns = end_ns - datap->ts; in probe_exit()
83 event.end_ns = end_ns; in probe_exit()
Dfsslower.h18 __u64 end_ns; member
Dfsslower.c324 printf("%lld,%s,%d,%c,", e->end_ns, e->task, e->pid, file_op[e->op]); in handle_event()
/external/linux-kselftest/tools/testing/selftests/timers/
Draw_skew.c62 long long start_ns, end_ns; in diff_timespec() local
65 end_ns = ts_to_nsec(end); in diff_timespec()
66 return end_ns - start_ns; in diff_timespec()
Dadjtick.c61 long long start_ns, end_ns; in diff_timespec() local
64 end_ns = ts_to_nsec(end); in diff_timespec()
66 return end_ns - start_ns; in diff_timespec()
/external/trace-cmd/tracecmd/
Dtrace-split.c417 unsigned long long start_ns = 0, end_ns = 0; in trace_split() local
505 end_ns = (unsigned long long)(end * 1000000000.0); in trace_split()
506 if (end_ns < start_ns) in trace_split()
543 current = parse_file(handle, output_file, start_ns, end_ns, in trace_split()
548 } while (current && (!end_ns || current < end_ns)); in trace_split()
/external/swiftshader/src/Vulkan/
DVkDevice.cpp212 const time_point end_ns = getEndTimePoint(timeout, infiniteTimeout); in waitForFences() local
234 if(Cast(pFences[i])->wait(end_ns) != VK_SUCCESS) // At least one fence is not signaled in waitForFences()
264 return any.wait_until(end_ns) ? VK_SUCCESS : VK_TIMEOUT; in waitForFences()
272 const time_point end_ns = getEndTimePoint(timeout, infiniteTimeout); in waitForSemaphores() local
298 if(any.wait(1, end_ns) == VK_SUCCESS) in waitForSemaphores()
317 else if(semaphore->wait(pWaitInfo->pValues[i], end_ns) != VK_SUCCESS) in waitForSemaphores()
DVkTimelineSemaphore.hpp54 VkResult wait(uint64_t value, const std::chrono::time_point<CLOCK, DURATION> end_ns);
106 VkResult wait(uint64_t value, const std::chrono::time_point<CLOCK, DURATION> end_ns);
/external/linux-kselftest/tools/testing/selftests/vm/
Dmremap_test.c132 long long start_ns, end_ns, align_mask, ret, offset; in remap_region() local
196 end_ns = t_end.tv_sec * NS_PER_SEC + t_end.tv_nsec; in remap_region()
197 ret = end_ns - start_ns; in remap_region()
/external/tensorflow/tensorflow/core/profiler/backends/gpu/
Drocm_tracer.cc186 oss << ", end_ns=" << record->end_ns; in DumpActivityRecord()
187 oss << ", duration=" << record->end_ns - record->begin_ns; in DumpActivityRecord()
1039 event.end_time_ns = record->end_ns; in AddHipKernelActivityEvent()
1064 event.end_time_ns = record->end_ns; in AddNormalHipMemcpyActivityEvent()
1162 event.end_time_ns = record->end_ns; in AddHipMemsetActivityEvent()
1190 event.end_time_ns = std::max(record->end_ns, record->begin_ns + 1); in AddHipMallocActivityEvent()
1216 event.end_time_ns = std::max(record->end_ns, record->begin_ns + 1); in AddHipStreamSynchronizeActivityEvent()
1252 event.end_time_ns = record->end_ns; in AddHccKernelActivityEvent()
1281 event.end_time_ns = record->end_ns; in AddNormalHipOpsMemcpyActivityEvent()
1315 event.end_time_ns = record->end_ns; in AddHipOpsMemsetActivityEvent()
/external/python/cpython3/Lib/xml/etree/
DElementTree.py1607 end_ns=self._end_ns): argument
1608 append((event, end_ns(prefix)))
1646 return self.target.end_ns(prefix or '')
/external/libaom/third_party/libwebm/mkvmuxer/
Dmkvmuxer.cc1892 uint64_t end_ns) { in set_time() argument
1896 end_timecode_ = end_ns / timecode_scale; in set_time()
/external/libwebm/mkvmuxer/
Dmkvmuxer.cc1892 uint64_t end_ns) { in set_time() argument
1896 end_timecode_ = end_ns / timecode_scale; in set_time()
/external/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.cc1892 uint64_t end_ns) { in set_time() argument
1896 end_timecode_ = end_ns / timecode_scale; in set_time()
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a4.rst310 "end_ns()". Patch by Stefan Behnel.
/external/python/cpython3/Lib/test/
Dtest_xml_etree.py727 def end_ns(self, prefix): member in ElementTreeTest.test_custom_builder.Builder
749 def end_ns(self, prefix): member in ElementTreeTest.test_custom_builder_only_end_ns.Builder
/external/python/cpython3/Doc/library/
Dxml.etree.elementtree.rst1324 .. method:: end_ns(prefix)
/external/python/cpython3/Doc/whatsnew/
D3.8.rst1435 ``start_ns()`` and ``end_ns()``. Additionally, the