Searched refs:tp2 (Results 1 - 21 of 21) sorted by relevance

/freebsd-10.0-release/lib/libc/stdlib/
H A Dmerge.c107 u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; local
136 for (tp2 = p2 = list2; p2 != last; p1 = EVAL(l2)) {
194 ICOPY_LIST(f2, tp2, b);
195 ICOPY_ELT(f1, tp2, i);
197 CCOPY_LIST(f2, tp2, b);
198 CCOPY_ELT(f1, tp2, i);
202 ICOPY_LIST(f1, tp2, b);
203 ICOPY_ELT(f2, tp2, i);
205 CCOPY_LIST(f1, tp2, b);
206 CCOPY_ELT(f2, tp2,
[all...]
/freebsd-10.0-release/usr.bin/xlint/lint2/
H A Dchk.c236 type_t *tp1, *tp2; local
251 tp2 = TP(call->f_type)->t_subt;
252 eq = eqtype(tp1, tp2, 1, 0, 0, (warn = 0, &warn));
296 type_t *tp1, *tp2; local
310 tp2 = TP(sym->s_type);
312 if (tp1->t_tspec == FUNC && tp2->t_tspec == FUNC) {
313 eq = eqtype(tp1->t_subt, tp2->t_subt, 1, 0, 0, &warn);
315 eq = eqtype(tp1, tp2, 0, 0, 0, &warn);
334 type_t *tp1, *tp2, **ap1, **ap2; local
371 if ((tp2
1099 type_t **ap1, **ap2, *tp1, *tp2; local
1174 eqtype(type_t *tp1, type_t *tp2, int ignqual, int promot, int asgn, int *warn) argument
1300 eqargs(type_t *tp1, type_t *tp2, int *warn) argument
[all...]
/freebsd-10.0-release/usr.bin/calendar/
H A Dday.c49 settimes(time_t now, int before, int after, int friday, struct tm *tp1, struct tm *tp2) argument
64 localtime_r(&time2, tp2);
65 year2 = 1900 + tp2->tm_year;
H A Dcalendar.c78 struct tm tp1, tp2; local
184 settimes(f_time, f_dayBefore, f_dayAfter, Friday, &tp1, &tp2);
185 generatedates(&tp1, &tp2);
H A Dcalendar.h158 void settimes(time_t,int before, int after, int friday, struct tm *tp1, struct tm *tp2);
184 void generatedates(struct tm *tp1, struct tm *tp2);
H A Ddates.c169 generatedates(struct tm *tp1, struct tm *tp2) argument
178 y2 = tp2->tm_year;
179 m2 = tp2->tm_mon + 1;
180 d2 = tp2->tm_mday;
/freebsd-10.0-release/sys/dev/nmdm/
H A Dnmdm.c244 struct tty *tp2; local
247 tp2 = np->np_other->np_tty;
249 if (!((t->c_cflag | tp2->t_termios.c_cflag) & CDSR_OFLOW)) {
262 bpc = imax(bits_per_char(t), bits_per_char(&tp2->t_termios));
266 speed = imin(tp2->t_termios.c_ospeed, t->c_ispeed);
291 t = &tp2->t_termios;
292 tp2 = tp;
/freebsd-10.0-release/contrib/tcpdump/
H A Dprint-atalk.c543 register struct hnamemem *tp, *tp2; local
586 for (tp2 = &hnametable[i & (HASHNAMESIZE-1)]; tp2->nxt; tp2 = tp2->nxt)
587 if (tp2->addr == i) {
591 tp2->name, athost);
/freebsd-10.0-release/crypto/heimdal/appl/ftp/ftp/
H A Dcmds.c462 char *cp, *tp2, tmpbuf[MaxPathLen]; local
477 tp2 = tmpbuf;
478 while ((*tp2 = *tp) != '\0') {
479 if (isupper((unsigned char)*tp2)) {
480 *tp2 = 'a' + *tp2 - 'A';
483 tp2++;
623 char *tp = argv[1], *tp2, tmpbuf[MaxPathLen]; local
630 tp2 = tmpbuf;
631 while ((*tp2
719 char *cp, *tp, *tp2, tmpbuf[MaxPathLen]; local
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/aes/
H A Daes_x86core.c597 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; local
601 tp2 = ((tp1 & 0x7f7f7f7f) << 1) ^
603 m = tp2 & 0x80808080;
604 tp4 = ((tp2 & 0x7f7f7f7f) << 1) ^
610 tpb = tp9 ^ tp2;
612 tpe = tp8 ^ tp4 ^ tp2;
905 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; local
910 tp2 = ((tp1 & 0x7f7f7f7f) << 1) ^
912 m = tp2 & 0x80808080;
913 tp4 = ((tp2
981 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; local
[all...]
H A Daes_core.c1329 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; local
1333 tp2 = ((tp1 & 0x7f7f7f7f) << 1) ^
1335 m = tp2 & 0x80808080;
1336 tp4 = ((tp2 & 0x7f7f7f7f) << 1) ^
1342 tpb = tp9 ^ tp2;
1344 tpe = tp8 ^ tp4 ^ tp2;
/freebsd-10.0-release/usr.bin/xlint/lint1/
H A Ddecl.c1950 eqtype(type_t *tp1, type_t *tp2, int ignqual, int promot, int *warn) argument
1954 while (tp1 != NULL && tp2 != NULL) {
1972 if (t != tp2->t_tspec)
1975 if (tp1->t_const != tp2->t_const && !ignqual && !tflag)
1978 if (tp1->t_volatile != tp2->t_volatile && !ignqual && !tflag)
1982 return (tp1->t_str == tp2->t_str);
1984 if (t == ARRAY && tp1->t_dim != tp2->t_dim) {
1985 if (tp1->t_dim != 0 && tp2->t_dim != 0)
1991 if (tp1->t_proto && tp2->t_proto) {
1992 if (!eqargs(tp1, tp2, war
2016 eqargs(type_t *tp1, type_t *tp2, int *warn) argument
[all...]
H A Dtree.c224 type_t *tp2; local
226 tp2 = getblk(sizeof (type_t));
227 tp2->t_tspec = t;
228 tp2->t_subt = tp;
229 return (tp2);
238 type_t *tp2; local
240 tp2 = tgetblk(sizeof (type_t));
241 tp2->t_tspec = t;
242 tp2->t_subt = tp;
243 return (tp2);
454 type_t *tp1, *tp2; local
2151 mrgqual(type_t **tpp, type_t *tp1, type_t *tp2) argument
[all...]
/freebsd-10.0-release/contrib/atf/atf-report/
H A Dintegration_test.sh34 cp $(atf_get_srcdir)/fail_helper dir1/tp2
61 tp: tp2
262 tc, #.#, dir1/tp2, main, failed, This always fails
263 tp, #.#, dir1/tp2, failed
292 dir1/tp2 (2/5): 1 test cases
312 dir1/tp2:main, tp4:main
348 <tp id="dir1/tp2">
/freebsd-10.0-release/crypto/openssl/crypto/aes/asm/
H A Daes-586.pl1269 my $tp2 = @s[($i+2)%4]; $tp2 = @s[2] if ($i==1);
1277 &lea ($tp2,&DWP(0,$s[$i],$s[$i]));
1279 &and ($tp2,0xfefefefe);
1281 &xor ($acc,$tp2);
1282 &mov ($tp2,$acc);
1287 &lea ($tp4,&DWP(0,$tp2,$tp2));
1291 &xor ($tp2,$s[$i]); # tp2
[all...]
H A Daes-mips.pl1094 my ($tp1,$tp2,$tp4,$tp8,$tp9,$tpb,$tpd,$tpe)=($a4,$a5,$a6,$a7,$s0,$s1,$s2,$s3);
1169 and $tp2,$tp1,$x7f7f7f7f
1171 addu $tp2,$tp2 # tp2<<1
1174 xor $tp2,$m
1176 and $m,$tp2,$x80808080
1177 and $tp4,$tp2,$x7f7f7f7f
1194 xor $tpb,$tp9,$tp2
1198 xor $tpe,$tp2
[all...]
H A Daes-x86_64.pl1062 xor $tp10,$tp20 # tp2^=tp1
1064 xor $tp18,$tp28 # tp2^=tp1
1080 xor $tp80,$tp20 # tp2^tp1^=tp8
1081 xor $tp88,$tp28 # tp2^tp1^=tp8
1088 xor $tp20,$tp80 # tp8^=tp8^tp2^tp1=tp2^tp1
1089 xor $tp28,$tp88 # tp8^=tp8^tp2^tp1=tp2^tp1
1092 xor $tp40,$tp80 # tp2^tp1^=tp8^tp4^tp1=tp8^tp4^tp2
[all...]
/freebsd-10.0-release/contrib/unbound/validator/
H A Dautotrust.c781 struct trust_anchor *tp = NULL, *tp2; local
814 if(!(tp2=load_trustanchor(anchors, line, nm, origin, &prev,
821 if(tp && tp != tp2) {
830 tp = tp2;
1811 struct trust_anchor key, *tp2; local
1823 tp2 = (struct trust_anchor*)rbtree_search(env->anchors->tree, &key);
1824 if(!tp2) {
1829 log_assert(tp == tp2);
/freebsd-10.0-release/sys/teken/
H A Dteken_subr.h795 teken_pos_t tp2; local
803 tp2.tp_row = tp->tp_row;
804 tp2.tp_col = tp->tp_col + 1;
805 teken_funcs_putchar(t, &tp2, BLANK, &t->t_curattr);
/freebsd-10.0-release/sys/netinet/
H A Dsctp_indata.c3602 struct sctp_tmit_chunk *tp1, *tp2, *a_adv = NULL; local
3609 TAILQ_FOREACH_SAFE(tp1, &asoc->sent_queue, sctp_next, tp2) {
3776 struct sctp_tmit_chunk *tp1, *tp2; local
3885 TAILQ_FOREACH_SAFE(tp1, &asoc->sent_queue, sctp_next, tp2) {
4330 struct sctp_tmit_chunk *tp1, *tp2; local
4710 TAILQ_FOREACH_SAFE(tp1, &asoc->sent_queue, sctp_next, tp2) {
H A Dsctputil.c4693 struct sctp_tmit_chunk *chk = NULL, *tp2; local
4751 TAILQ_FOREACH_SAFE(tp1, &stcb->asoc.send_queue, sctp_next, tp2) {

Completed in 530 milliseconds