/titanic_50/usr/src/cmd/sendmail/libsm/ |
H A D | t-strl.c | 31 char *s1, *s2, *s3; variable 39 s3 = sm_malloc_x(MAXL); 41 SM_TEST(sm_strlcpy(s3, s1, 4) == 3); 42 SM_TEST(strcmp(s1, s3) == 0); 44 SM_TEST(sm_strlcat(s3, s2, 8) == 6); 46 SM_TEST(strcmp(s3, r) == 0); 48 SM_TEST(sm_strlcpy(s3, s1, 2) == 3); 50 SM_TEST(strcmp(s3, r) == 0); 52 SM_TEST(sm_strlcat(s3, s2, 3) == 4); 54 SM_TEST(strcmp(s3, r) == 0); [all …]
|
/titanic_50/usr/src/common/net/wanboot/crypt/ |
H A D | aes.c | 759 uint32_t s0, s1, s2, s3, t0, t1, t2, t3; in aes_encrypt() local 778 s3 = GETU32(block + 12) ^ rk[3]; in aes_encrypt() 791 s3 = (((uint32_t)block[12] << 24) | in aes_encrypt() 806 ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff]) in aes_encrypt() 808 ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff]) in aes_encrypt() 809 #define tsr2 (Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] \ in aes_encrypt() 811 #define tsr3 (Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] \ in aes_encrypt() 831 s3 = ssr3 ^ rk[11]; in aes_encrypt() 841 s3 = ssr3 ^ rk[19]; in aes_encrypt() 851 s3 = ssr3 ^ rk[27]; in aes_encrypt() [all …]
|
/titanic_50/usr/src/cmd/sh/ |
H A D | error.c | 51 failed_body(unsigned char *s1, const char *s2, unsigned char *s3, int gflag) in failed_body() argument 60 if (s3) in failed_body() 61 prs(s3); in failed_body() 66 failed_real(unsigned char *s1, const char *s2, unsigned char *s3) in failed_real() argument 68 failed_body(s1, s2, s3, 0); in failed_real()
|
H A D | defs.h | 224 #define bfailed(s1, s2, s3) failed_real(s1, s2, s3) argument
|
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/rdist/ |
H A D | expand.c | 640 register char *s1, *s2, *s3; local 653 s3 = NULL; 656 s3 = file; 658 s3 = file; 659 while (*s3 && *s3 != '/') 660 s3++; 661 if (*s3 == '/') 662 *s3 = '\0'; 664 s3 = NULL; 668 if (s3 != NULL) [all …]
|
/titanic_50/usr/src/common/crypto/aes/ |
H A D | aes_impl.c | 1321 uint32_t s0, s1, s2, s3, t0, t1, t2, t3; in rijndael_encrypt() local 1332 s3 = pt[3] ^ rk[3]; in rijndael_encrypt() 1344 Te3[s3 & 0xff] ^ in rijndael_encrypt() 1349 Te2[(s3 >> 8) & 0xff] ^ in rijndael_encrypt() 1354 Te1[(s3 >> 16) & 0xff] ^ in rijndael_encrypt() 1359 t3 = Te0[s3 >> 24] ^ in rijndael_encrypt() 1389 s3 = Te0[t3 >> 24] ^ in rijndael_encrypt() 1422 s3 = (Te4[(t3 >> 24)] & 0xff000000) ^ in rijndael_encrypt() 1427 ct[3] = s3; in rijndael_encrypt() 1449 uint32_t s0, s1, s2, s3, t0, t1, t2, t3; in rijndael_decrypt() local [all …]
|
/titanic_50/usr/src/lib/libmvec/common/ |
H A D | __vlog.c | 668 double s0, s1, s2, s3; in __vlog() local 749 s3 = h3 + l3; in __vlog() 757 b3 = (s3 * s3) * (mhalf + s3 * (P3 + s3 * (P4 + in __vlog() 758 s3 * (P5 + s3 * P6)))); in __vlog()
|
/titanic_50/usr/src/lib/libsum/common/ |
H A D | sum-att.c | 59 register uint32_t s0, s1, s2, s3, s4, s5, s6, s7; in att_block() local 62 s0=s1=s2=s3=s4=s5=s6=s7=0U; in att_block() 81 s3+=b[3]; in att_block() 92 c+=s0+s1+s2+s3+s4+s5+s6+s7; in att_block()
|
/titanic_50/usr/src/lib/libbc/libc/net/ |
H A D | rexec.c | 52 int s, timo = 1, s3; in rexec() local 109 s3 = accept(s2, &from, &len); in rexec() 111 if (s3 < 0) { in rexec() 117 *fd2p = s3; in rexec()
|
H A D | rcmd.c | 105 int s2 = rresvport(&lport), s3; in rcmd() local 117 s3 = accept(s2, &from, &len); in rcmd() 119 if (s3 < 0) { in rcmd() 124 *fd2p = s3; in rcmd()
|
/titanic_50/usr/src/lib/libsocket/inet/ |
H A D | rexec.c | 72 int s, timo = 1, s3; in rexec_af() local 153 s3 = accept(s2, (struct sockaddr *)&from, &len); in rexec_af() 155 if (s3 < 0) { in rexec_af() 161 *fd2p = s3; in rexec_af()
|
H A D | rcmd.c | 275 int s2 = rresvport_af(&lport, res->ai_family), s3; in rcmd_af() local 309 s3 = accept(s2, (struct sockaddr *)&faddr, in rcmd_af() 313 if (s3 < 0) { in rcmd_af() 331 *fd2p = s3; in rcmd_af()
|
/titanic_50/usr/src/lib/libxcurses/src/libc/stdio/ |
H A D | vfscanf.c | 694 register char *sp, *s1, *s2, *s3; in lstrtod() local 725 s3 = sp; in lstrtod() 740 if (s1 == s2 && s2 == s3) { in lstrtod() 759 for (sp=s2; sp < s3; sp++) { in lstrtod() 767 if ((slen = strlen(s3)) > 0) { in lstrtod() 768 sp = s3 + slen - 1; in lstrtod() 769 for ( ; sp >= s3; sp--) { in lstrtod()
|
/titanic_50/usr/src/cmd/troff/troff.d/ |
H A D | makedev.c | 223 char buf[100], ch[10], s1[10], s2[10], s3[10], cmd[30]; local 257 sscanf(buf, "%s %s %s %s", ch, s1, s2, s3); 263 if (s3[0] == '0') 264 sscanf(s3, "%o", &i); 266 sscanf(s3, "%d", &i);
|
/titanic_50/usr/src/cmd/lp/filter/postscript/font/ |
H A D | makedev.c | 229 char buf[100], ch[10], s1[10], s2[10], s3[10], cmd[30]; in dofont() local 267 sscanf(buf, "%s %s %s %s", ch, s1, s2, s3); in dofont() 273 if (s3[0] == '0') in dofont() 274 sscanf(s3, "%o", &i); in dofont() 276 sscanf(s3, "%d", &i); in dofont()
|
/titanic_50/usr/src/cmd/bnu/ |
H A D | dial.c | 140 assert(s1,s2,i1,s3,i2) in assert() argument 141 char *s1, *s2, *s3; in assert()
|
H A D | uuglist.c | 178 assert (s1, s2, i1, s3, i2) in assert() argument 179 char *s1, *s2, *s3; in assert()
|
/titanic_50/usr/src/cmd/fm/modules/sun4v/cpumem-diagnosis/ |
H A D | cmd_memerr_arch.c | 633 uint16_t s0, s1, s2, s3; in cmd_synd2upos() local 641 s3 = (syndrome >> 12) & 0xF; in cmd_synd2upos() 643 if (s3 == 0) { in cmd_synd2upos() 658 if (s3 != galois_div(galois_mul[s1][s1], s0)) in cmd_synd2upos() 664 if (s3 != galois_div(galois_mul[s2][s2], s0)) in cmd_synd2upos() 668 if (s3 == s2 && s2 == s1) in cmd_synd2upos()
|
/titanic_50/usr/src/lib/libast/common/uwin/ |
H A D | rcmd.c | 234 int s2 = rresvport(&lport), s3; in rcmd() local 252 s3 = accept(s2, (struct sockaddr *)&from, &len); in rcmd() 254 if (s3 < 0) { in rcmd() 265 *fd2p = s3; in rcmd()
|
/titanic_50/usr/src/lib/libdladm/common/ |
H A D | libdlstat.c | 227 dladm_stats_total(pktsum_t *s1, pktsum_t *s2, pktsum_t *s3) in dladm_stats_total() argument 229 s1->rbytes = s2->rbytes + s3->rbytes; in dladm_stats_total() 230 s1->ipackets = s2->ipackets + s3->ipackets; in dladm_stats_total() 231 s1->ierrors = s2->ierrors + s3->ierrors; in dladm_stats_total() 232 s1->obytes = s2->obytes + s3->obytes; in dladm_stats_total() 233 s1->opackets = s2->opackets + s3->opackets; in dladm_stats_total() 234 s1->oerrors = s2->oerrors + s3->oerrors; in dladm_stats_total() 238 #define DIFF_STAT(s2, s3) ((s2) > (s3) ? ((s2) - (s3)) : 0) argument 243 dladm_stats_diff(pktsum_t *s1, pktsum_t *s2, pktsum_t *s3) in dladm_stats_diff() argument 245 s1->rbytes = DIFF_STAT(s2->rbytes, s3->rbytes); in dladm_stats_diff() [all …]
|
/titanic_50/usr/src/common/crypto/edonr/ |
H A D | edonr.c | 129 s3 = rotl32(x26 + x7, 13); \ 146 s3 = rotl64(x26 + x7, 22); \ 203 s23 = s2 ^ s3; \ 208 r5 = (s3 ^ s56) + (t34 ^ t6); \ 223 s23 = s2 ^ s3; \ 228 r5 = (s3 ^ s56) + (t34 ^ t6); \ 243 uint32_t s0, s1, s2, s3, s4, s5, s6, s7, t0, t1, t2, t3, t4, in Q256() local 351 uint64_t s0, s1, s2, s3, s4, s5, s6, s7, t0, t1, t2, t3, t4, in Q512() local
|
/titanic_50/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | search.c | 669 char *s, *s2, *s3, filterop; in put_simple_filter() local 719 s2 = s3 = NULL; in put_simple_filter() 731 if ( (s3 = strrchr( str, ':' )) != NULL ) { in put_simple_filter() 732 if ( strcasecmp( s3, ":dn" ) == 0 ) { in put_simple_filter() 737 *s3 = '\0'; in put_simple_filter()
|
/titanic_50/usr/src/cmd/ttymon/ |
H A D | tmlock.c | 44 assert(char *s1, char *s2, int i1, char *s3, int i2) in assert() argument
|
/titanic_50/usr/src/cmd/mv/ |
H A D | mv.c | 98 static struct stat s1, s2, s3, s4; variable 1775 dp->d_name, dp->d_name, &s3, &s4) != 0) { 1783 mode = FMODE(s3); 1785 if (fchown(targattrfd, UID(s3), GID(s3)) != 0) { 1801 times[0] = s3.st_atim; 1802 times[1] = s3.st_mtim; 2153 if (fstat(srcattrfd, &s3) < 0) { 2168 O_RDWR|O_CREAT|O_TRUNC, s3.st_mode & MODEBITS)) == -1) {
|
/titanic_50/usr/src/cmd/cmd-inet/common/ |
H A D | kcmd.c | 208 int s3; in kcmd() local 246 s3 = accept(s2, (struct sockaddr *)&from, &len); in kcmd() 248 if (s3 < 0) { in kcmd() 253 *fd2p = s3; in kcmd()
|