/external/python/cpython3/Modules/_decimal/tests/ |
D | bench.py | 27 lasts, t, s, n, na, d, da = 0, 3.0, 3, 1, 0, 0, 24 28 while s != lasts: 29 lasts = s 39 lasts, t, s, n, na, d, da = D(0), D(3), D(3), D(1), D(0), D(0), D(24) 40 while s != lasts: 41 lasts = s 51 lasts, t, s, n, na, d, da = D(0), D(3), D(3), D(1), D(0), D(0), D(24) 52 while s != lasts: 53 lasts = s
|
/external/OpenCL-CTS/test_conformance/workgroups/ |
D | test_wg_scan_exclusive_add.cpp | 69 int s, lasts; in verify_wg_scan_exclusive_add_int() local 78 lasts = 0; in verify_wg_scan_exclusive_add_int() 81 if (outptr[j + i] != lasts) { in verify_wg_scan_exclusive_add_int() 83 (unsigned int)(j + i), lasts, outptr[j + i]); in verify_wg_scan_exclusive_add_int() 86 lasts = s; in verify_wg_scan_exclusive_add_int() 96 unsigned int s, lasts; in verify_wg_scan_exclusive_add_uint() local 102 lasts = 0; in verify_wg_scan_exclusive_add_uint() 105 if (outptr[j + i] != lasts) { in verify_wg_scan_exclusive_add_uint() 107 (unsigned int)(j + i), lasts, outptr[j + i]); in verify_wg_scan_exclusive_add_uint() 110 lasts = s; in verify_wg_scan_exclusive_add_uint() [all …]
|
/external/rust/crates/itertools/src/adaptors/ |
D | multi_product.rs | 211 let lasts: Self::Item = self.0.into_iter() in last() localVariable 216 if lasts.len() == iter_count { in last() 217 Some(lasts) in last()
|
/external/libpcap/rpcapd/ |
D | fileconf.c | 502 char *lasts; in fileconf_save() local 512 token = pcap_strtok_r(temphostlist, RPCAP_HOSTLIST_SEP, &lasts); in fileconf_save() 516 token = pcap_strtok_r(NULL, RPCAP_HOSTLIST_SEP, &lasts); in fileconf_save()
|
D | rpcapd.c | 266 char *lasts; in main() local 269 tmpaddress = pcap_strtok_r(optarg, RPCAP_HOSTLIST_SEP, &lasts); in main() 273 tmpport = pcap_strtok_r(NULL, RPCAP_HOSTLIST_SEP, &lasts); in main() 282 tmpaddress = pcap_strtok_r(NULL, RPCAP_HOSTLIST_SEP, &lasts); in main()
|
/external/rust/crates/anyhow/tests/ui/ |
D | temporary-value.stderr | 8 | argument requires that borrow lasts for `'static`
|
/external/python/cpython2/Lib/test/ |
D | test_fractions.py | 562 lasts, t, s, n, na, d, da = 0, three, 3, 1, 0, 0, 24 563 while abs(s - lasts) > F(1, 10**9): 564 lasts = s 575 i, lasts, s, fact, num, sign = 0, 0, F(1), 1, 1, 1 576 while abs(s - lasts) > F(1, 10**9): 577 lasts = s
|
/external/mesa3d/src/compiler/glsl/ |
D | ir_expression_operation.py | 812 lasts = [None, None, None, None] variable 815 if lasts[i] is None: 816 lasts[i] = item 819 lasts=lasts))
|
/external/libpcap/ |
D | sockutils.c | 1327 char *lasts; in sock_check_hostlist() local 1341 token = pcap_strtok_r(temphostlist, sep, &lasts); in sock_check_hostlist() 1371 token = pcap_strtok_r(NULL, sep, &lasts); in sock_check_hostlist() 1397 token = pcap_strtok_r(NULL, sep, &lasts); in sock_check_hostlist()
|
/external/python/cpython3/Lib/test/ |
D | test_fractions.py | 666 lasts, t, s, n, na, d, da = 0, three, 3, 1, 0, 0, 24 667 while abs(s - lasts) > F(1, 10**9): 668 lasts = s 679 i, lasts, s, fact, num, sign = 0, 0, F(1), 1, 1, 1 680 while abs(s - lasts) > F(1, 10**9): 681 lasts = s
|
/external/curl/lib/ |
D | ldap.c | 783 char *lasts; in split_str() local 798 for(i = 0, s = strtok_r(str, ",", &lasts); s && i < items; in split_str() 799 s = strtok_r(NULL, ",", &lasts), i++) in split_str()
|
/external/python/cpython2/Doc/library/ |
D | decimal.rst | 1817 lasts, t, s, n, na, d, da = 0, three, 3, 1, 0, 0, 24 1818 while s != lasts: 1819 lasts = s 1841 i, lasts, s, fact, num = 0, 0, 1, 1, 1 1842 while s != lasts: 1843 lasts = s 1863 i, lasts, s, fact, num, sign = 0, 0, 1, 1, 1, 1 1864 while s != lasts: 1865 lasts = s 1886 i, lasts, s, fact, num, sign = 1, 0, x, 1, x, 1 [all …]
|
/external/python/cpython3/Doc/library/ |
D | decimal.rst | 1890 lasts, t, s, n, na, d, da = 0, three, 3, 1, 0, 0, 24 1891 while s != lasts: 1892 lasts = s 1914 i, lasts, s, fact, num = 0, 0, 1, 1, 1 1915 while s != lasts: 1916 lasts = s 1939 i, lasts, s, fact, num, sign = 0, 0, 1, 1, 1, 1 1940 while s != lasts: 1941 lasts = s 1965 i, lasts, s, fact, num, sign = 1, 0, x, 1, x, 1 [all …]
|
/external/libchrome/base/containers/ |
D | span_unittest.cc | 1160 constexpr span<const int> lasts = constexpr_span.last(size); in TEST() local 1161 for (size_t i = 0; i < lasts.size(); ++i) { in TEST() 1163 EXPECT_EQ(kArray[j], lasts[i]); in TEST()
|
/external/libxml2/ |
D | relaxng.c | 9327 xmlNodePtr *list = NULL, *lasts = NULL; in xmlRelaxNGValidateInterleave() local 9378 lasts = (xmlNodePtr *) xmlMalloc(nbgroups * sizeof(xmlNodePtr)); in xmlRelaxNGValidateInterleave() 9379 if (lasts == NULL) { in xmlRelaxNGValidateInterleave() 9383 memset(lasts, 0, nbgroups * sizeof(xmlNodePtr)); in xmlRelaxNGValidateInterleave() 9445 if (lasts[i] != NULL) { in xmlRelaxNGValidateInterleave() 9446 lasts[i]->next = cur; in xmlRelaxNGValidateInterleave() 9447 lasts[i] = cur; in xmlRelaxNGValidateInterleave() 9450 lasts[i] = cur; in xmlRelaxNGValidateInterleave() 9472 if (lasts[i] != NULL) { in xmlRelaxNGValidateInterleave() 9473 last = lasts[i]->next; in xmlRelaxNGValidateInterleave() [all …]
|
/external/pigweed/pw_span/ |
D | span_test.cc | 1492 constexpr span<const int> lasts = constexpr_span.last(size); in TEST() local 1493 for (size_t i = 0; i < lasts.size(); ++i) { in TEST() 1495 EXPECT_EQ(kArray[j], lasts[i]); in TEST()
|
/external/protobuf/objectivec/ |
D | GPBRootObject.m | 72 // Note that the dictionary lasts for the lifetime of our app, so no need
|
/external/llvm/docs/ |
D | HowToReleaseLLVM.rst | 42 * Send out release candidate sources for first round of testing. Testing lasts
|
/external/llvm-project/llvm/docs/ |
D | HowToReleaseLLVM.rst | 38 * Send out release candidate sources for first round of testing. Testing lasts
|
/external/icu/icu4c/source/tools/tzcode/ |
D | zic.c | 358 static struct lookup const lasts[] = { variable 1504 if ((lp = byword(dp, lasts)) != NULL) { in rulesub()
|
/external/iperf3/docs/ |
D | invoking.rst | 99 surement interval lasts for one second, but this can be changed by the
|
/external/libchrome/mojo/public/cpp/system/ |
D | README.md | 369 // Ensure the Wait() lasts no more than 5 seconds.
|
/external/libjpeg-turbo/ |
D | structure.txt | 717 * JPOOL_PERMANENT lasts until master record is destroyed 718 * JPOOL_IMAGE lasts until done with image (JPEG datastream)
|
/external/zstd/programs/ |
D | zstd.1.md | 421 …entire input is compressed/decompressed in-memory to measure speed. A run lasts at least 1 sec, so…
|
/external/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 1010 // char *strtok_r(char *s, const char *sep, char **lasts);
|