Home
last modified time | relevance | path

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

/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/libpcap/rpcapd/
Dfileconf.c78 char *lasts; in fileconf_read() local
81 address = pcap_strtok_r(ptr, RPCAP_HOSTLIST_SEP, &lasts); in fileconf_read()
85 port = pcap_strtok_r(NULL, RPCAP_HOSTLIST_SEP, &lasts); in fileconf_read()
151 char *lasts; in fileconf_save() local
162 token = pcap_strtok_r(temphostlist, RPCAP_HOSTLIST_SEP, &lasts); in fileconf_save()
166 token = pcap_strtok_r(NULL, RPCAP_HOSTLIST_SEP, &lasts); in fileconf_save()
Drpcapd.c235 char *lasts; in main() local
238 tmpaddress = pcap_strtok_r(optarg, RPCAP_HOSTLIST_SEP, &lasts); in main()
242 tmpport = pcap_strtok_r(NULL, RPCAP_HOSTLIST_SEP, &lasts); in main()
251 tmpaddress = pcap_strtok_r(NULL, RPCAP_HOSTLIST_SEP, &lasts); in main()
/external/libpcap/
Dsockutils.c1139 char *lasts; local
1152 token = pcap_strtok_r(temphostlist, sep, &lasts);
1176 token = pcap_strtok_r(NULL, sep, &lasts);
1202 token = pcap_strtok_r(NULL, sep, &lasts);
/external/mesa3d/src/compiler/glsl/
Dir_expression_operation.py767 lasts = [None, None, None, None] variable
770 if lasts[i] is None:
771 lasts[i] = item
774 lasts=lasts))
/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/python/cpython3/Lib/test/
Dtest_fractions.py595 lasts, t, s, n, na, d, da = 0, three, 3, 1, 0, 0, 24
596 while abs(s - lasts) > F(1, 10**9):
597 lasts = s
608 i, lasts, s, fact, num, sign = 0, 0, F(1), 1, 1, 1
609 while abs(s - lasts) > F(1, 10**9):
610 lasts = s
/external/curl/lib/
Dldap.c799 char *lasts; in split_str() local
814 for(i = 0, s = strtok_r(str, ",", &lasts); s && i < items; in split_str()
815 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.rst1878 lasts, t, s, n, na, d, da = 0, three, 3, 1, 0, 0, 24
1879 while s != lasts:
1880 lasts = s
1902 i, lasts, s, fact, num = 0, 0, 1, 1, 1
1903 while s != lasts:
1904 lasts = s
1927 i, lasts, s, fact, num, sign = 0, 0, 1, 1, 1, 1
1928 while s != lasts:
1929 lasts = s
1953 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.c9320 xmlNodePtr *list = NULL, *lasts = NULL; in xmlRelaxNGValidateInterleave() local
9371 lasts = (xmlNodePtr *) xmlMalloc(nbgroups * sizeof(xmlNodePtr)); in xmlRelaxNGValidateInterleave()
9372 if (lasts == NULL) { in xmlRelaxNGValidateInterleave()
9376 memset(lasts, 0, nbgroups * sizeof(xmlNodePtr)); in xmlRelaxNGValidateInterleave()
9438 if (lasts[i] != NULL) { in xmlRelaxNGValidateInterleave()
9439 lasts[i]->next = cur; in xmlRelaxNGValidateInterleave()
9440 lasts[i] = cur; in xmlRelaxNGValidateInterleave()
9443 lasts[i] = cur; in xmlRelaxNGValidateInterleave()
9465 if (lasts[i] != NULL) { in xmlRelaxNGValidateInterleave()
9466 last = lasts[i]->next; in xmlRelaxNGValidateInterleave()
[all …]
/external/protobuf/objectivec/
DGPBRootObject.m64 // Note that the dictionary lasts for the lifetime of our app, so no need
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DHowToReleaseLLVM.rst38 * Send out release candidate sources for first round of testing. Testing lasts
/external/llvm/docs/
DHowToReleaseLLVM.rst42 * 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/libchrome/mojo/public/cpp/system/
DREADME.md369 // Ensure the Wait() lasts no more than 5 seconds.
/external/iperf3/docs/
Dinvoking.rst99 surement interval lasts for one second, but this can be changed by the
/external/libjpeg-turbo/
Dstructure.txt721 * JPOOL_PERMANENT lasts until master record is destroyed
722 * JPOOL_IMAGE lasts until done with image (JPEG datastream)
Dlibjpeg.txt2973 Use JPOOL_PERMANENT to get storage that lasts as long as the JPEG object.
/external/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def1010 // char *strtok_r(char *s, const char *sep, char **lasts);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def1210 // char *strtok_r(char *s, const char *sep, char **lasts);
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Dinternal_raw_IPA.txt94935 lasts %37654 læsts
Dinternal_raw_IPA-old.txt112497 lasts %28642 læsts