/third_party/curl/tests/libtest/ |
H A 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/ |
H A D | timeval.c | 201 timediff_t Curl_timediff(struct curltime newer, struct curltime older) in Curl_timediff() argument 203 timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec; in Curl_timediff() 208 return diff * 1000 + (newer.tv_usec-older.tv_usec)/1000; in Curl_timediff() 215 timediff_t Curl_timediff_ceil(struct curltime newer, struct curltime older) in Curl_timediff_ceil() argument 217 timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec; in Curl_timediff_ceil() 222 return diff * 1000 + (newer.tv_usec - older.tv_usec + 999)/1000; in Curl_timediff_ceil() 229 timediff_t Curl_timediff_us(struct curltime newer, struct curltime older) in Curl_timediff_us() argument 231 timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec; in Curl_timediff_us() 236 return diff * 1000000 + newer.tv_usec-older.tv_usec; in Curl_timediff_us()
|
H A D | timeval.h | 39 * Make sure that the first argument (newer) is the more recent time and older 44 timediff_t Curl_timediff(struct curltime newer, struct curltime older); 47 * Make sure that the first argument (newer) is the more recent time and older 52 timediff_t Curl_timediff_ceil(struct curltime newer, struct curltime older); 55 * Make sure that the first argument (newer) is the more recent time and older 60 timediff_t Curl_timediff_us(struct curltime newer, struct curltime older);
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_dep_util.py | 5 from distutils.dep_util import newer, newer_pairwise, newer_group namespace 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)) 73 missing='newer'))
|
/third_party/curl/src/ |
H A 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/ |
H A D | dep_util.py | 11 def newer (source, target): function 29 # newer () 33 """Walk two filename lists in parallel, testing if each source is newer 35 targets) where source is newer than target, according to the semantics 36 of 'newer()'. 41 # build a pair of lists (sources, targets) where source is newer 45 if newer(sources[i], targets[i]): 56 listed in 'sources'. In other words, if 'target' exists and is newer 61 "newer", any missing source files make us assume that 'target' is 83 elif missing == 'newer' [all...] |
H A D | file_util.py | 98 # (not update) and (src newer than dst). 100 from distutils.dep_util import newer namespace 113 if update and not newer(src, dst):
|
H A D | bcppcompiler.py | 22 from distutils.dep_util import newer namespace 382 # source file is newer than the target (or the target doesn't 384 if self.force or output_file is None or newer(source, output_file):
|
H A D | unixccompiler.py | 19 from distutils.dep_util import newer namespace 101 # the source file is newer than the target (or the target doesn't 103 if self.force or output_file is None or newer(source, output_file):
|
/third_party/python/Lib/distutils/command/ |
H A D | build_scripts.py | 9 from distutils.dep_util import newer namespace 68 if not self.force and not newer(script, outfile):
|
/third_party/skia/third_party/externals/angle2/src/ |
H A D | copy_compiler_dll.bat | 8 :: so it's timestamp would otherwise be newer than the dll.
|
/third_party/protobuf/src/google/protobuf/ |
H A 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.
|
H A D | duration.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.
|
H A D | source_context.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.
|
H A D | timestamp.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/node/deps/openssl/openssl/crypto/x509/ |
H A D | x509_vfy.c | 1072 /* If current CRL is equivalent use it if it is newer */ in get_crl_sk() 2020 X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer, in X509_CRL_diff() argument 2028 if (base->base_crl_number != NULL || newer->base_crl_number != NULL) { in X509_CRL_diff() 2033 if (base->crl_number == NULL || newer->crl_number == NULL) { in X509_CRL_diff() 2039 X509_CRL_get_issuer(newer)) != 0) { in X509_CRL_diff() 2044 if (!crl_extension_match(base, newer, NID_authority_key_identifier)) { in X509_CRL_diff() 2048 if (!crl_extension_match(base, newer, NID_issuing_distribution_point)) { in X509_CRL_diff() 2053 if (ASN1_INTEGER_cmp(newer->crl_number, base->crl_number) <= 0) { in X509_CRL_diff() 2059 X509_CRL_verify(newer, skey) <= 0)) { in X509_CRL_diff() 2068 if (!X509_CRL_set_issuer_name(crl, X509_CRL_get_issuer(newer))) in X509_CRL_diff() [all...] |
/third_party/openssl/crypto/x509/ |
H A D | x509_vfy.c | 1072 /* If current CRL is equivalent use it if it is newer */ in get_crl_sk() 2022 X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer, in X509_CRL_diff() argument 2030 if (base->base_crl_number != NULL || newer->base_crl_number != NULL) { in X509_CRL_diff() 2035 if (base->crl_number == NULL || newer->crl_number == NULL) { in X509_CRL_diff() 2041 X509_CRL_get_issuer(newer)) != 0) { in X509_CRL_diff() 2046 if (!crl_extension_match(base, newer, NID_authority_key_identifier)) { in X509_CRL_diff() 2050 if (!crl_extension_match(base, newer, NID_issuing_distribution_point)) { in X509_CRL_diff() 2055 if (ASN1_INTEGER_cmp(newer->crl_number, base->crl_number) <= 0) { in X509_CRL_diff() 2061 X509_CRL_verify(newer, skey) <= 0)) { in X509_CRL_diff() 2070 if (!X509_CRL_set_issuer_name(crl, X509_CRL_get_issuer(newer))) in X509_CRL_diff() [all...] |
/third_party/curl/tests/server/ |
H A D | util.c | 457 long timediff(struct timeval newer, struct timeval older) in timediff() argument 459 timediff_t diff = newer.tv_sec-older.tv_sec; in timediff() 464 return (long)(newer.tv_sec-older.tv_sec)*1000+ in timediff() 465 (long)(newer.tv_usec-older.tv_usec)/1000; in timediff()
|
H A D | util.h | 30 long timediff(struct timeval newer, struct timeval older);
|
/third_party/protobuf/objectivec/ |
H A D | GPBAny.pbobjc.h | 21 #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
|
H A D | GPBSourceContext.pbobjc.h | 21 #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
|
H A D | GPBFieldMask.pbobjc.h | 21 #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
|
H A D | GPBTimestamp.pbobjc.h | 21 #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
|
H A D | GPBDuration.pbobjc.h | 21 #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
|
H A D | GPBEmpty.pbobjc.h | 21 #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
|