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

/freebsd-current/lib/libc/stdlib/
H A Dmerge.c115 u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; local
140 for (tp2 = p2 = list2; p2 != last; p1 = EVAL(l2)) {
198 ICOPY_LIST(f2, tp2, b);
199 ICOPY_ELT(f1, tp2, i);
201 CCOPY_LIST(f2, tp2, b);
202 CCOPY_ELT(f1, tp2, i);
206 ICOPY_LIST(f1, tp2, b);
207 ICOPY_ELT(f2, tp2, i);
209 CCOPY_LIST(f1, tp2, b);
210 CCOPY_ELT(f2, tp2,
[all...]
/freebsd-current/contrib/libdiff/compat/
H A Dmerge.c98 u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; local
127 for (tp2 = p2 = list2; p2 != last; p1 = EVAL(l2)) {
185 ICOPY_LIST(f2, tp2, b);
186 ICOPY_ELT(f1, tp2, i);
188 CCOPY_LIST(f2, tp2, b);
189 CCOPY_ELT(f1, tp2, i);
193 ICOPY_LIST(f1, tp2, b);
194 ICOPY_ELT(f2, tp2, i);
196 CCOPY_LIST(f1, tp2, b);
197 CCOPY_ELT(f2, tp2,
[all...]
/freebsd-current/usr.bin/calendar/
H A Dday.c49 settimes(time_t now, int before, int after, int friday, struct tm *tp1, struct tm *tp2) argument
63 localtime_r(&time2, tp2);
64 year2 = 1900 + tp2->tm_year;
H A Dcalendar.c71 struct tm tp1, tp2; local
181 settimes(f_time, f_dayBefore, f_dayAfter, Friday, &tp1, &tp2);
182 generatedates(&tp1, &tp2);
H A Dcalendar.h160 void settimes(time_t,int before, int after, int friday, struct tm *tp1, struct tm *tp2);
182 void generatedates(struct tm *tp1, struct tm *tp2);
H A Ddates.c170 generatedates(struct tm *tp1, struct tm *tp2) argument
179 y2 = tp2->tm_year;
180 m2 = tp2->tm_mon + 1;
181 d2 = tp2->tm_mday;
/freebsd-current/sys/dev/nmdm/
H A Dnmdm.c322 struct tty *tp2; local
325 tp2 = np->np_other->np_tty;
327 if (!((t->c_cflag | tp2->t_termios.c_cflag) & CDSR_OFLOW)) {
340 bpc = imax(bits_per_char(t), bits_per_char(&tp2->t_termios));
344 speed = imin(tp2->t_termios.c_ospeed, t->c_ispeed);
369 t = &tp2->t_termios;
370 tp2 = tp;
/freebsd-current/contrib/kyua/model/
H A Dtest_program_test.cpp318 const TestProgram tp2 = tp1; local
319 ATF_REQUIRE( tp1 == tp2);
320 ATF_REQUIRE(!(tp1 != tp2));
489 const TestProgram tp2(
500 ATF_REQUIRE( tp1 < tp2);
501 ATF_REQUIRE(!(tp2 < tp1));
510 programs.insert(tp2);
/freebsd-current/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-current/contrib/tcpdump/
H A Dprint-atalk.c591 struct hnamemem *tp, *tp2; local
655 for (tp2 = &hnametable[i & (HASHNAMESIZE-1)]; tp2->nxt; tp2 = tp2->nxt)
656 if (tp2->addr == i) {
660 tp2->name, athost);
/freebsd-current/crypto/openssl/crypto/aes/
H A Daes_x86core.c603 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; local
607 tp2 = ((tp1 & 0x7f7f7f7f) << 1) ^
609 m = tp2 & 0x80808080;
610 tp4 = ((tp2 & 0x7f7f7f7f) << 1) ^
616 tpb = tp9 ^ tp2;
618 tpe = tp8 ^ tp4 ^ tp2;
915 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; local
920 tp2 = ((tp1 & 0x7f7f7f7f) << 1) ^
922 m = tp2 & 0x80808080;
923 tp4 = ((tp2
992 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; local
[all...]
H A Daes_core.c1984 u32 tp1, tp2, tp4, tp8, tp9, tpb, tpd, tpe, m; local
1988 tp2 = ((tp1 & 0x7f7f7f7f) << 1) ^
1990 m = tp2 & 0x80808080;
1991 tp4 = ((tp2 & 0x7f7f7f7f) << 1) ^
1997 tpb = tp9 ^ tp2;
1999 tpe = tp8 ^ tp4 ^ tp2;
/freebsd-current/crypto/openssl/crypto/aes/asm/
H A Daes-586.pl1283 my $tp2 = @s[($i+2)%4]; $tp2 = @s[2] if ($i==1);
1291 &lea ($tp2,&DWP(0,$s[$i],$s[$i]));
1293 &and ($tp2,0xfefefefe);
1295 &xor ($tp2,$acc);
1298 &and ($tmp,$tp2);
1301 &lea ($tp4,&DWP(0,$tp2,$tp2));
1305 &xor ($tp2,$s[$i]); # tp2
[all...]
H A Daes-mips.pl1670 my ($tp1,$tp2,$tp4,$tp8,$tp9,$tpb,$tpd,$tpe)=($a4,$a5,$a6,$a7,$s0,$s1,$s2,$s3);
1745 and $tp2,$tp1,$x7f7f7f7f
1747 addu $tp2,$tp2 # tp2<<1
1750 xor $tp2,$m
1752 and $m,$tp2,$x80808080
1753 and $tp4,$tp2,$x7f7f7f7f
1770 xor $tpb,$tp9,$tp2
1775 xor $tpe,$tp2
[all...]
H A Daes-x86_64.pl1094 xor $tp10,$tp20 # tp2^=tp1
1096 xor $tp18,$tp28 # tp2^=tp1
1112 xor $tp80,$tp20 # tp2^tp1^=tp8
1113 xor $tp88,$tp28 # tp2^tp1^=tp8
1120 xor $tp20,$tp80 # tp8^=tp8^tp2^tp1=tp2^tp1
1122 xor $tp28,$tp88 # tp8^=tp8^tp2^tp1=tp2^tp1
1124 xor $tp40,$tp80 # tp2^tp1^=tp8^tp4^tp1=tp8^tp4^tp2
[all...]
/freebsd-current/contrib/unbound/validator/
H A Dautotrust.c998 struct trust_anchor *tp = NULL, *tp2; local
1032 if(!(tp2=load_trustanchor(anchors, line, nm, origin,
1039 if(tp && tp != tp2) {
1048 tp = tp2;
2061 struct trust_anchor key, *tp2; local
2073 tp2 = (struct trust_anchor*)rbtree_search(env->anchors->tree, &key);
2074 if(!tp2) {
2079 log_assert(tp == tp2);
/freebsd-current/sys/teken/
H A Dteken_subr.h819 teken_pos_t tp2; local
823 tp2.tp_row = tp->tp_row;
824 tp2.tp_col = tp->tp_col + 1;
827 teken_funcs_putchar(t, &tp2, c, &attr);
/freebsd-current/sys/netinet/
H A Dsctp_indata.c3752 struct sctp_tmit_chunk *tp1, *tp2, *a_adv = NULL; local
3759 TAILQ_FOREACH_SAFE(tp1, &asoc->sent_queue, sctp_next, tp2) {
3929 struct sctp_tmit_chunk *tp1, *tp2; local
4020 TAILQ_FOREACH_SAFE(tp1, &asoc->sent_queue, sctp_next, tp2) {
4408 struct sctp_tmit_chunk *tp1, *tp2; local
4770 TAILQ_FOREACH_SAFE(tp1, &asoc->sent_queue, sctp_next, tp2) {
H A Dsctputil.c5070 struct sctp_tmit_chunk *chk = NULL, *tp2; local
5146 TAILQ_FOREACH_SAFE(tp1, &stcb->asoc.send_queue, sctp_next, tp2) {

Completed in 386 milliseconds