Home
last modified time | relevance | path

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

12345678910>>...16

/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_timer.c68 struct sctp_tmit_chunk *chk; in sctp_audit_retranmission_queue() local
75 TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) { in sctp_audit_retranmission_queue()
76 if (chk->sent == SCTP_DATAGRAM_RESEND) { in sctp_audit_retranmission_queue()
81 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { in sctp_audit_retranmission_queue()
82 if (chk->sent == SCTP_DATAGRAM_RESEND) { in sctp_audit_retranmission_queue()
86 TAILQ_FOREACH(chk, &asoc->asconf_send_queue, sctp_next) { in sctp_audit_retranmission_queue()
87 if (chk->sent == SCTP_DATAGRAM_RESEND) { in sctp_audit_retranmission_queue()
433 struct sctp_tmit_chunk *chk, *nchk; local
437 TAILQ_FOREACH_SAFE(chk, &asoc->sent_queue, sctp_next, nchk) {
438 if (SCTP_TSN_GE(asoc->last_acked_seq, chk->rec.data.tsn)) {
[all …]
Dsctp_output.c6702 struct sctp_tmit_chunk *chk, *nchk; local
6707 TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
6714 if (PR_SCTP_BUF_ENABLED(chk->flags)) {
6719 if (chk->rec.data.timetodrop.tv_sec > (long)srcv->sinfo_timetolive) {
6727 if (chk->data) {
6735 if (chk->sent > SCTP_DATAGRAM_UNSENT)
6739 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
6751 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) {
6753 if (PR_SCTP_BUF_ENABLED(chk->flags)) {
6754 if (chk->rec.data.timetodrop.tv_sec > (long)srcv->sinfo_timetolive) {
[all …]
Dsctp_indata.c75 struct sctp_tmit_chunk *chk, int hold_rlock);
446 struct sctp_tmit_chunk *chk, in sctp_abort_in_reasm() argument
457 chk->rec.data.tsn, in sctp_abort_in_reasm()
458 chk->rec.data.sid, in sctp_abort_in_reasm()
459 chk->rec.data.fsn, chk->rec.data.mid); in sctp_abort_in_reasm()
465 chk->rec.data.tsn, in sctp_abort_in_reasm()
466 chk->rec.data.sid, in sctp_abort_in_reasm()
467 chk->rec.data.fsn, in sctp_abort_in_reasm()
468 (uint16_t)chk->rec.data.mid); in sctp_abort_in_reasm()
471 sctp_m_freem(chk->data); in sctp_abort_in_reasm()
[all …]
Dsctp_input.c335 struct sctp_tmit_chunk *chk, *nchk; in sctp_process_init() local
339 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) { in sctp_process_init()
340 if (chk->rec.data.sid >= newcnt) { in sctp_process_init()
341 TAILQ_REMOVE(&asoc->send_queue, chk, sctp_next); in sctp_process_init()
343 if (asoc->strmout[chk->rec.data.sid].chunks_on_queues > 0) { in sctp_process_init()
344 asoc->strmout[chk->rec.data.sid].chunks_on_queues--; in sctp_process_init()
347 panic("No chunks on the queues for sid %u.", chk->rec.data.sid); in sctp_process_init()
350 if (chk->data != NULL) { in sctp_process_init()
351 sctp_free_bufspace(stcb, asoc, chk, 1); in sctp_process_init()
353 0, chk, SCTP_SO_NOT_LOCKED); in sctp_process_init()
[all …]
Dsctp_pcb.c5393 struct sctp_tmit_chunk *chk, *nchk; local
5407 TAILQ_FOREACH_SAFE(chk, &control->reasm, sctp_next, nchk) {
5408 TAILQ_REMOVE(&control->reasm, chk, sctp_next);
5409 if (chk->data) {
5410 sctp_m_freem(chk->data);
5411 chk->data = NULL;
5413 if (chk->holds_key_ref)
5414 sctp_auth_key_release(stcb, chk->auth_keyid, SCTP_SO_LOCKED);
5415 sctp_free_remote_addr(chk->whoTo);
5416 SCTP_ZONE_FREE(SCTP_BASE_INFO(ipi_zone_chunk), chk);
[all …]
Dsctputil.c660 struct sctp_tmit_chunk *chk; in sctp_auditing() local
696 TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) { in sctp_auditing()
697 if (chk->sent == SCTP_DATAGRAM_RESEND) { in sctp_auditing()
699 } else if (chk->sent < SCTP_DATAGRAM_RESEND) { in sctp_auditing()
700 tot_out += chk->book_size; in sctp_auditing()
765 TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) { in sctp_auditing()
766 if ((chk->whoTo == lnet) && in sctp_auditing()
767 (chk->sent < SCTP_DATAGRAM_RESEND)) { in sctp_auditing()
768 tot_out += chk->book_size; in sctp_auditing()
1912 struct sctp_tmit_chunk *chk; in sctp_timeout_handler() local
[all …]
Dsctp_asconf.c1050 struct sctp_tmit_chunk *chk; in sctp_assoc_immediate_retrans() local
1052 TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) { in sctp_assoc_immediate_retrans()
1053 if (chk->whoTo != NULL) { in sctp_assoc_immediate_retrans()
1057 if (chk != NULL) { in sctp_assoc_immediate_retrans()
1058 sctp_timer_start(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, stcb, chk->whoTo); in sctp_assoc_immediate_retrans()
1072 struct sctp_tmit_chunk *chk; in sctp_net_immediate_retrans() local
1079 TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) { in sctp_net_immediate_retrans()
1080 if (chk->whoTo == net) { in sctp_net_immediate_retrans()
1081 if (chk->sent < SCTP_DATAGRAM_RESEND) { in sctp_net_immediate_retrans()
1082 chk->sent = SCTP_DATAGRAM_RESEND; in sctp_net_immediate_retrans()
[all …]
/third_party/boost/libs/python/test/numpy/
Dindexing.py35 chk = numpy.array([3,4,5,6])
36 numpy.testing.assert_equal(indexing_ext.indexarray(x,chk),chk)
37 chk = numpy.array([[0,1],[2,3]])
38 numpy.testing.assert_equal(indexing_ext.indexarray(x,chk),chk)
42 chk = numpy.array([0,5])
43 numpy.testing.assert_equal(indexing_ext.indexarray(x,y,z),chk)
46 chk = numpy.array([5,6,7,8,9])
47 numpy.testing.assert_equal(indexing_ext.indexarray(x,b),chk)
51 chk = numpy.array([[0,1,2],[6,7,8]])
52 numpy.testing.assert_equal(indexing_ext.indexslice(x,b,sl),chk)
/third_party/boost/boost/preprocessor/detail/
Dcheck.hpp29 # define BOOST_PP_CHECK_1(chk) BOOST_PP_CHECK_2(chk) argument
33 # define BOOST_PP_CHECK_1(chk) BOOST_PP_CHECK_2(chk) argument
34 # define BOOST_PP_CHECK_2(chk) BOOST_PP_CHECK_3((BOOST_PP_CHECK_RESULT_ ## chk)) argument
41 # define BOOST_PP_CHECK_0(chk) BOOST_PP_CHECK_1(BOOST_PP_CAT(BOOST_PP_CHECK_RESULT_, chk)) argument
42 # define BOOST_PP_CHECK_1(chk) BOOST_PP_CHECK_2(chk) argument
/third_party/grpc/test/core/transport/chttp2/
Dhpack_parser_test.cc39 test_checker* chk = static_cast<test_checker*>(ud); in onhdr() local
40 ekey = va_arg(chk->args, char*); in onhdr()
42 evalue = va_arg(chk->args, char*); in onhdr()
57 test_checker chk; in test_vector() local
59 va_start(chk.args, hexstring); in test_vector()
62 parser->on_header_user_data = &chk; in test_vector()
78 GPR_ASSERT(nullptr == va_arg(chk.args, char*)); in test_vector()
80 va_end(chk.args); in test_vector()
/third_party/gstreamer/gstreamer/gst/
Dgstregistrychunks.c207 GstRegistryChunk *chk; in gst_registry_chunks_save_pad_template() local
210 chk = in gst_registry_chunks_save_pad_template()
221 *list = g_list_prepend (*list, chk); in gst_registry_chunks_save_pad_template()
238 GstRegistryChunk *chk = NULL; in gst_registry_chunks_save_feature() local
256 chk = gst_registry_chunks_make_data (ef, pf_size); in gst_registry_chunks_save_feature()
316 chk = gst_registry_chunks_make_data (tff, pf_size); in gst_registry_chunks_save_feature()
349 chk = in gst_registry_chunks_save_feature()
364 chk = gst_registry_chunks_make_data (pf, pf_size); in gst_registry_chunks_save_feature()
369 chk = in gst_registry_chunks_save_feature()
379 *list = g_list_prepend (*list, chk); in gst_registry_chunks_save_feature()
[all …]
/third_party/node/test/common/
Dudppair.js91 (chk) => setImmediate(() => clientSide.emitReceived(chk)));
93 (chk) => setImmediate(() => serverSide.emitReceived(chk)));
/third_party/openssl/crypto/x509v3/
Dv3_utl.c863 static int do_x509_check(X509 *x, const char *chk, size_t chklen, in do_x509_check() argument
884 if (chklen > 1 && chk[0] == '.') in do_x509_check()
897 chklen = strlen(chk); in do_x509_check()
916 chk, chklen, peername)) != 0) in do_x509_check()
938 chk, chklen, peername)) != 0) in do_x509_check()
944 int X509_check_host(X509 *x, const char *chk, size_t chklen, in X509_check_host() argument
947 if (chk == NULL) in X509_check_host()
955 chklen = strlen(chk); in X509_check_host()
956 else if (memchr(chk, '\0', chklen > 1 ? chklen - 1 : chklen)) in X509_check_host()
958 if (chklen > 1 && chk[chklen - 1] == '\0') in X509_check_host()
[all …]
/third_party/f2fs-tools/fsck/
Dfsck.c484 fsck->chk.valid_blk_cnt++; in sanity_check_nid()
485 fsck->chk.valid_node_cnt++; in sanity_check_nid()
686 fsck->chk.valid_inode_cnt++; in fsck_chk_inode_blk()
698 fsck->chk.multi_hard_link_files++; in fsck_chk_inode_blk()
883 fsck->chk.valid_blk_cnt++; in fsck_chk_inode_blk()
1130 F2FS_FSCK(sbi)->chk.valid_blk_cnt++; in fsck_chk_dnode_blk()
1699 fsck->chk.valid_blk_cnt++; in fsck_chk_data_blk()
1722 fsck->chk.valid_blk_cnt++; in fsck_chk_data_blk()
1908 if (fsck->chk.sit_free_segs + sit_valid_segs != in fsck_chk_meta()
1912 fsck->chk.sit_free_segs, sit_valid_segs, in fsck_chk_meta()
[all …]
Dsegment.c31 if (fsck->chk.valid_blk_cnt >= sbi->user_block_count) { in reserve_new_block()
35 if (is_node && fsck->chk.valid_node_cnt >= in reserve_new_block()
84 fsck->chk.valid_blk_cnt++; in reserve_new_block()
86 fsck->chk.valid_node_cnt++; in reserve_new_block()
88 fsck->chk.valid_inode_cnt++; in reserve_new_block()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/
D6-1.c113 pid_t pid, chk; in threaded() local
145 chk = waitpid(pid, &status, 0); in threaded()
146 if (chk != pid) { in threaded()
147 output("Expected pid: %i. Got %i\n", (int)pid, (int)chk); in threaded()
/third_party/libwebsockets/plugins/ssh-base/crypto/
Dge25519.c199 fe25519 t, chk, num, den, den2, den4, den6; in ge25519_unpackneg_vartime() local
224 fe25519_square(&chk, &r->x); in ge25519_unpackneg_vartime()
225 fe25519_mul(&chk, &chk, &den); in ge25519_unpackneg_vartime()
226 if (!fe25519_iseq_vartime(&chk, &num)) in ge25519_unpackneg_vartime()
230 fe25519_square(&chk, &r->x); in ge25519_unpackneg_vartime()
231 fe25519_mul(&chk, &chk, &den); in ge25519_unpackneg_vartime()
232 if (!fe25519_iseq_vartime(&chk, &num)) in ge25519_unpackneg_vartime()
/third_party/openssl/crypto/objects/
Dobjxref.pl137 my ($chk) = @_;
138 if (!exists $oid_tbl{$chk})
140 die "Can't find \"$chk\"\n";
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/
Dhelper.c88 pid_t chk; in main() local
147 chk = waitpid(child, &status, 0); in main()
148 if (chk != child) { in main()
/third_party/libpng/scripts/
Dgenchk.cmake.in2 # Generate .chk from .out with awk (generic), based upon the automake logic.
23 if("${INPUTEXT}" STREQUAL ".out" AND "${OUTPUTEXT}" STREQUAL ".chk")
24 # Generate .chk from .out with awk (generic)
/third_party/flutter/skia/third_party/externals/libpng/scripts/
Dgenchk.cmake.in2 # Generate .chk from .out with awk (generic), based upon the automake logic.
23 if("${INPUTEXT}" STREQUAL ".out" AND "${OUTPUTEXT}" STREQUAL ".chk")
24 # Generate .chk from .out with awk (generic)
/third_party/skia/third_party/externals/libpng/scripts/
Dgenchk.cmake.in2 # Generate .chk from .out with awk (generic), based upon the automake logic.
23 if("${INPUTEXT}" STREQUAL ".out" AND "${OUTPUTEXT}" STREQUAL ".chk")
24 # Generate .chk from .out with awk (generic)
/third_party/lwip/test/sockets/
Dsockets_stresstest.c102 u16_t i, chk; in fill_test_data() local
111 chk = 0; in fill_test_data()
115 chk += rnd; in fill_test_data()
118 p[2] = (u8_t)(chk >> 8); in fill_test_data()
119 p[3] = (u8_t)chk; in fill_test_data()
126 u16_t i, chk, chk_rx, len_rx; in check_test_data() local
138 chk = 0; in check_test_data()
140 chk += p[i]; in check_test_data()
142 LWIP_ASSERT("invalid checksum", chk == chk_rx); in check_test_data()
/third_party/grpc/tools/run_tests/python_utils/
Dport_server.py99 chk = [
103 random.shuffle(chk)
104 for i in chk:
/third_party/flutter/skia/third_party/externals/libpng/
DMakefile.am156 SCRIPT_CLEANFILES=scripts/*.out scripts/*.chk
180 SUFFIXES = .chk .out
286 scripts/symbols.chk: scripts/checksym.awk scripts/symbols.def scripts/symbols.out
288 .out.chk:
314 check: scripts/symbols.chk

12345678910>>...16