/third_party/curl/tests/libtest/ |
D | testutil.c | 114 long tutil_tvdiff(struct timeval newer, struct timeval older) in tutil_tvdiff() argument 116 return (long)(newer.tv_sec-older.tv_sec)*1000+ in tutil_tvdiff() 117 (long)(newer.tv_usec-older.tv_usec)/1000; in tutil_tvdiff() 125 double tutil_tvdiff_secs(struct timeval newer, struct timeval older) in tutil_tvdiff_secs() argument 127 if(newer.tv_sec != older.tv_sec) in tutil_tvdiff_secs() 128 return (double)(newer.tv_sec-older.tv_sec)+ in tutil_tvdiff_secs() 129 (double)(newer.tv_usec-older.tv_usec)/1000000.0; in tutil_tvdiff_secs() 130 return (double)(newer.tv_usec-older.tv_usec)/1000000.0; in tutil_tvdiff_secs()
|
/third_party/curl/lib/ |
D | timeval.c | 202 timediff_t Curl_timediff(struct curltime newer, struct curltime older) in Curl_timediff() argument 204 timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec; in Curl_timediff() 209 return diff * 1000 + (newer.tv_usec-older.tv_usec)/1000; in Curl_timediff() 216 timediff_t Curl_timediff_ceil(struct curltime newer, struct curltime older) in Curl_timediff_ceil() argument 218 timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec; in Curl_timediff_ceil() 223 return diff * 1000 + (newer.tv_usec - older.tv_usec + 999)/1000; in Curl_timediff_ceil() 230 timediff_t Curl_timediff_us(struct curltime newer, struct curltime older) in Curl_timediff_us() argument 232 timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec; in Curl_timediff_us() 237 return diff * 1000000 + newer.tv_usec-older.tv_usec; in Curl_timediff_us()
|
D | timeval.h | 44 timediff_t Curl_timediff(struct curltime newer, struct curltime older); 52 timediff_t Curl_timediff_ceil(struct curltime newer, struct curltime older); 60 timediff_t Curl_timediff_us(struct curltime newer, struct curltime older);
|
/third_party/python/Lib/distutils/tests/ |
D | test_dep_util.py | 5 from distutils.dep_util import newer, newer_pairwise, newer_group 19 self.assertRaises(DistutilsFileError, newer, new_file, old_file) 24 self.assertTrue(newer(new_file, 'I_dont_exist')) 25 self.assertTrue(newer(new_file, old_file)) 29 self.assertFalse(newer(old_file, new_file))
|
/third_party/node/deps/cares/src/lib/ |
D | ares__timeval.c | 105 long ares__tvdiff(struct timeval newer, struct timeval older) 107 return (newer.tv_sec-older.tv_sec)*1000+ 108 (newer.tv_usec-older.tv_usec)/1000;
|
/third_party/gstreamer/gstplugins_good/gst/rtp/ |
D | gstrtpreddec.c | 230 RTPHistItem *newer; in gst_red_history_lost_seq_num_for_timestamp() local 252 newer = older_sibling->prev->data; in gst_red_history_lost_seq_num_for_timestamp() 256 if (newer->timestamp == timestamp) in gst_red_history_lost_seq_num_for_timestamp() 259 seq_diff = gst_rtp_buffer_compare_seqnum (older->seq, newer->seq); in gst_red_history_lost_seq_num_for_timestamp() 265 newer->seq, newer->timestamp, timestamp); in gst_red_history_lost_seq_num_for_timestamp() 269 older->seq, older->timestamp, newer->seq, newer->timestamp); in gst_red_history_lost_seq_num_for_timestamp() 273 timestamp_diff = newer->timestamp - older->timestamp; in gst_red_history_lost_seq_num_for_timestamp() 285 older->seq, older->timestamp, newer->seq, newer->timestamp, timestamp); in gst_red_history_lost_seq_num_for_timestamp()
|
/third_party/curl/src/ |
D | tool_util.c | 133 long tvdiff(struct timeval newer, struct timeval older) in tvdiff() argument 135 return (long)(newer.tv_sec-older.tv_sec)*1000+ in tvdiff() 136 (long)(newer.tv_usec-older.tv_usec)/1000; in tvdiff()
|
/third_party/python/Lib/distutils/ |
D | dep_util.py | 11 def newer (source, target): function 45 if newer(sources[i], targets[i]):
|
D | file_util.py | 100 from distutils.dep_util import newer 113 if update and not newer(src, dst):
|
/third_party/gstreamer/gstplugins_good/sys/oss/ |
D | meson.build | 2 # Linux and newer BSD versions 4 # Some old BSD versions and also newer OpenBSD versions
|
/third_party/mesa3d/docs/ |
D | sourcetree.rst | 20 and newer 47 (Ivy Bridge) and newer 83 - **iris** - Driver for Intel gen 8 (Broadwell) and newer. 94 - **radeonsi** - Driver for AMD Southern Island and newer (GCN, RDNA). 98 - **v3d** - Driver for Broadcom VideoCore 5 and newer.
|
/third_party/skia/infra/bots/assets/mesa_intel_driver_linux/mesa-driver-builder/ |
D | Dockerfile | 7 # Mesa builds newer than 17.0.4 or so require libdrm > 2.4.75, but the 9 # Note that the hosts that use these drivers will also need the newer version of libdrm2
|
/third_party/python/Lib/distutils/command/ |
D | build_scripts.py | 9 from distutils.dep_util import newer 68 if not self.force and not newer(script, outfile):
|
/third_party/cef/patch/patches/ |
D | linux_chrome_widevine_3149.patch | 18 +// component updater runs sometime later and finds a newer version of the 19 +// Widevine CDM, don't register it as the newer version can't be used. Instead,
|
/third_party/ltp/testcases/kernel/mce-test/stress/ |
D | README | 28 Version 2.6.32 or newer, with MCA high level handlers enabled. 35 source (2.6.32 or newer, $KERNEL_SRC/Documentation/vm/page-types.c).
|
/third_party/curl/m4/ |
D | zz60-xc-ovr.m4 | 36 dnl 2.58 or newer, and provides macro definition for 38 dnl using libtool 2.2 or newer, which requires that
|
D | xc-am-iface.m4 | 32 dnl newer is used at configure script generation time, this 68 dnl When using automake version 1.14 or newer, automake
|
/third_party/typescript/ |
D | Gulpfile.mjs | 5 import newer from "gulp-newer"; 42 .pipe(newer(target)) 131 .pipe(newer("built/local/typescriptServices.js")) 140 .pipe(newer("built/local/typescriptServices.d.ts")) 148 .pipe(newer("built/local/typescript.js")) 156 .pipe(newer("built/local/typescript.d.ts")) 163 .pipe(newer("built/local/typescript_standalone.d.ts")) 264 .pipe(newer("built/local/tsserverlibrary.js")) 273 .pipe(newer("built/local/tsserverlibrary.d.ts")) 391 .pipe(newer("built/local/typesMap.json")) [all …]
|
/third_party/python/Doc/howto/ |
D | annotations.rst | 18 in Python versions 3.10 and newer, 37 and newer, calling this function is the best practice for 57 newer is to call :func:`getattr` with three arguments, 65 of an object is much more complicated than in newer versions. 204 objects in Python 3.10 and newer.
|
/third_party/protobuf/src/google/protobuf/ |
D | empty.pb.h | 12 #error This file was generated by a newer version of protoc which is 19 #error regenerate this file with a newer version of protoc.
|
/third_party/curl/tests/server/ |
D | util.c | 469 long timediff(struct timeval newer, struct timeval older) in timediff() argument 471 timediff_t diff = newer.tv_sec-older.tv_sec; in timediff() 476 return (long)(newer.tv_sec-older.tv_sec)*1000+ in timediff() 477 (long)(newer.tv_usec-older.tv_usec)/1000; in timediff()
|
/third_party/icu/docs/userguide/datetime/timezone/ |
D | index.md | 137 * ICU4C 54 and newer: Drop in the binary update files. 138 * ICU4C 36 and newer: the best update strategy will depend on how ICU data 152 required resource files for ICU version 44 and newer are 167 * *"44"* is the directory for updates to ICU version 4.4 and newer. 193 ### ICU4C TZ Update with Drop-in .res files (ICU 54 and newer) 253 The updater will work with ICU version 3.4.2 and newer.
|
/third_party/cef/ |
D | CMakeLists.txt.in | 39 # - CMake version 3.19 or newer. 51 # Xcode 12.2 to 13.0 building on MacOS 10.15.4 (Catalina) or newer. Only 57 # Visual Studio 2019 or newer building on Windows 7 or newer. Windows 10
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.3.rst | 27 Fix building the PDF documentation with newer versions of Sphinx.
|
/third_party/skia/third_party/externals/angle2/src/ |
D | copy_compiler_dll.bat | 8 :: so it's timestamp would otherwise be newer than the dll.
|