Searched refs:end_ns (Results 1 - 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkDevice.cpp | 231 const time_point end_ns = getEndTimePoint(timeout, infiniteTimeout); in waitForFences() local 253 if(Cast(pFences[i])->wait(end_ns) != VK_SUCCESS) // At least one fence is not signaled in waitForFences() 283 return any.wait_until(end_ns) ? VK_SUCCESS : VK_TIMEOUT; in waitForFences() 291 const time_point end_ns = getEndTimePoint(timeout, infiniteTimeout); in waitForSemaphores() local 317 if(any.wait(1, end_ns) == VK_SUCCESS) in waitForSemaphores() 336 else if(semaphore->wait(pWaitInfo->pValues[i], end_ns) != VK_SUCCESS) in waitForSemaphores()
|
H A D | VkTimelineSemaphore.hpp | 54 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);
|
/third_party/libbpf/src/ |
H A D | ringbuf.c | 584 __u64 start_ns, end_ns, ns_per_s = 1000000000; in ns_elapsed_timespec() local 587 end_ns = (__u64)end->tv_sec * ns_per_s + end->tv_nsec; in ns_elapsed_timespec() 589 return end_ns - start_ns; in ns_elapsed_timespec()
|
/third_party/python/Lib/xml/etree/ |
H A D | ElementTree.py | 1542 if hasattr(target, 'end_ns'): 1593 # TreeBuilder does not implement .end_ns() 1594 if hasattr(self.target, "end_ns"): 1596 end_ns=self._end_ns): 1597 append((event, end_ns(prefix))) 1635 return self.target.end_ns(prefix or '')
|
/third_party/node/deps/v8/src/objects/ |
H A D | js-temporal-objects.cc | 3625 Handle<BigInt> end_ns; in BalanceDuration() local 3627 isolate, end_ns, in BalanceDuration() 3638 isolate, end_ns, in BalanceDuration() 3639 BigInt::Subtract(isolate, end_ns, in BalanceDuration() 3642 *nanoseconds = end_ns->AsInt64(); in BalanceDuration() 3967 Handle<BigInt> end_ns; in NanosecondsToDays() local 3968 ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate, end_ns, in NanosecondsToDays() 3975 isolate, end_instant, temporal::CreateTemporalInstant(isolate, end_ns), in NanosecondsToDays() 4028 while (days > 0 && BigInt::CompareToBigInt(intermediate_ns, end_ns) == in NanosecondsToDays() 4045 isolate, nanoseconds, BigInt::Subtract(isolate, end_ns, intermediate_n in NanosecondsToDays() [all...] |
/third_party/python/Lib/test/ |
H A D | test_xml_etree.py | 710 def end_ns(self, prefix): member in ElementTreeTest.test_custom_builder.Builder 732 def end_ns(self, prefix): member in ElementTreeTest.test_custom_builder_only_end_ns.Builder
|
Completed in 19 milliseconds