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

/freebsd-11-stable/lib/libc/stdlib/
H A Dmerge.c121 u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; local
150 for (tp2 = p2 = list2; p2 != last; p1 = EVAL(l2)) {
208 ICOPY_LIST(f2, tp2, b);
209 ICOPY_ELT(f1, tp2, i);
211 CCOPY_LIST(f2, tp2, b);
212 CCOPY_ELT(f1, tp2, i);
216 ICOPY_LIST(f1, tp2, b);
217 ICOPY_ELT(f2, tp2, i);
219 CCOPY_LIST(f1, tp2, b);
220 CCOPY_ELT(f2, tp2,
[all...]
/freebsd-11-stable/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-11-stable/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
188 settimes(f_time, f_dayBefore, f_dayAfter, Friday, &tp1, &tp2);
189 generatedates(&tp1, &tp2);
H A Dcalendar.h158 void settimes(time_t,int before, int after, int friday, struct tm *tp1, struct tm *tp2);
180 void generatedates(struct tm *tp1, struct tm *tp2);
H A Ddates.c171 generatedates(struct tm *tp1, struct tm *tp2) argument
180 y2 = tp2->tm_year;
181 m2 = tp2->tm_mon + 1;
182 d2 = tp2->tm_mday;
/freebsd-11-stable/sys/dev/nmdm/
H A Dnmdm.c321 struct tty *tp2; local
324 tp2 = np->np_other->np_tty;
326 if (!((t->c_cflag | tp2->t_termios.c_cflag) & CDSR_OFLOW)) {
339 bpc = imax(bits_per_char(t), bits_per_char(&tp2->t_termios));
343 speed = imin(tp2->t_termios.c_ospeed, t->c_ispeed);
368 t = &tp2->t_termios;
369 tp2 = tp;
/freebsd-11-stable/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-11-stable/contrib/tcpdump/
H A Dprint-atalk.c570 register struct hnamemem *tp, *tp2; local
616 for (tp2 = &hnametable[i & (HASHNAMESIZE-1)]; tp2->nxt; tp2 = tp2->nxt)
617 if (tp2->addr == i) {
621 tp2->name, athost);
/freebsd-11-stable/crypto/openssl/crypto/aes/
H A Daes_x86core.c601 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; local
605 tp2 = ((tp1 & 0x7f7f7f7f) << 1) ^
607 m = tp2 & 0x80808080;
608 tp4 = ((tp2 & 0x7f7f7f7f) << 1) ^
614 tpb = tp9 ^ tp2;
616 tpe = tp8 ^ tp4 ^ tp2;
913 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; local
918 tp2 = ((tp1 & 0x7f7f7f7f) << 1) ^
920 m = tp2 & 0x80808080;
921 tp4 = ((tp2
990 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; local
[all...]
H A Daes_core.c1334 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; local
1338 tp2 = ((tp1 & 0x7f7f7f7f) << 1) ^
1340 m = tp2 & 0x80808080;
1341 tp4 = ((tp2 & 0x7f7f7f7f) << 1) ^
1347 tpb = tp9 ^ tp2;
1349 tpe = tp8 ^ tp4 ^ tp2;
/freebsd-11-stable/usr.bin/xlint/lint1/
H A Ddecl.c1952 eqtype(type_t *tp1, type_t *tp2, int ignqual, int promot, int *warn) argument
1956 while (tp1 != NULL && tp2 != NULL) {
1974 if (t != tp2->t_tspec)
1977 if (tp1->t_const != tp2->t_const && !ignqual && !tflag)
1980 if (tp1->t_volatile != tp2->t_volatile && !ignqual && !tflag)
1984 return (tp1->t_str == tp2->t_str);
1986 if (t == ARRAY && tp1->t_dim != tp2->t_dim) {
1987 if (tp1->t_dim != 0 && tp2->t_dim != 0)
1993 if (tp1->t_proto && tp2->t_proto) {
1994 if (!eqargs(tp1, tp2, war
2018 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);
474 type_t *tp1, *tp2; local
2204 mrgqual(type_t **tpp, type_t *tp1, type_t *tp2) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/aes/asm/
H A Daes-586.pl1274 my $tp2 = @s[($i+2)%4]; $tp2 = @s[2] if ($i==1);
1282 &lea ($tp2,&DWP(0,$s[$i],$s[$i]));
1284 &and ($tp2,0xfefefefe);
1286 &xor ($tp2,$acc);
1289 &and ($tmp,$tp2);
1292 &lea ($tp4,&DWP(0,$tp2,$tp2));
1296 &xor ($tp2,$s[$i]); # tp2
[all...]
H A Daes-mips.pl1586 my ($tp1,$tp2,$tp4,$tp8,$tp9,$tpb,$tpd,$tpe)=($a4,$a5,$a6,$a7,$s0,$s1,$s2,$s3);
1661 and $tp2,$tp1,$x7f7f7f7f
1663 addu $tp2,$tp2 # tp2<<1
1666 xor $tp2,$m
1668 and $m,$tp2,$x80808080
1669 and $tp4,$tp2,$x7f7f7f7f
1686 xor $tpb,$tp9,$tp2
1691 xor $tpe,$tp2
[all...]
H A Daes-x86_64.pl1060 xor $tp10,$tp20 # tp2^=tp1
1062 xor $tp18,$tp28 # tp2^=tp1
1078 xor $tp80,$tp20 # tp2^tp1^=tp8
1079 xor $tp88,$tp28 # tp2^tp1^=tp8
1086 xor $tp20,$tp80 # tp8^=tp8^tp2^tp1=tp2^tp1
1088 xor $tp28,$tp88 # tp8^=tp8^tp2^tp1=tp2^tp1
1090 xor $tp40,$tp80 # tp2^tp1^=tp8^tp4^tp1=tp8^tp4^tp2
[all...]
/freebsd-11-stable/contrib/unbound/validator/
H A Dautotrust.c994 struct trust_anchor *tp = NULL, *tp2; local
1028 if(!(tp2=load_trustanchor(anchors, line, nm, origin,
1035 if(tp && tp != tp2) {
1044 tp = tp2;
2049 struct trust_anchor key, *tp2; local
2061 tp2 = (struct trust_anchor*)rbtree_search(env->anchors->tree, &key);
2062 if(!tp2) {
2067 log_assert(tp == tp2);
/freebsd-11-stable/sys/teken/
H A Dteken_subr.h797 teken_pos_t tp2; local
801 tp2.tp_row = tp->tp_row;
802 tp2.tp_col = tp->tp_col + 1;
805 teken_funcs_putchar(t, &tp2, c, &attr);
/freebsd-11-stable/sys/netinet/
H A Dsctp_indata.c3794 struct sctp_tmit_chunk *tp1, *tp2, *a_adv = NULL; local
3801 TAILQ_FOREACH_SAFE(tp1, &asoc->sent_queue, sctp_next, tp2) {
3972 struct sctp_tmit_chunk *tp1, *tp2; local
4062 TAILQ_FOREACH_SAFE(tp1, &asoc->sent_queue, sctp_next, tp2) {
4474 struct sctp_tmit_chunk *tp1, *tp2; local
4839 TAILQ_FOREACH_SAFE(tp1, &asoc->sent_queue, sctp_next, tp2) {
H A Dsctputil.c4792 struct sctp_tmit_chunk *chk = NULL, *tp2; local
4866 TAILQ_FOREACH_SAFE(tp1, &stcb->asoc.send_queue, sctp_next, tp2) {
/freebsd-11-stable/secure/lib/libcrypto/arm/
H A Daes-armv4.S782 eor r1,r4,r1,lsl#1 @ tp2
800 eor r4,r4,r5,ror#24 @ ^= ROTATE(tpb=tp9^tp2,8)

Completed in 386 milliseconds