Searched refs:tp (Results 101 - 125 of 1377) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/atf-run/
H A Dexpect_helpers.c174 ATF_TP_ADD_TCS(tp)
176 ATF_TP_ADD_TC(tp, pass_and_pass);
177 ATF_TP_ADD_TC(tp, pass_but_fail_requirement);
178 ATF_TP_ADD_TC(tp, pass_but_fail_check);
179 ATF_TP_ADD_TC(tp, fail_and_fail_requirement);
180 ATF_TP_ADD_TC(tp, fail_and_fail_check);
181 ATF_TP_ADD_TC(tp, fail_but_pass);
182 ATF_TP_ADD_TC(tp, exit_any_and_exit);
183 ATF_TP_ADD_TC(tp, exit_code_and_exit);
184 ATF_TP_ADD_TC(tp, exit_but_pas
[all...]
H A Dseveral_tcs_helper.c65 ATF_TP_ADD_TCS(tp)
67 ATF_TP_ADD_TC(tp, first);
68 ATF_TP_ADD_TC(tp, second);
69 ATF_TP_ADD_TC(tp, third);
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/include/isc/
H A Drefcount.h111 #define isc_refcount_increment0(rp, tp) \
113 unsigned int *_tmp = (unsigned int *)(tp); \
120 #define isc_refcount_increment(rp, tp) \
122 unsigned int *_tmp = (unsigned int *)(tp); \
130 #define isc_refcount_decrement(rp, tp) \
132 unsigned int *_tmp = (unsigned int *)(tp); \
157 #define isc_refcount_increment0(rp, tp) \
159 unsigned int *_tmp = (unsigned int *)(tp); \
167 #define isc_refcount_increment(rp, tp) \
169 unsigned int *_tmp = (unsigned int *)(tp); \
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/generic/
H A Ddcpi1_div_q.c35 mp_ptr tp, wp; local
46 tp = TMP_SALLOC_LIMBS (nn + 1);
47 MPN_COPY (tp + 1, np, nn);
48 tp[0] = 0;
53 qh = mpn_dcpi1_divappr_q (wp, tp, nn + 1, dp, dn, dinv);
60 mpn_mul (tp, wp + 1, qn, dp, dn);
62 mpn_mul (tp, dp, dn, wp + 1, qn);
64 cy = (qh != 0) ? mpn_add_n (tp + qn, tp + qn, dp, dn) : 0;
66 if (cy || mpn_cmp (tp, n
[all...]
H A Dtoom_eval_pm1.c33 mp_srcptr xp, mp_size_t n, mp_size_t hn, mp_ptr tp)
50 tp[n] = mpn_add_n (tp, xp + n, xp + 3*n, n);
52 ASSERT_NOCARRY (mpn_add (tp, tp, n+1, xp+i*n, n));
55 ASSERT_NOCARRY (mpn_add (tp, tp, n+1, xp+k*n, hn));
59 neg = (mpn_cmp (xp1, tp, n + 1) < 0) ? ~0 : 0;
63 mpn_add_n_sub_n (xp1, xm1, tp, xp1, n + 1);
65 mpn_add_n_sub_n (xp1, xm1, xp1, tp,
32 mpn_toom_eval_pm1(mp_ptr xp1, mp_ptr xm1, unsigned k, mp_srcptr xp, mp_size_t n, mp_size_t hn, mp_ptr tp) argument
[all...]
H A Dbdiv_q.c36 mp_ptr tp)
42 MPN_COPY (tp, np, nn);
44 mpn_sbpi1_bdiv_q (qp, tp, nn, dp, dn, di);
48 MPN_COPY (tp, np, nn);
50 mpn_dcpi1_bdiv_q (qp, tp, nn, dp, dn, di);
54 mpn_mu_bdiv_q (qp, np, nn, dp, dn, tp);
33 mpn_bdiv_q(mp_ptr qp, mp_srcptr np, mp_size_t nn, mp_srcptr dp, mp_size_t dn, mp_ptr tp) argument
H A Dmullo_n.c135 mpn_dc_mullo_n requires a scratch space of 2*n limbs at tp.
136 It accepts tp == rp.
139 mpn_dc_mullo_n (mp_ptr rp, mp_srcptr xp, mp_srcptr yp, mp_size_t n, mp_ptr tp) argument
145 ASSERT (MPN_SAME_OR_SEPARATE2_P(rp, n, tp, 2*n));
170 mpn_mul_n (tp, xp, yp, n2);
171 MPN_COPY (rp, tp, n2);
175 mpn_mul_basecase (tp + n, xp + n2, n1, yp, n1);
177 mpn_mullo_basecase (tp + n, xp + n2, yp, n1);
179 mpn_dc_mullo_n (tp + n, xp + n2, yp, n1, tp
214 mp_limb_t tp[MUL_BASECASE_ALLOC]; local
224 mp_ptr tp; local
[all...]
H A Dmu_bdiv_qr.c1 /* mpn_mu_bdiv_qr(qp,rp,np,nn,dp,dn,tp) -- Compute {np,nn} / {dp,dn} mod B^qn,
55 particular, when dn==in, tp and rp could use the same space.
84 #define tp (scratch + in) /* dn+in or next_size(dn) or rest >= binvert_itch(in) */ macro
99 mpn_binvert (ip, dp, in, tp);
110 mpn_mul (tp, dp, dn, qp, in); /* mulhi, need tp[dn+in-1...in] */
114 mpn_mulmod_bnm1 (tp, tn, dp, dn, qp, in, scratch_out);
118 c0 = mpn_sub_n (tp + tn, tp, rp, wn);
119 mpn_decr_u (tp
170 #undef tp macro
179 #define tp macro
232 #undef tp macro
[all...]
/netbsd-6-1-5-RELEASE/sys/netinet/
H A Dtcp_subr.c447 tcp_template(struct tcpcb *tp) argument
449 struct inpcb *inp = tp->t_inpcb;
451 struct in6pcb *in6p = tp->t_in6pcb;
457 switch (tp->t_family) {
488 m = tp->t_template;
494 m = tp->t_template = NULL;
513 switch (tp->t_family) {
605 * template for a connection tp->t_template. If flags are given
614 tcp_respond(struct tcpcb *tp, struct mbuf *template, struct mbuf *m, argument
631 if (tp !
966 struct tcpcb *tp = &tcpcb_template; local
1012 struct tcpcb *tp; local
1094 tcp_drop(struct tcpcb *tp, int errno) argument
1132 tcp_close(struct tcpcb *tp) argument
1281 tcp_freeq(struct tcpcb *tp) argument
1331 struct tcpcb *tp; local
1379 struct tcpcb *tp = (struct tcpcb *)inp->inp_ppcb; local
1407 struct tcpcb *tp = (struct tcpcb *)in6p->in6p_ppcb; local
1554 struct tcpcb *tp; local
1701 struct tcpcb *tp = intotcpcb(inp); local
1714 struct tcpcb *tp = in6totcpcb(in6p); local
1751 struct tcpcb *tp = intotcpcb(inp); local
1808 struct tcpcb *tp = in6totcpcb(in6p); local
1936 tcp_mss_from_peer(struct tcpcb *tp, int offer) argument
2029 tcp_established(struct tcpcb *tp) argument
2127 tcp_rmx_rtt(struct tcpcb *tp) argument
2182 tcp_new_iss(struct tcpcb *tp, tcp_seq addin) argument
2314 ipsec4_hdrsiz_tcp(struct tcpcb *tp) argument
2337 ipsec6_hdrsiz_tcp(struct tcpcb *tp) argument
2371 tcp_optlen(struct tcpcb *tp) argument
2389 tcp_hdrsz(struct tcpcb *tp) argument
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/idea/
H A Di_skey.c108 register IDEA_INT *fp,*tp,t; local
110 tp= &(dk->data[0][0]);
114 *(tp++)=inverse(fp[0]);
115 *(tp++)=((int)(0x10000L-fp[2])&0xffff);
116 *(tp++)=((int)(0x10000L-fp[1])&0xffff);
117 *(tp++)=inverse(fp[3]);
120 *(tp++)=fp[4];
121 *(tp++)=fp[5];
124 tp= &(dk->data[0][0]);
125 t=tp[
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/dec/
H A Ddz.c249 struct tty *tp; local
259 tp = sc->sc_dz[line].dz_tty;
271 cn_check_magic(tp->t_dev, mcc, dz_cnm_state);
273 if (!(tp->t_state & TS_ISOPEN)) {
274 cv_broadcast(&tp->t_rawcv);
289 (*tp->t_linesw->l_rint)(cc, tp);
299 struct tty *tp; local
328 tp = sc->sc_dz[line].dz_tty;
329 cl = &tp
364 struct tty *tp; local
421 struct tty *tp = sc->sc_dz[line].dz_tty; local
439 struct tty *tp = sc->sc_dz[DZ_PORT(minor(dev))].dz_tty; local
448 struct tty *tp = sc->sc_dz[DZ_PORT(minor(dev))].dz_tty; local
457 struct tty *tp = sc->sc_dz[DZ_PORT(minor(dev))].dz_tty; local
468 struct tty *tp = sc->sc_dz[line].dz_tty; local
528 dzstop(struct tty *tp, int flag) argument
535 dzstart(struct tty *tp) argument
564 dzparam(struct tty *tp, struct termios *t) argument
696 struct tty *tp; local
755 struct tty *tp; local
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/ir/
H A Dirframe_tty.c267 irframetopen(dev_t dev, struct tty *tp) argument
279 KAUTH_DEVICE_TTY_OPEN, tp)))
284 DPRINTF(("%s: linesw=%p disc=%s\n", __func__, tp->t_linesw,
285 tp->t_linesw->l_name));
286 if (tp->t_linesw == &irframet_disc) {
287 sc = (struct irframet_softc *)tp->t_sc;
306 ia.ia_handle = tp;
309 tp->t_sc = sc;
310 sc->sc_tp = tp;
312 (int)minor(tp
335 irframetclose(struct tty *tp, int flag) argument
371 irframetioctl(struct tty *tp, u_long cmd, void *data, int flag, struct lwp *l) argument
409 irframetstart(struct tty *tp) argument
494 irframetinput(int c, struct tty *tp) argument
578 struct tty *tp = h; local
598 struct tty *tp = h; local
619 struct tty *tp = h; local
670 irt_putc(struct tty *tp, int c) argument
706 struct tty *tp = h; local
726 irt_write_frame(struct tty *tp, u_int8_t *tbuf, size_t len) argument
749 struct tty *tp = h; local
779 struct tty *tp = kn->kn_hook; local
791 struct tty *tp = kn->kn_hook; local
801 struct tty *tp = kn->kn_hook; local
813 struct tty *tp = kn->kn_hook; local
834 struct tty *tp = h; local
864 struct tty *tp = h; local
889 struct tty *tp = h; local
904 struct tty *tp = h; local
914 irt_ioctl(struct tty *tp, u_long cmd, void *arg) argument
933 irt_setspeed(struct tty *tp, u_int speed) argument
945 irt_setline(struct tty *tp, u_int line) argument
956 irt_delay(struct tty *tp, u_int ms) argument
969 irts_none(struct tty *tp, u_int speed) argument
989 irts_tekram(struct tty *tp, u_int speed) argument
1029 irts_jeteye(struct tty *tp, u_int speed) argument
1049 irts_actisys(struct tty *tp, u_int speed) argument
1089 irts_litelink(struct tty *tp, u_int speed) argument
1151 irts_girbil(struct tty *tp, u_int speed) argument
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dgettimeofday.c43 gettimeofday (struct timeval *tp, void *ignore) argument
57 tp->tv_usec = (ull % 1000000i64);
58 tp->tv_sec = (ull / 1000000i64);
69 gettimeofday (struct timeval *tp, void *ignore) argument
74 tp->tv_sec = (long) t;
75 tp->tv_usec = 0;
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpf/
H A Dsqrt_ui.c63 mp_ptr tp; local
80 tp = TMP_ALLOC_LIMBS (rsize);
82 MPN_ZERO (tp, zeros);
83 tp[zeros] = u & GMP_NUMB_MASK;
88 tp[zeros + 1] = uhigh;
93 mpn_sqrtrem (r->_mp_d, NULL, tp, rsize);
/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/
H A Dprint-tftp.c82 register const struct tftphdr *tp; local
88 tp = (const struct tftphdr *)bp;
94 TCHECK(tp->th_opcode);
95 opcode = EXTRACT_16BITS(&tp->th_opcode);
112 p = (u_char *)tp->th_stuff;
114 p = (u_char *)&tp->th_block;
126 if (length <= (u_int)(p - (const u_char *)&tp->th_block))
141 TCHECK(tp->th_block);
142 printf(" block %d", EXTRACT_16BITS(&tp->th_block));
147 TCHECK(tp
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/torture/
H A Dpr26565.c17 void send_probe(struct outdata *outdata, struct timeval *tp) __attribute__((noinline));
18 void send_probe(struct outdata *outdata, struct timeval *tp) argument
20 memcpy(&outdata->tv, tp, sizeof outdata->tv);
/netbsd-6-1-5-RELEASE/lib/libc/string/
H A Dmemccpy.c56 unsigned char *tp = t; local
60 if ((*tp++ = *fp++) == uc)
61 return (tp);
H A Dswab.c52 char *tp; local
62 tp = (char *)to;
63 #define STEP temp = *fp++,*tp++ = *fp++,*tp++ = temp
/netbsd-6-1-5-RELEASE/tests/include/
H A Dt_stdint.c50 ATF_TP_ADD_TCS(tp)
53 ATF_TP_ADD_TC(tp, int8);
54 ATF_TP_ADD_TC(tp, int16);
/netbsd-6-1-5-RELEASE/external/bsd/atf/dist/atf-c/
H A Dutils_test.c62 ATF_TP_ADD_TCS(tp)
64 ATF_TP_ADD_TC(tp, free_charpp_empty);
65 ATF_TP_ADD_TC(tp, free_charpp_some);
67 ATF_TP_ADD_TC(tp, include);
/netbsd-6-1-5-RELEASE/external/bsd/atf/dist/atf-run/
H A Dseveral_tcs_helper.c60 ATF_TP_ADD_TCS(tp)
62 ATF_TP_ADD_TC(tp, first);
63 ATF_TP_ADD_TC(tp, second);
64 ATF_TP_ADD_TC(tp, third);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/atf-c/
H A Dutils_test.c64 ATF_TP_ADD_TCS(tp)
66 ATF_TP_ADD_TC(tp, free_charpp_empty);
67 ATF_TP_ADD_TC(tp, free_charpp_some);
69 ATF_TP_ADD_TC(tp, include);
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/util/
H A Dprecision.c67 struct timeval tp; local
75 gettimeofday(&tp, &tzp);
76 last = tp.tv_usec;
78 gettimeofday(&tp, &tzp);
79 diff = tp.tv_usec - last;
82 last = tp.tv_usec;
122 struct timeval tp; local
137 tp.tv_sec = ts.tv_sec;
138 tp.tv_usec = ts.tv_nsec / 1000;
140 GETTIMEOFDAY(&tp,
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/cray/cfp/
H A Daddmul_1.c27 mp_limb_t p0[n], p1[n], tp[n]; local
31 cy_limb = mpn_add_n (tp, rp, p0, n);
32 rp[0] = tp[0];
34 cy_limb += mpn_add_n (rp + 1, tp + 1, p1, n - 1);
H A Dsubmul_1.c27 mp_limb_t p0[n], p1[n], tp[n]; local
31 cy_limb = mpn_sub_n (tp, rp, p0, n);
32 rp[0] = tp[0];
34 cy_limb += mpn_sub_n (rp + 1, tp + 1, p1, n - 1);

Completed in 438 milliseconds

1234567891011>>