Searched refs:tcount (Results 1 - 23 of 23) sorted by last modified time

/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Dtasn_enc.c176 if ((i >= 0) && (i < it->tcount)) {
233 for (i = 0, tt = it->templates; i < it->tcount; tt++, i++) {
252 for (i = 0, tt = it->templates; i < it->tcount; tt++, i++) {
H A Dtasn_dec.c343 if ((i >= 0) && (i < it->tcount)) {
355 for (i = 0, tt = it->templates; i < it->tcount; i++, tt++) {
374 if (i == it->tcount) {
430 for (i = 0, tt = it->templates; i < it->tcount; i++, tt++) {
443 for (i = 0, tt = it->templates; i < it->tcount; i++, tt++) {
470 if (i == (it->tcount - 1))
510 for (; i < it->tcount; tt++, i++) {
H A Dtasn_prn.c257 if ((i < 0) || (i >= it->tcount)) {
291 for (i = 0, tt = it->templates; i < it->tcount; i++, tt++) {
H A Dtasn_new.c187 for (i = 0, tt = it->templates; i < it->tcount; tt++, i++) {
H A Dtasn_fre.c115 if ((i >= 0) && (i < it->tcount)) {
156 tt = it->templates + it->tcount - 1;
157 for (i = 0; i < it->tcount; tt--, i++) {
H A Dasn1t.h569 long tcount; /* Number of templates if SEQUENCE or CHOICE */ member in struct:ASN1_ITEM_st
/freebsd-11-stable/sys/netipsec/
H A Dipsec.h82 u_int tcount; /* IPsec transforms count */ member in struct:secpolicy
H A Dkey.c1084 while (sp->tcount > 0)
1085 ipsec_delisr(sp->req[--sp->tcount]);
1376 newsp->tcount = 0;
1415 if (newsp->tcount >= IPSEC_MAXREQ) {
1435 newsp->req[newsp->tcount++] = isr;
1600 if (newsp->tcount < 1) {
1694 for (i = 0; i < sp->tcount; i++) {
2584 for (i = 0; i < sp->tcount; i++) {
H A Dipsec.c872 IPSEC_ASSERT(idx < sp->tcount, ("Wrong IPsec request index %d", idx));
1042 for (i = 0; i < sp->tcount; i++) {
1106 for (i = 0; i < sp->tcount; i++) {
H A Dkey_debug.c730 for (idx = 0; idx < sp->tcount; idx++) {
H A Dipsec_output.c170 if (sp->tcount > ++(*pidx))
193 IPSEC_ASSERT(idx < sp->tcount, ("Wrong IPsec request index %d", idx));
482 if (sp->tcount > ++(*pidx))
505 IPSEC_ASSERT(idx < sp->tcount, ("Wrong IPsec request index %d", idx));
751 if (++idx < sp->tcount) {
H A Dipsec_pcb.c209 for (i = 0; i < src->tcount; i++) {
216 dst->tcount++;
/freebsd-11-stable/sys/net/
H A Dif_ipsec.c736 sp[i]->req[sp[i]->tcount++] = isr;
/freebsd-11-stable/contrib/binutils/bfd/
H A Delfxx-mips.c3104 unsigned int tcount = bfd2got->g->tls_gotno;
3112 if (tcount > 0)
3114 unsigned int primary_total = lcount + tcount + arg->global_count;
3121 if (! arg->primary && lcount + gcount + tcount <= maxcnt
3131 && (arg->primary_count + lcount + gcount + tcount) <= maxcnt)
3153 BFD_ASSERT (old_tcount + tcount >= arg->primary->tls_gotno);
3160 && arg->current_count + lcount + gcount + tcount <= maxcnt)
3179 BFD_ASSERT (old_tcount + tcount >= arg->current->tls_gotno);
3192 arg->current_count = lcount + gcount + 2 * tcount;
3090 unsigned int tcount = bfd2got->g->tls_gotno; local
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-isakmp.c1906 ikev2_t_print(netdissect_options *ndo, int tcount, argument
1958 ND_PRINT((ndo," #%u type=%s id=%s ", tcount,
1962 ND_PRINT((ndo," #%u type=%s id=%u ", tcount,
1993 int tcount; local
2026 tcount = 0;
2028 tcount++;
2055 cp = ikev2_t_print(ndo, tcount, ext, item_len, ep);
/freebsd-11-stable/sys/netpfil/ipfw/
H A Dip_fw_sockopt.c689 int error, i, insert_before, tcount; local
696 tcount = 0;
714 if (tcount > 0) {
736 tcount++;
742 if (tcount > 0) {
2235 uint32_t tcount; /* number of tables */ member in struct:dump_args
2280 for (i = 0; i < IPFW_TABLES_MAX && da->tcount > 0; i++) {
2285 da->tcount--;
2297 MPASS(da->tcount > 0);
2303 ctlv->head.length = da->tcount * sizeo
[all...]
/freebsd-11-stable/sys/kern/
H A Dkern_tc.c1775 u_int tcount, *pcount; local
1839 tcount = pps->capcount - pps->capth->th_offset_count;
1840 tcount &= pps->capth->th_counter->tc_counter_mask;
1842 bintime_addx(&bt, pps->capth->th_scale * tcount);
1863 *ffcount = pps->capffth->tick_ffcount + tcount;
1865 ffclock_convert_delta(tcount, pps->capffth->cest.period, &bt);
1881 tcount = pps->capcount - pps->ppscount[2];
1883 tcount &= pps->capth->th_counter->tc_counter_mask;
1889 bintime_addx(&bt, scale * tcount);
/freebsd-11-stable/sys/cam/scsi/
H A Dscsi_low.c4008 int tcount; local
4010 tcount = 0;
4016 if (tcount ++ < SCSI_LOW_POLL_HZ / SCSI_LOW_TIMEOUT_HZ)
4019 tcount = 0;
/freebsd-11-stable/contrib/netbsd-tests/dev/sysmon/
H A Dt_swwdog.c48 static volatile sig_atomic_t tcount; variable
55 tcount++;
84 ATF_REQUIRE_EQ(tcount, max);
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_irig.c254 int tcount; /* time constant counter */ member in struct:irigunit
646 up->tcount = 0;
766 up->tcount++;
767 if (up->tcount > 20 * up->tc) {
771 up->tcount = 0;
777 up->tcount = 0;
H A Drefclock_wwvb.c135 int tcount; /* timecode sample counter */ member in struct:wwvbunit
436 up->tcount++;
531 if (up->tcount == 0) {
536 up->pcount = up->tcount = 0;
/freebsd-11-stable/contrib/gdb/gdb/
H A Dremote.c3946 int tcount = 0;
4012 tcount++;
4013 if (tcount > 3)
3935 int tcount = 0; local
/freebsd-11-stable/sys/sparc64/sparc64/
H A Djbusppm.c115 u_long tcount, tstart, jcount, jstart; local
174 &tstart, &tcount) != 0) {
181 &rid, tstart, tstart + tcount - 1, tcount,

Completed in 272 milliseconds