Home
last modified time | relevance | path

Searched refs:chk (Results 1 – 25 of 387) 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/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/f2fs-tools/fsck/
Dfsck.c497 fsck->chk.valid_blk_cnt++; in sanity_check_nid()
498 fsck->chk.valid_node_cnt++; in sanity_check_nid()
504 if (sbi->fsck->chk.checked_node_cnt++ % p10) in sanity_check_nid()
508 sbi->fsck->chk.checked_node_cnt, in sanity_check_nid()
510 10 * (float)sbi->fsck->chk.checked_node_cnt / in sanity_check_nid()
737 fsck->chk.valid_inode_cnt++; in fsck_chk_inode_blk()
751 fsck->chk.multi_hard_link_files++; in fsck_chk_inode_blk()
960 fsck->chk.valid_blk_cnt++; in fsck_chk_inode_blk()
1229 F2FS_FSCK(sbi)->chk.valid_blk_cnt++; in fsck_chk_dnode_blk()
1853 fsck->chk.valid_blk_cnt++; in fsck_chk_data_blk()
[all …]
Dsegment.c34 if (fsck->chk.valid_blk_cnt >= sbi->user_block_count) { in reserve_new_block()
38 if (is_node && fsck->chk.valid_node_cnt >= in reserve_new_block()
87 fsck->chk.valid_blk_cnt++; in reserve_new_block()
89 fsck->chk.valid_node_cnt++; in reserve_new_block()
91 fsck->chk.valid_inode_cnt++; in reserve_new_block()
/third_party/openssl/crypto/x509/
Dv3_utl.c876 static int do_x509_check(X509 *x, const char *chk, size_t chklen, in do_x509_check() argument
897 if (chklen > 1 && chk[0] == '.') in do_x509_check()
910 chklen = strlen(chk); in do_x509_check()
933 chk, chklen, peername)) != 0) in do_x509_check()
951 chk, chklen, peername)) != 0) in do_x509_check()
973 chk, chklen, peername)) != 0) in do_x509_check()
979 int X509_check_host(X509 *x, const char *chk, size_t chklen, in X509_check_host() argument
982 if (chk == NULL) in X509_check_host()
990 chklen = strlen(chk); in X509_check_host()
991 else if (memchr(chk, '\0', chklen > 1 ? chklen - 1 : chklen)) in X509_check_host()
[all …]
/third_party/node/test/common/
Dudppair.js91 (chk) => setImmediate(() => clientSide.emitReceived(chk)));
93 (chk) => setImmediate(() => serverSide.emitReceived(chk)));
/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/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/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/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/openssl/crypto/objects/
Dobjxref.pl135 my ($chk) = @_;
136 if (!exists $oid_tbl{$chk})
138 die "Can't find \"$chk\"\n";
/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/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/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
/third_party/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
/third_party/musl/ndk_musl_include/fortify/
Dunistd.h81 return __DIAGNOSE_PREAD_PREFIX(chk)(fd, buf, count, offset, bos); in pread()
97 return __DIAGNOSE_PWRITE_PREFIX(chk)(fd, buf, count, offset, bos); in pwrite()
/third_party/musl/porting/linux/user/include/fortify/
Dunistd.h81 return __DIAGNOSE_PREAD_PREFIX(chk)(fd, buf, count, offset, bos); in pread()
97 return __DIAGNOSE_PWRITE_PREFIX(chk)(fd, buf, count, offset, bos); in pwrite()
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
Dgenerate_real_test.cc462 uint64_t chk = 0; in TEST() local
469 chk = (~uint64_t(0)) >> (clz + 1); in TEST()
471 for (; x > chk && limit > 0; x -= dec) { in TEST()
/third_party/node/deps/npm/node_modules/tweetnacl/
Dnacl.js793 var t = gf(), chk = gf(), num = gf(),
816 S(chk, r[0]);
817 M(chk, chk, den);
818 if (neq25519(chk, num)) M(r[0], r[0], I);
820 S(chk, r[0]);
821 M(chk, chk, den);
822 if (neq25519(chk, num)) return -1;

12345678910>>...16