Searched refs:tp (Results 151 - 175 of 1377) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/usr.bin/netstat/
H A Dmain.c299 tp_stats, NULL, 0, "tp" },
350 static void prepare(const char *, const char *, struct protox *tp);
382 prepare(const char *nf, const char *mf, struct protox *tp) argument
400 (pflag && tp->pr_sindex == N_TPSTAT) ||
401 (pflag && tp->pr_sindex == N_CLTPSTAT) ||
402 (pflag && tp->pr_sindex == N_CLNPSTAT) ||
403 (pflag && tp->pr_sindex == N_ESISSTAT) ||
405 (pflag && tp->pr_sindex == N_PIMSTAT) ||
443 struct protox *tp; /* for printing cblocks & stats */ local
456 tp
853 struct protox **tpp, *tp; local
869 struct protox *tp; local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/treelang/
H A Dtreelang.h65 #define NESTING_LEVEL(a) a->tp.pro.info[0] /* Level used for variable definitions. */
67 #define NUMERIC_TYPE(a) a->tp.pro.info[1]
69 #define SYMBOL_TABLE_NAME(a) (a->tp.pro.sub[0]) /* Name token. */
70 #define EXPRESSION_TYPE(a) (a->tp.pro.sub[1]) /* Type identifier. */
71 #define OP1(a) (a->tp.pro.sub[2]) /* Exp operand1. */
72 #define PARAMETERS(a) (a->tp.pro.sub[2]) /* Function parameters. */
73 #define VARIABLE(a) (a->tp.pro.sub[2]) /* Parameter variable ptr. */
74 #define VAR_INIT(a) (a->tp.pro.sub[2]) /* Variable init. */
75 #define OP2(a) (a->tp.pro.sub[3]) /* Exp operand2. */
77 #define FIRST_PARMS(a) (a->tp
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/generic/
H A Ddcpi1_bdiv_q.c48 mp_limb_t dinv, mp_ptr tp)
58 cy = mpn_dcpi1_bdiv_qr_n (qp, np, dp, lo, dinv, tp);
60 mpn_mullo_n (tp, qp, dp + hi, lo);
61 mpn_sub_n (np + hi, np + hi, tp, lo);
89 mp_ptr tp; local
98 tp = TMP_SALLOC_LIMBS (dn);
113 cy = mpn_dcpi1_bdiv_qr_n (qp, np, dp, qn, dinv, tp);
118 mpn_mul (tp, qp, qn, dp + qn, dn - qn);
120 mpn_mul (tp, dp + qn, dn - qn, qp, qn);
121 mpn_incr_u (tp
46 mpn_dcpi1_bdiv_q_n(mp_ptr qp, mp_ptr np, mp_srcptr dp, mp_size_t n, mp_limb_t dinv, mp_ptr tp) argument
[all...]
H A Dnussbaumer_mul.c38 mp_ptr tp; local
49 tp = TMP_ALLOC_LIMBS (mpn_sqrmod_bnm1_itch (rn, an));
50 mpn_sqrmod_bnm1 (pp, rn, ap, an, tp);
55 tp = TMP_ALLOC_LIMBS (mpn_mulmod_bnm1_itch (rn, an, bn));
56 mpn_mulmod_bnm1 (pp, rn, ap, an, bp, bn, tp);
H A Ddivexact.c1 /* mpn_divexact(qp,np,nn,dp,dn,tp) -- Divide N = {np,nn} by D = {dp,dn} storing
41 mp_ptr tp, wp; local
72 tp = TMP_ALLOC_LIMBS (ss);
73 mpn_rshift (tp, dp, ss, shift);
74 dp = tp;
90 tp = TMP_ALLOC_LIMBS (mpn_bdiv_q_itch (qn, dn));
91 mpn_bdiv_q (qp, wp, qn, dp, dn, tp);
131 mp_ptr tp; local
148 tp = scratch;
149 MPN_COPY (tp, n
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/xlint/common/
H A Dtyname.c92 tyname(char *buf, size_t bufsiz, type_t *tp) argument
99 if ((t = tp->t_tspec) == INT && tp->t_isenum)
105 if (tp->t_const)
107 if (tp->t_volatile)
136 tyname(lbuf, sizeof(lbuf), tp->t_subt));
141 tp->t_enum->etag->s_name
143 tp->t_isuniqpos ? "*anonymous*" : tp->t_tag->h_name
151 tp
[all...]
/netbsd-6-1-5-RELEASE/sys/netinet/
H A Dtcp_input.c267 nd6_hint(struct tcpcb *tp) argument
271 if (tp != NULL && tp->t_in6pcb != NULL && tp->t_family == AF_INET6 &&
272 (rt = rtcache_validate(&tp->t_in6pcb->in6p_route)) != NULL)
277 nd6_hint(struct tcpcb *tp) argument
289 tcp_setup_ack(struct tcpcb *tp, const struct tcphdr *th) argument
292 if (tp->t_flags & TF_DELACK ||
294 tp->t_flags |= TF_ACKNOW;
296 TCP_SET_DELACK(tp);
300 icmp_check(struct tcpcb *tp, const struct tcphdr *th, int acked) argument
446 tcp_reass(struct tcpcb *tp, const struct tcphdr *th, struct mbuf *m, int *tlen) argument
1219 struct tcpcb *tp = 0; local
3272 tcp_dooptions(struct tcpcb *tp, const u_char *cp, int cnt, struct tcphdr *th, struct mbuf *m, int toff, struct tcp_opt_info *oi) argument
3478 struct tcpcb *tp = sototcpcb(so); local
3502 tcp_xmit_timer(struct tcpcb *tp, uint32_t rtt) argument
3703 syn_cache_insert(struct syn_cache *sc, struct tcpcb *tp) argument
3865 syn_cache_cleanup(struct tcpcb *tp) argument
3953 struct tcpcb *tp = 0; local
4337 struct tcpcb tb, *tp; local
4553 struct tcpcb *tp = NULL; local
[all...]
H A Dtcp_debug.c114 tcp_trace(short act, short ostate, struct tcpcb *tp, struct mbuf *m, int req) argument
126 td->td_tcb = (void *)tp;
127 if (tp)
128 td->td_cb = *tp;
130 memset((void *)&td->td_cb, 0, sizeof (*tp));
131 td->td_family = tp->t_family;
163 if (tp)
164 printf("%p %s:", tp, tcpstates[ostate]);
208 if (tp)
209 printf(" -> %s", tcpstates[tp
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/bootstrap/
H A Dh_tp_basic_c.c77 ATF_TP_ADD_TCS(tp)
79 ATF_TP_ADD_TC(tp, pass);
80 ATF_TP_ADD_TC(tp, fail);
81 ATF_TP_ADD_TC(tp, skip);
82 ATF_TP_ADD_TC(tp, default);
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/ntpd/
H A Drefclock_tpro.c143 struct tproval *tp; local
152 tp = &up->tprodata;
153 if (read(pp->io.fd, (char *)tp, sizeof(struct tproval)) < 0) {
175 tp->day100, tp->day10, tp->day1, tp->hour10, tp->hour1,
176 tp->min10, tp
[all...]
H A Drefclock_tt560.c165 time_freeze_reg_t *tp; local
178 tp = &up->tt560rawt;
180 p_time_t = (unsigned int *)tp;
204 tp->hun_day, tp->tens_day, tp->unit_day,
205 tp->tens_hour, tp->unit_hour,
206 tp->tens_min, tp
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/time_put/put/char/
H A D12439_1.cc54 TP tp; local
55 tp.put(TP::iter_type(stream), stream, 'W', localtime(&tt),
57 VERIFY( !tp.fill_chars.empty() );
58 VERIFY( tp.fill_chars[tp.fill_chars.length() - 1] == 'W' );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/time_put/put/wchar_t/
H A D12439_1.cc52 TP tp; local
53 tp.put(TP::iter_type(stream), stream, L'W', localtime(&tt),
55 VERIFY( !tp.fill_chars.empty() );
56 VERIFY( tp.fill_chars[tp.fill_chars.length() - 1] == L'W' );
/netbsd-6-1-5-RELEASE/sys/arch/luna68k/dev/
H A Dsiotty.c157 struct tty *tp; local
165 tp = sc->sc_tty;
178 if (tp == NULL || (tp->t_state & TS_ISOPEN) == 0)
181 if ((rr & RR_BREAK) && tp->t_dev == cn_tab->cn_dev) {
186 (*tp->t_linesw->l_rint)(code, tp);
191 if (tp != NULL) {
192 tp->t_state &= ~(TS_BUSY|TS_FLUSH);
193 (*tp
199 siostart(struct tty *tp) argument
221 siostop(struct tty *tp, int flag) argument
236 sioparam(struct tty *tp, struct termios *t) argument
345 struct tty *tp; local
399 struct tty *tp = sc->sc_tty; local
422 struct tty *tp; local
433 struct tty *tp; local
444 struct tty *tp; local
455 struct tty *tp; local
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/sys/
H A Dntp_adjtime.c63 ntp_adjtime(tp)
64 struct timex *tp;
74 * ntp_adjtime() is callable for mortals if tp->modes == 0 !
77 rv = __ntp_adjtime(tp);
102 args.tp = tp;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/time_put/put/char/
H A D12439_1.cc53 TP tp; local
54 tp.put(TP::iter_type(stream), stream, 'W', localtime(&tt),
56 VERIFY( !tp.fill_chars.empty() );
57 VERIFY( tp.fill_chars[tp.fill_chars.length() - 1] == 'W' );
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/time_put/put/wchar_t/
H A D12439_1.cc53 TP tp; local
54 tp.put(TP::iter_type(stream), stream, L'W', localtime(&tt),
56 VERIFY( !tp.fill_chars.empty() );
57 VERIFY( tp.fill_chars[tp.fill_chars.length() - 1] == L'W' );
/netbsd-6-1-5-RELEASE/bin/ksh/
H A Dexec.c90 struct tbl *tp = NULL; local
100 tp = eval_execute_args(t, &ap);
134 tp = findcom(ap[0], FC_BI|FC_FUNC);
147 if (iosetup(*iowp, tp) < 0) {
152 if (tp && tp->type == CSHELL
153 && (tp->flag & SPEC_BI))
162 rv = comexec(t, tp, ap, flags);
453 comexec(t, tp, ap, flags)
455 struct tbl *volatile tp;
874 register struct tbl *tp; local
893 struct tbl *tp = (struct tbl *) 0; local
919 struct tbl *tp; local
964 register struct tbl *tp; local
996 struct tbl *tp = NULL, *tbi; local
1097 struct tbl *tp; local
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/amiga/dev/
H A Dmfc.c478 struct tty *tp; local
490 tp = sc->sc_tty;
492 tp = sc->sc_tty = tty_alloc();
493 tty_attach(tp);
496 tp->t_oproc = (void (*) (struct tty *)) mfcsstart;
497 tp->t_param = mfcsparam;
498 tp->t_dev = dev;
499 tp->t_hwiflow = mfcshwiflow;
501 if (kauth_authorize_device_tty(l->l_cred, KAUTH_DEVICE_TTY_OPEN, tp))
505 if ((tp
574 struct tty *tp; local
616 struct tty *tp = sc->sc_tty; local
626 struct tty *tp = sc->sc_tty; local
637 struct tty *tp = sc->sc_tty; local
655 register struct tty *tp; local
725 mfcsparam(struct tty *tp, struct termios *t) argument
793 mfcshwiflow(struct tty *tp, int flag) argument
806 mfcsstart(struct tty *tp) argument
863 mfcsstop(struct tty *tp, int flag) argument
945 struct tty *tp; local
1032 struct tty *tp = sc->sc_tty; local
1075 struct tty *tp; local
1120 struct tty *tp; local
1161 struct tty *tp = sc->sc_tty; local
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/evbppc/virtex/dev/
H A Dxlcom.c163 struct tty *tp; local
222 tp = tty_alloc();
223 tp->t_dev = dev;
224 tp->t_oproc = xlcom_start;
225 tp->t_param = xlcom_param;
226 tp->t_hwiflow = NULL; /* No HW flow control */
227 tty_attach(tp);
236 sc->sc_tty = tp;
246 struct tty *tp = sc->sc_tty; local
248 if (tp
260 struct tty *tp = sc->sc_tty; local
396 struct tty *tp; local
453 struct tty *tp; local
467 struct tty *tp; local
481 struct tty *tp; local
495 struct tty *tp; local
509 struct tty *tp; local
534 struct tty *tp; local
552 xlcom_stop(struct tty *tp, int flag) argument
575 xlcom_param(struct tty *tp, struct termios *t) argument
588 xlcom_start(struct tty *tp) argument
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpf/
H A Dsub.c28 mp_ptr rp, tp; local
197 tp = TMP_ALLOC_LIMBS (prec);
205 tp[i] = up[i];
206 tp[size] = 1;
216 tp[i] = ~vp[i] & GMP_NUMB_MASK;
217 cy_limb = 1 - mpn_add_1 (tp, tp, vsize, (mp_limb_t) 1);
221 tp[rsize] = 1;
233 MPN_COPY (tp, up, size);
234 cy_limb = mpn_sub_n (tp
[all...]
/netbsd-6-1-5-RELEASE/dist/nvi/ex/
H A Dex_at.c45 TEXT *tp; local
107 for (len = 0, tp = cbp->textq.cqh_last;
108 tp != (void *)&cbp->textq; tp = tp->q.cqe_prev)
109 len += tp->len + 1;
117 for (p = ecp->cp + len, tp = cbp->textq.cqh_last;
118 tp != (void *)&cbp->textq; tp = tp
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/
H A Dinet_ntop.c122 char tmp[sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")], *tp; local
161 tp = tmp;
167 *tp++ = ':';
172 *tp++ = ':';
177 if (!inet_ntop4(src+12, tp,
178 sizeof(tmp) - (tp - tmp)))
180 tp += strlen(tp);
183 tp += sprintf(tp, "
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/lwres/
H A Dlwinetntop.c119 char tmp[sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")], *tp; local
160 tp = tmp;
166 *tp++ = ':';
171 *tp++ = ':';
175 if (!inet_ntop4(src+12, tp,
176 sizeof(tmp) - (tp - tmp)))
178 tp += strlen(tp);
181 tp += sprintf(tp, "
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/
H A Dinet_ntop.c129 char tmp[sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")], *tp; local
168 tp = tmp;
174 *tp++ = ':';
179 *tp++ = ':';
183 if (!inet_ntop4(src+12, tp,
184 sizeof(tmp) - (tp - tmp)))
186 tp += strlen(tp);
189 tp += SPRINTF((tp, "
[all...]

Completed in 153 milliseconds

1234567891011>>