Searched refs:s2 (Results 126 - 150 of 471) sorted by relevance

1234567891011>>

/freebsd-current/contrib/sendmail/src/
H A Dsasl.c153 ** s1, s2 -- lists of items (separated by single blanks).
161 intersect(s1, s2, rpool)
162 char *s1, *s2;
168 if (s1 == NULL || s2 == NULL) /* NULL string(s) -> NULL result */
171 l2 = strlen(s2);
191 /* does the current word appear in s2 ? */
192 if (iteminlist(h1, s2, " ") != NULL)
/freebsd-current/contrib/netbsd-tests/include/sys/
H A Dt_socket.c89 int s1, s2, sgot; local
118 s2 = rump_sys_socket(AF_LOCAL, SOCK_STREAM, 0);
119 if (s2 == -1)
121 if (rump_sys_connect(s2, (struct sockaddr *)&sun, SUN_LEN(&sun)) == -1)
150 if (rump_sys_sendmsg(s2, &msg, 0) == -1)
/freebsd-current/contrib/tcpdump/
H A Dprint-ascii.c110 u_int s1, s2; local
127 s2 = GET_U_1(cp);
130 " %02x%02x", s1, s2);
133 *(asp++) = (char)(ND_ASCII_ISGRAPH(s2) ? s2 : '.');
/freebsd-current/contrib/googletest/googlemock/test/
H A Dgmock_stress_test.cc52 MOCK_METHOD2(Baz, char(const char* s1, const std::string& s2)); // NOLINT
151 Sequence s1, s2; local
156 EXPECT_CALL(foo, Bar(1)).InSequence(s1, s2);
163 EXPECT_CALL(foo, Bar(3)).Times(2 * kRepeat).InSequence(s2);
167 EXPECT_CALL(foo, Bar(2)).InSequence(s1, s2);
/freebsd-current/sys/sys/
H A Dbitset.h132 #define __BIT_OR2(_s, d, s1, s2) do { \
135 (d)->__bits[__i] = (s1)->__bits[__i] | (s2)->__bits[__i];\
144 #define __BIT_ORNOT2(_s, d, s1, s2) do { \
147 (d)->__bits[__i] = (s1)->__bits[__i] | ~(s2)->__bits[__i];\
156 #define __BIT_AND2(_s, d, s1, s2) do { \
159 (d)->__bits[__i] = (s1)->__bits[__i] & (s2)->__bits[__i];\
168 #define __BIT_ANDNOT2(_s, d, s1, s2) do { \
171 (d)->__bits[__i] = (s1)->__bits[__i] & ~(s2)->__bits[__i];\
180 #define __BIT_XOR2(_s, d, s1, s2) do { \
183 (d)->__bits[__i] = (s1)->__bits[__i] ^ (s2)
[all...]
/freebsd-current/usr.bin/sort/
H A Dbwstring.c173 wide_str_coll(const wchar_t *s1, const wchar_t *s2) argument
178 ret = wcscoll(s1, s2);
181 ret = wcscmp(s1, s2);
185 wchar_t c2 = s2[i];
503 const char *s1, *s2; local
506 s2 = bws2->cdata.str + offset;
508 res = memcmp(s1, s2, cmp_len);
511 const wchar_t *s1, *s2; local
514 s2 = bws2->wdata.str + offset;
516 res = memcmp(s1, s2, SIZEOF_WCHAR_STRIN
596 const char *s1, *s2; local
677 const wchar_t *s1, *s2; local
[all...]
/freebsd-current/crypto/openssl/crypto/aes/
H A Daes_x86core.c663 u32 s0, s1, s2, s3, t[4]; local
675 s2 = GETU32(in + 8) ^ rk[2];
683 (u32)Te4[(s2 >> 16) & 0xff] << 16 ^
686 (u32)Te4[(s2 >> 8) & 0xff] << 8 ^
689 t[2] = (u32)Te4[(s2 ) & 0xff] ^
696 (u32)Te4[(s2 >> 24) ] << 24;
721 Te2[(s2 >> 16) & 0xff] ^
725 Te1[(s2 >> 8) & 0xff] ^
729 t[2] = Te0[(s2 ) & 0xff] ^
737 Te3[(s2 >> 2
877 u32 s0, s1, s2, s3, t[4]; local
[all...]
/freebsd-current/sys/dev/cxgbe/cudbg/
H A Dfastlz_api.c47 unsigned long s2 = (checksum >> 16) & 0xffff; local
54 s1 += *ptr++; s2 += s1;
55 s1 += *ptr++; s2 += s1;
56 s1 += *ptr++; s2 += s1;
57 s1 += *ptr++; s2 += s1;
58 s1 += *ptr++; s2 += s1;
59 s1 += *ptr++; s2 += s1;
60 s1 += *ptr++; s2 += s1;
61 s1 += *ptr++; s2 += s1;
66 s1 += *ptr++; s2
[all...]
/freebsd-current/contrib/flex/src/
H A Dfilter.c372 char *s1, *s2; local
376 s2 = filename;
378 while ((s2 - filename) < (MAXLINE - 1) && *s1) {
381 *s2++ = '\\';
384 *s2++ = '\\';
386 *s2++ = *s1++;
389 *s2 = '\0';
/freebsd-current/usr.bin/look/
H A Dlook.c307 * string2 (s1 ??? s2).
310 * o Matches up to len(s2) are GREATER.
315 * The string "s1" is null terminated. The string s2 is '\n' terminated (or
319 compare(wchar_t *s1, unsigned char *s2, unsigned char *back) argument
324 for (; *s1 && s2 < back && *s2 != '\n'; ++s1, s2 += len2) {
326 len2 = mbrtowc(&ch2, s2, back - s2, NULL);
328 ch2 = *s2;
[all...]
/freebsd-current/contrib/sendmail/libsm/
H A Dt-qic.c23 show_diff(s1, s2)
25 const char *s2;
29 for (i = 0; s1[i] != '\0' && s2[i] != '\0'; i++)
31 if (s1[i] != s2[i])
33 fprintf(stderr, "i=%d, s1[]=%u, s2[]=%u\n",
35 (unsigned char) s2[i]);
39 if (s1[i] != s2[i])
41 fprintf(stderr, "i=%d, s1[]=%u, s2[]=%u\n",
42 i, (unsigned char) s1[i], (unsigned char) s2[i]);
/freebsd-current/crypto/openssl/crypto/aes/asm/
H A Daes-sparcv9.pl73 $s2="%i2";
216 xor $t2,$s2,$s2
224 srl $s2,5,$acc2 !
233 srl $s2,13,$acc5
243 srl $s2,21,$acc8
265 sll $s2,3,$acc15
286 ld [$key+8],$s2
390 xor $acc8,$s2,$s2
[all...]
H A Daes-parisc.pl64 ($s0,$s1,$s2,$s3) = ("%r1","%r2","%r3","%r4");
114 ldw 8($inp),$s2
123 vshd $s1,$s2,$s1
124 vshd $s2,$s3,$s2
146 _srm $s2,24,$acc0
148 _srm $s2,16,$acc1
150 _srm $s2,8,$acc2
158 stb $s2,11($out)
168 stw $s2,
[all...]
/freebsd-current/usr.bin/netstat/
H A Dmroute.c81 char s1[256], s2[256], s3[256]; local
108 snprintf(s2, sizeof(s2), "%ju",
113 strcpy(s2, "?");
117 (u_long)bw_meter->bm_start_time.tv_usec, s1, s2);
132 snprintf(s2, sizeof(s2), "%ju",
137 strcpy(s2, "?");
142 (u_long)bw_meter->bm_threshold.b_time.tv_usec, s1, s2);
/freebsd-current/contrib/libxo/libxo/
H A Dxo_humanize.h67 int b, i, r, maxscale, s1, s2, sign; local
156 s2 = b % 10;
159 s1, localeconv()->decimal_point, s2,
/freebsd-current/contrib/ntp/scripts/monitoring/
H A Dntploopstat338 ($b1,$b2,$b3,$b4,$s1,$s2,
352 ($s2 != 24 && $s2 != 28) #
357 warn(" ".sprintf("b1=%x b2=%x b3=%x b4=%x s1=%d s2=%d\n",
358 $b1,$b2,$b3,$b4,$s1,$s2));
362 elsif ($s2 == 28)
365 ($b1,$b2,$b3,$b4,$s1,$s2,
/freebsd-current/lib/libutil/
H A Dhumanize_number.c52 int i, r, remainder, s1, s2, sign; local
169 s2 = ((remainder * 10 + divisor / 2) / divisor) % 10;
171 sign * s1, localeconv()->decimal_point, s2,
/freebsd-current/crypto/openssl/fuzz/
H A Dbndiv.c50 /* s1 and s2 will be the signs for b1 and b2. */
51 int s1 = 0, s2 = 0; local
68 s2 = buf[0] & 0x80;
75 BN_set_negative(b2, s2);
/freebsd-current/contrib/arm-optimized-routines/pl/math/
H A Dv_exp_tail_inline.h56 /* 2^(n/N) may overflow, break it up into s1*s2. */
59 float64x2_t s2 = vreinterpretq_f64_u64 ( local
62 float64x2_t r0 = vmulq_f64 (vfmaq_f64 (s2, y, s2), s1);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libc.h43 int internal_memcmp(const void* s1, const void* s2, uptr n);
56 int internal_strcmp(const char *s1, const char *s2);
62 int internal_strncmp(const char *s1, const char *s2, uptr n);
/freebsd-current/sys/contrib/openzfs/module/unicode/
H A Du8_textprep.c342 uchar_t *s2; local
425 s2 = p[i];
427 if (*s1 != *s2 || *s2 == '\0')
430 s2++;
433 if (s1 >= ib && *s2 == '\0') {
558 * The do_case_compare() function compares the two input strings, s1 and s2,
567 do_case_compare(size_t uv, uchar_t *s1, uchar_t *s2, size_t n1, argument
623 /* Do the same for the string s2. */
624 sz2 = u8_number_of_bytes[*s2];
1735 do_norm_compare(size_t uv, uchar_t *s1, uchar_t *s2, size_t n1, size_t n2, int flag, int *errnum) argument
1851 u8_strcmp(const char *s1, const char *s2, size_t n, int flag, size_t uv, int *errnum) argument
[all...]
/freebsd-current/contrib/atf/atf-c/detail/
H A Dfs_test.c828 atf_fs_stat_t s1, s2; local
850 RE(atf_fs_stat_init(&s2, &p2));
851 ATF_REQUIRE_EQ(atf_fs_stat_get_type(&s2), atf_fs_stat_dir_type);
852 ATF_REQUIRE( atf_fs_stat_is_owner_readable(&s2));
853 ATF_REQUIRE( atf_fs_stat_is_owner_writable(&s2));
854 ATF_REQUIRE( atf_fs_stat_is_owner_executable(&s2));
855 ATF_REQUIRE(!atf_fs_stat_is_group_readable(&s2));
856 ATF_REQUIRE(!atf_fs_stat_is_group_writable(&s2));
857 ATF_REQUIRE(!atf_fs_stat_is_group_executable(&s2));
858 ATF_REQUIRE(!atf_fs_stat_is_other_readable(&s2));
951 atf_fs_stat_t s1, s2; local
[all...]
/freebsd-current/contrib/gdtoa/
H A Ddtoa.c119 j, j1, k, k0, k_check, leftright, m2, m5, s2, s5, local
269 s2 = j;
273 s2 = 0;
278 s2 += k;
508 s2 += i;
511 if (m2 > 0 && s2 > 0) {
512 i = m2 < s2 ? m2 : s2;
515 s2 -= i;
550 s2
[all...]
/freebsd-current/contrib/bzip2/
H A Dblocksort.c356 UInt16 s1, s2; local
414 s1 = quadrant[i1]; s2 = quadrant[i2];
415 if (s1 != s2) return (s1 > s2);
420 s1 = quadrant[i1]; s2 = quadrant[i2];
421 if (s1 != s2) return (s1 > s2);
426 s1 = quadrant[i1]; s2 = quadrant[i2];
427 if (s1 != s2) return (s1 > s2);
[all...]
/freebsd-current/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dutil.c49 /* returns 1 if s1 == s2, 0 otherwise */
51 streq(const char *s1, const char *s2) argument
54 if (s2 != NULL)
56 } else if (s2 == NULL)
58 else if (strcmp(s1, s2) != 0)

Completed in 171 milliseconds

1234567891011>>