Home
last modified time | relevance | path

Searched refs:lasts (Results 1 – 25 of 36) sorted by relevance

12

/external/python/cpython3/Modules/_decimal/tests/
Dbench.py27 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/
Dtest_wg_scan_exclusive_add.cpp69 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/
Dmulti_product.rs211 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/
Dfileconf.c502 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()
Drpcapd.c266 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/
Dtemporary-value.stderr8 | argument requires that borrow lasts for `'static`
/external/python/cpython2/Lib/test/
Dtest_fractions.py562 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/
Dir_expression_operation.py812 lasts = [None, None, None, None] variable
815 if lasts[i] is None:
816 lasts[i] = item
819 lasts=lasts))
/external/libpcap/
Dsockutils.c1327 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/
Dtest_fractions.py666 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/
Dldap.c783 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/
Ddecimal.rst1817 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/
Ddecimal.rst1890 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/
Dspan_unittest.cc1160 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/
Drelaxng.c9327 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/
Dspan_test.cc1492 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/
DGPBRootObject.m72 // Note that the dictionary lasts for the lifetime of our app, so no need
/external/llvm/docs/
DHowToReleaseLLVM.rst42 * Send out release candidate sources for first round of testing. Testing lasts
/external/llvm-project/llvm/docs/
DHowToReleaseLLVM.rst38 * Send out release candidate sources for first round of testing. Testing lasts
/external/icu/icu4c/source/tools/tzcode/
Dzic.c358 static struct lookup const lasts[] = { variable
1504 if ((lp = byword(dp, lasts)) != NULL) { in rulesub()
/external/iperf3/docs/
Dinvoking.rst99 surement interval lasts for one second, but this can be changed by the
/external/libchrome/mojo/public/cpp/system/
DREADME.md369 // Ensure the Wait() lasts no more than 5 seconds.
/external/libjpeg-turbo/
Dstructure.txt717 * JPOOL_PERMANENT lasts until master record is destroyed
718 * JPOOL_IMAGE lasts until done with image (JPEG datastream)
/external/zstd/programs/
Dzstd.1.md421 …entire input is compressed/decompressed in-memory to measure speed. A run lasts at least 1 sec, so…
/external/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def1010 // char *strtok_r(char *s, const char *sep, char **lasts);

12