Searched refs:tp (Results 176 - 200 of 1377) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/sys/dev/iscsi/
H A Discsi_test.c174 * tp the test parameters
179 update_options(test_pars_t *tp, mod_desc_t *mod) argument
181 if ((tp->options & ISCSITEST_OPT_DISABLE_CCB_TIMEOUT) &&
183 tp->options &= ~ISCSITEST_OPT_DISABLE_CCB_TIMEOUT;
184 else if (!(tp->options & ISCSITEST_OPT_DISABLE_CCB_TIMEOUT) &&
186 tp->options |= ISCSITEST_OPT_DISABLE_CCB_TIMEOUT;
188 if ((tp->options & ISCSITEST_OPT_DISABLE_CONN_TIMEOUT) &&
190 tp->options &= ~ISCSITEST_OPT_DISABLE_CONN_TIMEOUT;
191 else if (!(tp->options & ISCSITEST_OPT_DISABLE_CONN_TIMEOUT) &&
193 tp
270 check_loss(test_pars_t *tp, int rxtx) argument
293 test_mod(test_pars_t *tp, pdu_t *pdu, iscsi_pdu_kind_t kind, int rxtx, int err) argument
470 free_negs(test_pars_t *tp) argument
491 free_mods(test_pars_t *tp, uint32_t status) argument
525 test_pars_t *tp; local
596 test_pars_t *tp; local
659 test_pars_t *tp; local
684 test_pars_t *tp; local
741 add_neg(test_pars_t *tp, void *addr, uint32_t len) argument
775 test_pars_t *tp; local
856 test_pars_t *tp; local
883 test_pars_t *tp; local
943 test_pars_t *tp; local
976 test_pars_t *tp; local
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/generic/
H A Dtoom_eval_pm2.c60 mp_srcptr xp, mp_size_t n, mp_size_t hn, mp_ptr tp)
86 DO_addlsh2 (tp, xp + (k-2) * n, xp + k * n, n, cy);
88 DO_addlsh2 (tp, xp + i * n, tp, n, cy);
89 tp[n] = cy;
92 ASSERT_NOCARRY(mpn_lshift (tp , tp , n + 1, 1));
96 neg = (mpn_cmp (xp2, tp, n + 1) < 0) ? ~0 : 0;
100 mpn_add_n_sub_n (xp2, xm2, tp, xp2, n + 1);
102 mpn_add_n_sub_n (xp2, xm2, xp2, tp,
59 mpn_toom_eval_pm2(mp_ptr xp2, mp_ptr xm2, unsigned k, mp_srcptr xp, mp_size_t n, mp_size_t hn, mp_ptr tp) argument
[all...]
H A Dmu_bdiv_q.c1 /* mpn_mu_bdiv_q(qp,np,nn,dp,dn,tp) -- Compute {np,nn} / {dp,dn} mod B^nn.
55 particular, when dn==in, tp and rp could use the same space.
83 #define tp (scratch + in + dn) /* dn+in or next_size(dn) */ macro
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 + wn, c0);
126 /* Subtract tp[d
175 #undef tp macro
184 #define tp macro
212 #undef tp macro
[all...]
H A Dpowm_sec.c45 * Write an itch function. Or perhaps get rid of tp parameter since the huge
101 #define mpn_local_sqr(rp,up,n,tp) mpn_sqr_basecase(rp,up,n)
106 mpn_local_sqr (mp_ptr rp, mp_srcptr up, mp_size_t n, mp_ptr tp) argument
131 cy = mpn_mul_1 (tp, up + 1, n - 1, up[0]);
132 tp[n - 1] = cy;
136 cy = mpn_addmul_1 (tp + 2 * i - 2, up + i, n - i, up[i - 1]);
137 tp[n + i - 2] = cy;
144 cy = mpn_addlsh1_n (rp + 1, rp + 1, tp, 2 * n - 2);
146 cy = mpn_lshift (tp, tp,
196 redcify(mp_ptr rp, mp_srcptr up, mp_size_t un, mp_srcptr mp, mp_size_t n, mp_ptr tp) argument
215 mpn_powm_sec(mp_ptr rp, mp_srcptr bp, mp_size_t bn, mp_srcptr ep, mp_size_t en, mp_srcptr mp, mp_size_t n, mp_ptr tp) argument
314 volatile mp_limb_t *tp; local
[all...]
H A Dmu_div_qr.c157 mp_ptr ip, tp; local
172 tp = scratch + in + 1;
177 MPN_COPY (tp + 1, dp, in);
178 tp[0] = 1;
179 mpn_invertappr (ip, tp, in + 1, NULL);
184 cy = mpn_add_1 (tp, dp + dn - (in + 1), in + 1, 1);
189 mpn_invertappr (ip, tp, in + 1, NULL);
197 tp = scratch + in;
203 tp[in + 1] = 0;
204 MPN_COPY (tp
238 #define tp macro
[all...]
H A Dgcdext.c31 mp_ptr rp, mp_srcptr ap, mp_ptr bp, mp_size_t n, mp_ptr tp)
48 mpn_mul (tp, M->p[0][0], M->n, ap, n);
53 mpn_mul (tp, ap, n, M->p[0][0], M->n);
57 ah = mpn_add_n (rp, rp, tp, n + M->n);
61 mpn_mul (tp, M->p[1][1], M->n, bp, n);
66 mpn_mul (tp, bp, n, M->p[1][1], M->n);
69 bh = mpn_add_n (bp, bp, tp, n + M->n);
98 mp_ptr tp)
116 mpn_mul (tp, ap, an, up, size);
118 mpn_mul (tp, u
30 hgcd_mul_matrix_vector(struct hgcd_matrix *M, mp_ptr rp, mp_srcptr ap, mp_ptr bp, mp_size_t n, mp_ptr tp) argument
94 compute_v(mp_ptr vp, mp_srcptr ap, mp_srcptr bp, mp_size_t n, mp_srcptr gp, mp_size_t gn, mp_srcptr up, mp_size_t usize, mp_ptr tp) argument
201 mp_ptr tp; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/atf/dist/test-programs/
H A Dc_helpers.c506 ATF_TP_ADD_TCS(tp)
509 ATF_TP_ADD_TC(tp, cleanup_pass);
510 ATF_TP_ADD_TC(tp, cleanup_fail);
511 ATF_TP_ADD_TC(tp, cleanup_skip);
512 ATF_TP_ADD_TC(tp, cleanup_curdir);
513 ATF_TP_ADD_TC(tp, cleanup_sigterm);
514 ATF_TP_ADD_TC(tp, cleanup_fork);
517 ATF_TP_ADD_TC(tp, config_unset);
518 ATF_TP_ADD_TC(tp, config_empty);
519 ATF_TP_ADD_TC(tp, config_valu
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/test-programs/
H A Dc_helpers.c514 ATF_TP_ADD_TCS(tp)
517 ATF_TP_ADD_TC(tp, cleanup_pass);
518 ATF_TP_ADD_TC(tp, cleanup_fail);
519 ATF_TP_ADD_TC(tp, cleanup_skip);
520 ATF_TP_ADD_TC(tp, cleanup_curdir);
521 ATF_TP_ADD_TC(tp, cleanup_sigterm);
522 ATF_TP_ADD_TC(tp, cleanup_fork);
525 ATF_TP_ADD_TC(tp, config_unset);
526 ATF_TP_ADD_TC(tp, config_empty);
527 ATF_TP_ADD_TC(tp, config_valu
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/
H A Dprint-atalk.c389 register const struct atNBPtuple *tp = local
407 if ((const u_char *)tp > ep) {
417 if ((const u_char *)(tp + 1) > ep) {
421 (void)nbp_name_print(tp, ep);
429 if (tp->enumerator)
430 (void)printf(" [enum=%d]", tp->enumerator);
431 if (EXTRACT_16BITS(&tp->net) != snet ||
432 tp->node != snode || tp->skt != skt)
434 ataddr_string(EXTRACT_16BITS(&tp
481 nbp_tuple_print(register const struct atNBPtuple *tp, register const u_char *ep, register u_short snet, register u_char snode, register u_char skt) argument
511 nbp_name_print(const struct atNBPtuple *tp, register const u_char *ep) argument
546 register struct hnamemem *tp, *tp2; local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/treelang/
H A Dtree1.c243 for (this = symbol_table; this; this = this->tp.pro.next)
246 this_tok = this->tp.pro.main_token;
248 if (tok->tp.tok.length != this_tok->tp.tok.length)
250 if (memcmp (tok->tp.tok.chars, this_tok->tp.tok.chars,
251 this_tok->tp.tok.length))
256 tok->tp.tok.chars, LOCATION_LINE (tok->tp.tok.location),
257 tok->tp
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/inet/
H A Dinet_ntop.c144 char *tp, *ep; local
189 tp = tmp;
196 *tp++ = ':';
201 if (tp + 1 >= ep)
203 *tp++ = ':';
210 if (!inet_ntop4(src+12, tp, (socklen_t)(ep - tp)))
212 tp += strlen(tp);
215 advance = snprintf(tp, (size_
[all...]
H A Dinet_pton.c226 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
234 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
235 endp = tp + NS_IN6ADDRSZ;
261 colonp = tp;
265 if (tp + NS_INT16SZ > endp)
267 *tp++ = (u_char) (val >> 8) & 0xff;
268 *tp++ = (u_char) val & 0xff;
273 if (ch == '.' && ((tp + NS_INADDRSZ) <= endp) &&
274 inet_pton4(curtok, tp, 1) > 0) {
275 tp
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/kadm5/
H A Dfree.c71 krb5_tl_data *tp; local
72 tp = princ->tl_data;
73 princ->tl_data = tp->tl_data_next;
75 memset(tp->tl_data_contents, 0, tp->tl_data_length);
76 free(tp->tl_data_contents);
77 free(tp);
/netbsd-6-1-5-RELEASE/usr.sbin/tpctl/
H A Dtpctl.h72 struct tp { struct
96 int tp_init(struct tp *, int);
97 int tp_setrawmode(struct tp *);
98 int tp_setcalibcoords(struct tp *, struct wsmouse_calibcoords *);
99 int tp_flush(struct tp *);
100 int tp_get(struct tp *, int *, int *, int (*)(void *), void *);
101 int tp_waitup(struct tp *, int, int (*)(void *), void *);
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpf/
H A Dui_div.c31 mp_ptr rp, tp, remp, new_vp; local
70 tp = TMP_ALLOC_LIMBS (tsize);
80 tp = remp + vsize;
81 new_vp = tp + tsize;
91 MPN_ZERO (tp, tsize-1);
93 tp[tsize - 1] = u & GMP_NUMB_MASK;
100 tp[tsize - 1] = u >> GMP_NUMB_BITS;
101 tp[tsize - 2] = u & GMP_NUMB_MASK;
107 mpn_tdiv_qr (rp, remp, (mp_size_t) 0, tp, tsize, vp, vsize);
/netbsd-6-1-5-RELEASE/tests/rump/rumpkern/
H A Dt_kern.c106 ATF_TP_ADD_TCS(tp)
109 ATF_TP_ADD_TC(tp, lockme_MTX);
110 ATF_TP_ADD_TC(tp, lockme_RWDOUBLEX);
111 ATF_TP_ADD_TC(tp, lockme_RWRX);
112 ATF_TP_ADD_TC(tp, lockme_RWXR);
113 ATF_TP_ADD_TC(tp, lockme_DOUBLEINIT);
114 ATF_TP_ADD_TC(tp, lockme_DOUBLEFREE);
115 ATF_TP_ADD_TC(tp, lockme_DESTROYHELD);
116 ATF_TP_ADD_TC(tp, lockme_MEMFREE);
H A Dt_threads.c75 ATF_TP_ADD_TCS(tp)
77 ATF_TP_ADD_TC(tp, threadjoin);
78 ATF_TP_ADD_TC(tp, kthread);
/netbsd-6-1-5-RELEASE/sys/arch/amiga/dev/
H A Dser.c222 struct tty *tp; local
259 tp = tty_alloc();
260 tp->t_oproc = (void (*) (struct tty *)) serstart;
261 tp->t_param = serparam;
262 tp->t_hwiflow = serhwiflow;
263 tty_attach(tp);
264 sc->ser_tty = ser_tty = tp;
277 struct tty *tp; local
291 tp = sc->ser_tty;
293 if (kauth_authorize_device_tty(l->l_cred, KAUTH_DEVICE_TTY_OPEN, tp))
369 struct tty *tp; local
390 struct tty *tp = sc->ser_tty; local
525 struct tty *tp = ser_tty; local
568 struct tty *tp; local
630 struct tty *tp; local
686 register struct tty *tp; local
754 serparam(struct tty *tp, struct termios *t) argument
814 serhwiflow(struct tty *tp, int flag) argument
827 ser_putchar(struct tty *tp, u_short c) argument
859 struct tty *tp; local
899 serstart(struct tty *tp) argument
963 serstop(struct tty *tp, int flag) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/atf-c/
H A Dtp_test.c85 HEADER_TC(include, "atf-c/tp.h");
91 ATF_TP_ADD_TCS(tp)
93 ATF_TP_ADD_TC(tp, getopt);
96 ATF_TP_ADD_TC(tp, include);
/netbsd-6-1-5-RELEASE/gnu/usr.bin/rcs/ident/
H A Dident.c241 register char * tp; local
243 tp = line;
249 *tp++ = c;
250 if (tp < line+sizeof(line)-4)
257 if (tp == line)
259 *tp++ = c;
262 *tp++ = c;
268 *tp++ = c;
269 if (tp < line+sizeof(line)-2)
276 if (tp[
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/qbus/
H A Ddhu.c289 struct tty *tp; local
291 tp = sc->sc_dhu[i].dhu_tty = tty_alloc();
293 bus_dmamap_create(sc->sc_dmat, tp->t_outq.c_cn, 1,
294 tp->t_outq.c_cn, 0, BUS_DMA_ALLOCNOW|BUS_DMA_NOWAIT,
297 tp->t_outq.c_cs, tp->t_outq.c_cn, 0, BUS_DMA_NOWAIT);
319 struct tty *tp; local
333 tp = sc->sc_dhu[line].dhu_tty;
341 if (!(tp->t_state & TS_CARR_ON))
342 (void)(*tp
391 struct tty *tp; local
426 struct tty *tp; local
497 struct tty *tp = sc->sc_dhu[line].dhu_tty; local
517 struct tty *tp = sc->sc_dhu[DHU_LINE(minor(dev))].dhu_tty; local
526 struct tty *tp = sc->sc_dhu[DHU_LINE(minor(dev))].dhu_tty; local
535 struct tty *tp = sc->sc_dhu[DHU_LINE(minor(dev))].dhu_tty; local
547 struct tty *tp = sc->sc_dhu[line].dhu_tty; local
608 dhustop(struct tty *tp, int flag) argument
636 dhustart(struct tty *tp) argument
691 dhuparam(struct tty *tp, struct termios *t) argument
778 dhuiflow(struct tty *tp, int flag) argument
[all...]
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/bounce/
H A Dbounce_templates.c345 BOUNCE_TEMPLATE *tp; local
347 tp = ts->failure;
348 vstream_fprintf(fp, "expanded_%s_text = <<EOF\n", tp->class);
349 bounce_template_expand(bounce_plain_out, fp, tp);
352 tp = ts->delay;
353 vstream_fprintf(fp, "expanded_%s_text = <<EOF\n", tp->class);
354 bounce_template_expand(bounce_plain_out, fp, tp);
357 tp = ts->success;
358 vstream_fprintf(fp, "expanded_%s_text = <<EOF\n", tp->class);
359 bounce_template_expand(bounce_plain_out, fp, tp);
372 BOUNCE_TEMPLATE *tp; local
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/sun/
H A Dsunkbd.c135 struct tty *tp = args->kmta_tp; local
143 ttyldisc_release(tp->t_linesw);
144 tp->t_linesw = ttyldisc_lookup(sunkbd_disc.l_name);
145 KASSERT(tp->t_linesw == &sunkbd_disc);
146 tp->t_oflag &= ~OPOST;
147 tp->t_dev = args->kmta_dev;
150 k->k_priv = tp;
151 tp->t_sc = k;
215 struct tty *tp = k->k_priv; local
221 if ((error = cdev_open(tp
239 sunkbdinput(int c, struct tty *tp) argument
284 sunkbdstart(struct tty *tp) argument
303 struct tty *tp = k->k_priv; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/bn/asm/
H A Dsparcv9-mont.pl71 $tp="%l4";
114 add %sp,$bias+$frame,$tp
140 st $car1,[$tp]
145 add $tp,4,$tp ! tp++
155 st $car1,[$tp]
163 st $car1,[$tp+4]
167 st $car1,[$tp+8]
174 add %sp,$bias+$frame,$tp
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/opcodes/
H A Dcris-dis.c751 char *tp = temp;
770 *tp++ = '.';
773 *tp++ = *s == 'M'
785 *tp++ = ' ';
808 tp = format_sup_reg ((insn >> 12) & 15, tp, with_reg_prefix);
813 *tp++ = REGISTER_PREFIX_CHAR;
814 *tp++ = 'a';
815 *tp++ = 'c';
816 *tp
750 char *tp = temp; local
[all...]

Completed in 325 milliseconds

1234567891011>>