Home
last modified time | relevance | path

Searched refs:pcount (Results 1 – 24 of 24) sorted by relevance

/external/iperf3/src/
Diperf_udp.c65 uint64_t pcount; in iperf_udp_recv() local
89 memcpy(&pcount, sp->buffer+8, sizeof(pcount)); in iperf_udp_recv()
92 pcount = be64toh(pcount); in iperf_udp_recv()
103 pcount = ntohl(pc); in iperf_udp_recv()
109 fprintf(stderr, "pcount %" PRIu64 " packet_count %d\n", pcount, sp->packet_count); in iperf_udp_recv()
124 if (pcount >= sp->packet_count + 1) { in iperf_udp_recv()
127 if (pcount > sp->packet_count + 1) { in iperf_udp_recv()
129 sp->cnt_error += (pcount - 1) - sp->packet_count; in iperf_udp_recv()
132 sp->packet_count = pcount; in iperf_udp_recv()
152 …ming packet sequence %" PRIu64 " but expected sequence %d on stream %d", pcount, sp->packet_count,… in iperf_udp_recv()
[all …]
Diperf_api.c1908 int sid, cerror, pcount; in get_results() local
1971 pcount = j_packets->valueint; in get_results()
1981 sp->peer_packet_count = pcount; in get_results()
1999 sp->peer_packet_count = pcount; in get_results()
/external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/
Dpcount.pass.cpp23 assert(sb.pcount() == 0); in main()
25 assert(sb.pcount() == 1); in main()
27 assert(sb.pcount() == 2); in main()
29 assert(sb.pcount() == 2); in main()
/external/libcxx/test/std/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
Dpcount.pass.cpp23 assert(out.pcount() == 0); in main()
25 assert(out.pcount() == 11); in main()
/external/libcxx/test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.oper/
Dpcount.pass.cpp23 assert(out.pcount() == 0); in main()
25 assert(out.pcount() == 11); in main()
/external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/
Ddefault.pass.cpp24 assert(s.pcount() == 0); in main()
29 assert(s.pcount() == 0); in main()
/external/libcxx/include/
Dstrstream40 int pcount() const;
94 int pcount() const;
119 int pcount() const;
167 int pcount() const;
331 int pcount() const {return __sb_.pcount();}
390 int pcount() const {return __sb_.pcount();}
/external/u-boot/board/cavium/thunderx/
Datf.c182 size_t pcount; in atf_print_part_table() local
189 pcount = atf_get_pcount(); in atf_print_part_table()
191 printf("Partition count: %lu\n\n", pcount); in atf_print_part_table()
194 for (i = 0; i < pcount; i++) { in atf_print_part_table()
/external/toybox/toys/posix/
Dfind.c200 int pcount = 0, print = 0, not = 0, active = !!new, test = active, recurse; in do_find() local
264 if (pcount == sizeof(toybuf)) goto error; in do_find()
265 toybuf[pcount++] = not+(active<<1); in do_find()
271 if (--pcount < 0) goto error; in do_find()
273 active = (toybuf[pcount]>>1)&1; in do_find()
274 if (active && (toybuf[pcount]&1)) test = !test; in do_find()
/external/zlib/src/contrib/iostream2/
Dzstream.h200 ::gzwrite(m_fp, m_os->str(), m_os->pcount()); in close()
242 if (m_os && m_os->pcount()>0) { in os_flush()
248 ::gzwrite(m_fp, m_os->str(), m_os->pcount()); in os_flush()
/external/oj-libjdwp/src/share/back/
DstepControl.c109 getLineNumberTable(jmethodID method, jint *pcount, in getLineNumberTable() argument
114 *pcount = 0; in getLineNumberTable()
123 (gdata->jvmti, method, pcount, ptable); in getLineNumberTable()
125 *pcount = 0; in getLineNumberTable()
Dutil.c1435 allInterfaces(jclass clazz, jclass **ppinterfaces, jint *pcount) in allInterfaces() argument
1439 *pcount = 0; in allInterfaces()
1442 (gdata->jvmti, clazz, pcount, ppinterfaces); in allInterfaces()
1448 allLoadedClasses(jclass **ppclasses, jint *pcount) in allLoadedClasses() argument
1452 *pcount = 0; in allLoadedClasses()
1455 (gdata->jvmti, pcount, ppclasses); in allLoadedClasses()
1461 allClassLoaderClasses(jobject loader, jclass **ppclasses, jint *pcount) in allClassLoaderClasses() argument
1465 *pcount = 0; in allClassLoaderClasses()
1468 (gdata->jvmti, loader, pcount, ppclasses); in allClassLoaderClasses()
1525 allNestedClasses(jclass parent_clazz, jclass **ppnested, jint *pcount) in allNestedClasses() argument
[all …]
Dutil.h427 jvmtiError allNestedClasses(jclass clazz, jclass **ppnested, jint *pcount);
/external/skqp/tests/
DGeometryTest.cpp166 const int pcount = qcount * 2 + 1; in test_this_conic_to_quad() local
168 REPORTER_ASSERT(r, SkPointPriv::AreFinite(qpts, pcount)); in test_this_conic_to_quad()
/external/skia/tests/
DGeometryTest.cpp166 const int pcount = qcount * 2 + 1; in test_this_conic_to_quad() local
168 REPORTER_ASSERT(r, SkPointPriv::AreFinite(qpts, pcount)); in test_this_conic_to_quad()
/external/libcxx/src/
Dstrstream.cpp148 strstreambuf::pcount() const in pcount() function in strstreambuf
/external/python/cpython2/Objects/
Dbytesobject.c678 int pcount = 1; in _PyBytes_FormatEx() local
689 while (pcount > 0 && --fmtcnt >= 0) { in _PyBytes_FormatEx()
691 --pcount; in _PyBytes_FormatEx()
693 ++pcount; in _PyBytes_FormatEx()
697 if (fmtcnt < 0 || pcount > 0) { in _PyBytes_FormatEx()
Dstringobject.c4315 int pcount = 1; in PyString_Format() local
4326 while (pcount > 0 && --fmtcnt >= 0) { in PyString_Format()
4328 --pcount; in PyString_Format()
4330 ++pcount; in PyString_Format()
4334 if (fmtcnt < 0 || pcount > 0) { in PyString_Format()
Dunicodeobject.c8423 int pcount = 1; in PyUnicode_Format() local
8434 while (pcount > 0 && --fmtcnt >= 0) { in PyUnicode_Format()
8436 --pcount; in PyUnicode_Format()
8438 ++pcount; in PyUnicode_Format()
8442 if (fmtcnt < 0 || pcount > 0) { in PyUnicode_Format()
/external/python/cpython3/Objects/
Dbytesobject.c684 int pcount = 1; in _PyBytes_FormatEx() local
695 while (pcount > 0 && --fmtcnt >= 0) { in _PyBytes_FormatEx()
697 --pcount; in _PyBytes_FormatEx()
699 ++pcount; in _PyBytes_FormatEx()
703 if (fmtcnt < 0 || pcount > 0) { in _PyBytes_FormatEx()
Dunicodeobject.c14440 int pcount = 1; in unicode_format_arg_parse() local
14451 while (pcount > 0 && --ctx->fmtcnt >= 0) { in unicode_format_arg_parse()
14454 --pcount; in unicode_format_arg_parse()
14456 ++pcount; in unicode_format_arg_parse()
14460 if (ctx->fmtcnt < 0 || pcount > 0) { in unicode_format_arg_parse()
/external/tcpdump/
Dprint-isakmp.c1983 ikev2_p_print(netdissect_options *ndo, u_char tpay _U_, int pcount _U_, in ikev2_p_print()
2092 int pcount; in ikev2_sa_print() local
2111 pcount = 0; in ikev2_sa_print()
2113 pcount++; in ikev2_sa_print()
2140 cp = ikev2_p_print(ndo, np, pcount, ext, item_len, in ikev2_sa_print()
/external/v8/
DChangeLog33949 declarations. [wasm] Binary 11: Function types encoded as pcount, p*,
/external/kotlinc/lib/
Dkotlin-compiler.jarMETA-INF/MANIFEST.MF org/jetbrains/kotlin/utils/JavaSdkUtil.class JavaSdkUtil ...