/external/curl/lib/ |
D | timeval.c | 119 time_t curlx_tvdiff(struct timeval newer, struct timeval older) in curlx_tvdiff() argument 124 time_t diff = newer.tv_sec-older.tv_sec; in curlx_tvdiff() 128 return (newer.tv_sec-older.tv_sec)*1000+ in curlx_tvdiff() 129 (time_t)(newer.tv_usec-older.tv_usec)/1000; in curlx_tvdiff() 137 double curlx_tvdiff_secs(struct timeval newer, struct timeval older) in curlx_tvdiff_secs() argument 139 if(newer.tv_sec != older.tv_sec) in curlx_tvdiff_secs() 140 return (double)(newer.tv_sec-older.tv_sec)+ in curlx_tvdiff_secs() 141 (double)(newer.tv_usec-older.tv_usec)/1000000.0; in curlx_tvdiff_secs() 143 return (double)(newer.tv_usec-older.tv_usec)/1000000.0; in curlx_tvdiff_secs()
|
/external/curl/src/ |
D | tool_util.c | 122 long tool_tvdiff(struct timeval newer, struct timeval older) in tool_tvdiff() argument 124 return (newer.tv_sec-older.tv_sec)*1000+ in tool_tvdiff() 125 (newer.tv_usec-older.tv_usec)/1000; in tool_tvdiff() 133 double tool_tvdiff_secs(struct timeval newer, struct timeval older) in tool_tvdiff_secs() argument 135 if(newer.tv_sec != older.tv_sec) in tool_tvdiff_secs() 136 return (double)(newer.tv_sec-older.tv_sec)+ in tool_tvdiff_secs() 137 (double)(newer.tv_usec-older.tv_usec)/1000000.0; in tool_tvdiff_secs() 139 return (double)(newer.tv_usec-older.tv_usec)/1000000.0; in tool_tvdiff_secs()
|
/external/curl/tests/libtest/ |
D | testutil.c | 112 long tutil_tvdiff(struct timeval newer, struct timeval older) in tutil_tvdiff() argument 114 return (newer.tv_sec-older.tv_sec)*1000+ in tutil_tvdiff() 115 (newer.tv_usec-older.tv_usec)/1000; in tutil_tvdiff() 123 double tutil_tvdiff_secs(struct timeval newer, struct timeval older) in tutil_tvdiff_secs() argument 125 if(newer.tv_sec != older.tv_sec) in tutil_tvdiff_secs() 126 return (double)(newer.tv_sec-older.tv_sec)+ in tutil_tvdiff_secs() 127 (double)(newer.tv_usec-older.tv_usec)/1000000.0; in tutil_tvdiff_secs() 129 return (double)(newer.tv_usec-older.tv_usec)/1000000.0; in tutil_tvdiff_secs()
|
D | lib1507.c | 58 static long tvdiff(struct timeval newer, struct timeval older) in tvdiff() argument 60 return (newer.tv_sec-older.tv_sec)*1000+ in tvdiff() 61 (newer.tv_usec-older.tv_usec)/1000; in tvdiff()
|
/external/llvm/test/Object/ |
D | archive-update.test | 7 RUN: mkdir -p %t.older 8 RUN: echo older > %t.older/evenlen 15 RUN: touch -m -t 200001010000 %t.older/evenlen || sleep 2.1 24 Check that without the 'u' option the member is replaced with an older file. 25 RUN: llvm-ar rU %t.a %t.older/evenlen 32 Check that with the 'u' option the member is not replaced with an older file. 33 RUN: llvm-ar ruU %t.a %t.older/evenlen 37 OLDER: older
|
/external/c-ares/ |
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;
|
/external/curl/docs/examples/ |
D | pop3-multi.c | 52 static long tvdiff(struct timeval newer, struct timeval older) in tvdiff() argument 54 return (newer.tv_sec - older.tv_sec) * 1000 + in tvdiff() 55 (newer.tv_usec - older.tv_usec) / 1000; in tvdiff()
|
D | imap-multi.c | 52 static long tvdiff(struct timeval newer, struct timeval older) in tvdiff() argument 54 return (newer.tv_sec - older.tv_sec) * 1000 + in tvdiff() 55 (newer.tv_usec - older.tv_usec) / 1000; in tvdiff()
|
D | smtp-multi.c | 97 static long tvdiff(struct timeval newer, struct timeval older) in tvdiff() argument 99 return (newer.tv_sec - older.tv_sec) * 1000 + in tvdiff() 100 (newer.tv_usec - older.tv_usec) / 1000; in tvdiff()
|
/external/python/cpython2/Tools/gdb/ |
D | libpython.py | 1226 def older(self): member in Frame 1227 older = self._gdbframe.older() 1228 if older: 1229 return Frame(older) 1311 older = self.older() 1312 if older and older._gdbframe.name() == 'PyCFunction_Call': 1320 func = older._gdbframe.read_var('func') 1350 caller = self._gdbframe.older() 1376 frame = frame.older() 1390 frame = frame.older() [all …]
|
/external/autotest/client/site_tests/platform_KernelVersion/ |
D | control | 8 CRITERIA = "Fails if the running kernel version is older than kernel_version." 17 the running kernel version is older than the variable kernel_version.
|
/external/valgrind/ |
D | README.mips | 35 * If you are compiling Valgrind for mips32 with gcc version older then 44 - Some gdb tests will fail when gdb (GDB) older than 7.5 is used and gdb is 46 - You can not compile tests for DSP ASE if you are using gcc (GCC) older
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | README-2.0-AMD64 | 4 All previous releases of Squashfs (2.0-alpha and older) generate incorrect 16 (i.e. a 2.0-alpha or older patch) and running the SquashFS 2.0
|
/external/curl/docs/libcurl/ |
D | ABI | 33 parallel with an older installed lib (on most systems). Thus, old 35 using the older lib, while newer applications build and use the newer one. 46 Going to an older libcurl version from one you're currently using can be a
|
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.copy_file/ |
D | copy_file.pass.cpp | 110 const path older = env.create_file("older_file", 1); in TEST_CASE() local 119 TEST_REQUIRE(fs::copy_file(from, older, copy_options::update_existing, ec) == true); in TEST_CASE() 121 TEST_CHECK(file_size(older) == 55); in TEST_CASE()
|
/external/libxml2/ |
D | README.tests | 24 version is older than the testsuite one, failing to compile or run the tests 25 is likely. In any event this won't work with an installed libxml2 older
|
/external/webrtc/webrtc/base/ |
D | openssl.h | 17 #error OpenSSL is older than 1.0.0, which is the minimum supported version.
|
/external/libpcap/ |
D | README.linux | 80 shared libraries, which means that if an older version of a shared 84 library and, if it's otherwise binary-compatible with the older version, 85 can replace that older version without breaking applications built with 86 the older version, and without breaking configure scripts or the build
|
/external/curl/m4/ |
D | zz60-xc-ovr.m4 | 35 dnl autoconf 2.57 or older which lack it. This allows 38 dnl 2.57 or older.
|
/external/protobuf/m4/ |
D | stl_hash.m4 | 17 # seen unexplainable unordered_map bugs with -O2 on older gcc's. 28 # Some older gcc's have a buggy tr1, so test a bit of code.
|
/external/libyuv/files/tools_libyuv/autoroller/unittests/testdata/ |
D | DEPS.chromium.old | 6 # This is and older revision than DEPS.chromium.new file.
|
/external/llvm/test/tools/llvm-profdata/ |
D | compat.proftext | 1 # Compatibility tests for older profile format versions. These ensure 2 # that we don't break compatibility with an older profile version
|
/external/python/cpython2/PC/ |
D | readme.txt | 5 several older PC ports of Python, as well as all the PC-specific 75 Legacy support for older versions of Visual Studio 77 The subdirectories VC6, VS7.1 and VS8.0 contain legacy support older
|
/external/autotest/client/tests/ltp/patches/ |
D | sysctl.patch | 26 +/* This is an older/deprecated syscall that newer arches are omitting */ 56 +/* This is an older/deprecated syscall that newer arches are omitting */ 86 +/* This is an older/deprecated syscall that newer arches are omitting */ 116 +/* This is an older/deprecated syscall that newer arches are omitting */
|
/external/llvm/test/Bitcode/ |
D | DICompileUnit-no-DWOId.ll | 1 ; The input uses the older (r236428) form without a dwoId field. This should
|