/third_party/toybox/porting/liteos_a/toys/posix/ |
D | date.c | 56 unsigned nano; 77 xparsedate(str, t, &TT.nano, 1); in parse_date() 104 sprintf(snap, "%09u", TT.nano); in puts_time() 142 TT.nano = ts.tv_nsec; in date_main() 158 tv.tv_usec = TT.nano/1000; in date_main()
|
D | touch.c | 40 unsigned nano; in touch_main() local 42 xparsedate(TT.t ? TT.t : TT.d, &t, &nano, 0); in touch_main() 44 ts->tv_nsec = nano; in touch_main()
|
/third_party/toybox/toys/posix/ |
D | date.c | 59 unsigned nano; 80 xparsedate(str, t, &TT.nano, 1); in parse_date() 107 sprintf(snap, "%09u", TT.nano); in puts_time() 145 TT.nano = ts.tv_nsec; in date_main() 161 tv.tv_usec = TT.nano/1000; in date_main()
|
D | touch.c | 47 unsigned nano; in touch_main() local 49 xparsedate(TT.t ? TT.t : TT.d, &t, &nano, 0); in touch_main() 51 ts->tv_nsec = nano; in touch_main()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/pbutils/ |
D | gstpluginsbaseversion.c | 49 guint * nano) in gst_plugins_base_version() argument 57 if (nano) in gst_plugins_base_version() 58 *nano = GST_PLUGINS_BASE_VERSION_NANO; in gst_plugins_base_version()
|
D | gstpluginsbaseversion.h.in | 49 * The nano version of GStreamer's gst-plugins-base libraries at compile time. 72 void gst_plugins_base_version (guint *major, guint *minor, guint *micro, guint *nano);
|
D | gstpluginsbaseversion.h | 72 void gst_plugins_base_version (guint *major, guint *minor, guint *micro, guint *nano);
|
/third_party/gstreamer/gstreamer/tests/check/gst/ |
D | gst.c | 85 guint major, minor, micro, nano; in GST_START_TEST() local 88 gst_version (&major, &minor, µ, &nano); in GST_START_TEST()
|
/third_party/mesa3d/.gitlab-ci/container/debian/ |
D | arm_test.sh | 35 mkdir -p /baremetal-files/jetson-nano/boot/ 39 /baremetal-files/jetson-nano/boot/
|
/third_party/libabigail/ |
D | gen-changelog.py | 133 (sha, maj, min, nano) = match.groups() 134 release_refs[sha] = (maj, min, nano)
|
/third_party/gstreamer/gstreamer/gst/ |
D | gstpluginfeature.c | 338 guint major, minor, micro, nano; in gst_plugin_feature_check_version() local 344 nscan = sscanf (ver_str, "%u.%u.%u.%u", &major, &minor, µ, &nano); in gst_plugin_feature_check_version() 360 else if (nscan == 4 && nano > 0 && (micro + 1 == min_micro)) in gst_plugin_feature_check_version()
|
D | gst.c | 1287 gst_version (guint * major, guint * minor, guint * micro, guint * nano) in gst_version() argument 1292 g_return_if_fail (nano); in gst_version() 1297 *nano = GST_VERSION_NANO; in gst_version() 1313 guint major, minor, micro, nano; in gst_version_string() local 1315 gst_version (&major, &minor, µ, &nano); in gst_version_string() 1316 if (nano == 0) in gst_version_string() 1318 else if (nano == 1) in gst_version_string()
|
D | gst.h | 117 guint *micro, guint *nano);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Chrono.h | 108 template <> struct unit<std::nano> { static const char value[]; }; 128 return {getAs<std::nano>(D), "ns"};
|
/third_party/toybox/lib/ |
D | xwrap.c | 991 void xparsedate(char *str, time_t *t, unsigned *nano, int endian) in xparsedate() argument 1003 *nano = 0; in xparsedate() 1015 *nano *= 10; in xparsedate() 1016 if (isdigit(*s)) *nano += *s++-'0'; in xparsedate() 1050 *nano *= 10; in xparsedate() 1051 if (isdigit(*p)) *nano += *p++-'0'; in xparsedate()
|
D | lib.c | 595 long long nano = ts->tv_nsec + offset, secs = nano/1000000000; in nanomove() local 598 nano %= 1000000000; in nanomove() 599 if (nano<0) { in nanomove() 601 nano += 1000000000; in nanomove() 603 ts->tv_nsec = nano; in nanomove()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
D | os_unix.c | 109 uint64_t abstime, nano; in os_get_reltime() 118 nano = (abstime * info.numer) / info.denom; in os_get_reltime() 120 t->sec = nano / NSEC_PER_SEC; in os_get_reltime() 121 t->usec = (nano - (((uint64_t) t->sec) * NSEC_PER_SEC)) / NSEC_PER_USEC; in os_get_reltime()
|
/third_party/iptables/ |
D | .gitignore | 26 # vim/nano swap file
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
D | os_unix.c | 115 uint64_t abstime, nano; in os_get_reltime() 124 nano = (abstime * info.numer) / info.denom; in os_get_reltime() 126 t->sec = nano / NSEC_PER_SEC; in os_get_reltime() 127 t->usec = (nano - (((uint64_t) t->sec) * NSEC_PER_SEC)) / NSEC_PER_USEC; in os_get_reltime()
|
/third_party/lz4/programs/ |
D | util.h | 301 U64 nano = 0; in UTIL_getSpanTimeNano() local 302 nano += 1000000000ULL * diff.tv_sec; in UTIL_getSpanTimeNano() 303 nano += diff.tv_nsec; in UTIL_getSpanTimeNano() 304 return nano; in UTIL_getSpanTimeNano()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/ |
D | time_benchmark.cc | 38 const absl::Duration nano = absl::Nanoseconds(1); in BM_Time_Arithmetic() local 42 benchmark::DoNotOptimize(t += nano); in BM_Time_Arithmetic()
|
/third_party/jerryscript/targets/particle/ |
D | Makefile.particle | 35 LDFLAGS=--specs=nano.specs
|
/third_party/gstreamer/gstreamer/docs/random/ |
D | release | 6 Development period is marked by having a fourth (nano) version number of 1. 50 - Bump the nano number to >= 2 (eg, first pre-release for 115 - bump nano number in configure.ac, commit
|
/third_party/skia/src/core/ |
D | SkTime.cpp | 82 std::chrono::duration<double, std::nano> ns = now.time_since_epoch(); in GetNSecs()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | EGLReusableSync.cpp | 61 using NanoSeconds = std::chrono::duration<int64_t, std::nano>; in clientWait()
|