Home
last modified time | relevance | path

Searched refs:older (Results 1 – 25 of 541) sorted by relevance

12345678910>>...22

/external/curl/lib/
Dtimeval.c119 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/
Dtool_util.c122 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/
Dtestutil.c112 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()
Dlib1507.c58 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/
Darchive-update.test7 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/
Dares__timeval.c105 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/
Dpop3-multi.c52 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()
Dimap-multi.c52 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()
Dsmtp-multi.c97 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/
Dlibpython.py1226 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/
Dcontrol8 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/
DREADME.mips35 * 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/
DREADME-2.0-AMD644 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/
DABI33 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/
Dcopy_file.pass.cpp110 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/
DREADME.tests24 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/
Dopenssl.h17 #error OpenSSL is older than 1.0.0, which is the minimum supported version.
/external/libpcap/
DREADME.linux80 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/
Dzz60-xc-ovr.m435 dnl autoconf 2.57 or older which lack it. This allows
38 dnl 2.57 or older.
/external/protobuf/m4/
Dstl_hash.m417 # 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/
DDEPS.chromium.old6 # This is and older revision than DEPS.chromium.new file.
/external/llvm/test/tools/llvm-profdata/
Dcompat.proftext1 # 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/
Dreadme.txt5 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/
Dsysctl.patch26 +/* 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/
DDICompileUnit-no-DWOId.ll1 ; The input uses the older (r236428) form without a dwoId field. This should

12345678910>>...22