bin/sh/expand.c
1196
const char *s1 = *(const char * const *)p1;
bin/sh/expand.c
1199
return (strcoll(s1, s2));
bin/sh/expand.c
142
wchar_t s1[2], s2[2];
bin/sh/expand.c
144
s1[0] = c1;
bin/sh/expand.c
145
s1[1] = L'\0';
bin/sh/expand.c
148
return (wcscoll(s1, s2));
bin/sh/mystring.h
40
#define equal(s1, s2) (strcmp(s1, s2) == 0)
bin/test/test.c
576
intcmp (const char *s1, const char *s2)
bin/test/test.c
581
q1 = getq(s1);
cddl/lib/libdtrace/libproc_compat.h
41
#define Pxlookup_by_name(p, l, s1, s2, sym, a) \
cddl/lib/libdtrace/libproc_compat.h
42
proc_name2sym(p, s1, s2, sym, a)
crypto/heimdal/appl/telnet/libtelnet/genget.c
53
isprefix(char *s1, char *s2)
crypto/heimdal/appl/telnet/libtelnet/genget.c
58
if (*s1 == '\0')
crypto/heimdal/appl/telnet/libtelnet/genget.c
60
os1 = s1;
crypto/heimdal/appl/telnet/libtelnet/genget.c
61
c1 = *s1;
crypto/heimdal/appl/telnet/libtelnet/genget.c
66
c1 = *++s1;
crypto/heimdal/appl/telnet/libtelnet/genget.c
69
return(*s1 ? 0 : (*s2 ? (s1 - os1) : (os1 - s1)));
crypto/heimdal/appl/telnet/libtelnet/misc-proto.h
67
int isprefix(char *s1, char *s2);
crypto/heimdal/base/test_base.c
100
heim_string_t s1;
crypto/heimdal/base/test_base.c
104
s1 = heim_string_create("hejsan");
crypto/heimdal/base/test_base.c
105
heim_auto_release(s1);
crypto/heimdal/base/test_base.c
124
heim_string_t s1, s2;
crypto/heimdal/base/test_base.c
127
s1 = heim_string_create(string);
crypto/heimdal/base/test_base.c
130
if (heim_cmp(s1, s2) != 0) {
crypto/heimdal/base/test_base.c
135
heim_release(s1);
crypto/heimdal/lib/asn1/check-der.c
237
heim_octet_string s1 = {8, "\x01\x23\x45\x67\x89\xab\xcd\xef"};
crypto/heimdal/lib/asn1/check-der.c
245
tests[0].val = &s1;
crypto/heimdal/lib/asn1/check-der.c
277
heim_bmp_string s1 = { 1, bmp_d1 };
crypto/heimdal/lib/asn1/check-der.c
287
tests[0].val = &s1;
crypto/heimdal/lib/asn1/check-der.c
325
heim_universal_string s1 = { 1, universal_d1 };
crypto/heimdal/lib/asn1/check-der.c
335
tests[0].val = &s1;
crypto/heimdal/lib/asn1/check-der.c
370
char *s1 = "Test User 1";
crypto/heimdal/lib/asn1/check-der.c
377
tests[0].val = &s1;
crypto/heimdal/lib/asn1/check-der.c
378
if (asprintf (&tests[0].name, "the string \"%s\"", s1) < 0)
crypto/heimdal/lib/asn1/der_put.c
543
const struct heim_octet_string *s1 = a1, *s2 = a2;
crypto/heimdal/lib/asn1/der_put.c
546
ret = memcmp(s1->data, s2->data,
crypto/heimdal/lib/asn1/der_put.c
547
s1->length < s2->length ? s1->length : s2->length);
crypto/heimdal/lib/asn1/der_put.c
550
return s1->length - s2->length;
crypto/heimdal/lib/asn1/lex.c
2657
static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
crypto/heimdal/lib/asn1/lex.c
2661
s1[i] = s2[i];
crypto/heimdal/lib/asn1/symbol.c
42
Symbol *s1 = (Symbol *) a;
crypto/heimdal/lib/asn1/symbol.c
45
return strcmp(s1->name, s2->name);
crypto/heimdal/lib/com_err/lex.c
1792
static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
crypto/heimdal/lib/com_err/lex.c
1796
s1[i] = s2[i];
crypto/heimdal/lib/hx509/sel.c
102
size_t len1 = strlen(s1);
crypto/heimdal/lib/hx509/sel.c
107
ret = strcmp(s1 + (len1 - len2), s2) == 0;
crypto/heimdal/lib/hx509/sel.c
109
ret = strcmp(s1, s2) == 0;
crypto/heimdal/lib/hx509/sel.c
117
const char *w, *s1;
crypto/heimdal/lib/hx509/sel.c
125
s1 = eval_word(context, env, subexpr->arg1);
crypto/heimdal/lib/hx509/sel.c
126
if (strcmp(w, s1) == 0)
crypto/heimdal/lib/hx509/sel.c
92
const char *s1, *s2;
crypto/heimdal/lib/hx509/sel.c
95
s1 = eval_word(context, env, expr->arg1);
crypto/heimdal/lib/hx509/sel.c
98
if (s1 == NULL || s2 == NULL)
crypto/heimdal/lib/krb5/n-fold.c
59
int b1, s1, b2, s2;
crypto/heimdal/lib/krb5/n-fold.c
66
s1 = bb % 8;
crypto/heimdal/lib/krb5/n-fold.c
70
s2 = (len + 8 - s1) % 8;
crypto/heimdal/lib/krb5/n-fold.c
72
s2 = 8 - s1;
crypto/heimdal/lib/krb5/n-fold.c
74
buf[i] = (tmp[b1] << s1) | (tmp[b2] >> s2);
crypto/heimdal/lib/krb5/test_acl.c
50
char *s1, *s2;
crypto/heimdal/lib/krb5/test_acl.c
83
ret = krb5_acl_match_string(context, "foo", "r", &s1);
crypto/heimdal/lib/krb5/test_acl.c
85
STRINGMATCH(context, "ret 1 match", s1, "foo"); free(s1);
crypto/heimdal/lib/krb5/test_acl.c
87
ret = krb5_acl_match_string(context, "foo bar", "rr", &s1, &s2);
crypto/heimdal/lib/krb5/test_acl.c
89
STRINGMATCH(context, "ret 2 match 1", s1, "foo"); free(s1);
crypto/heimdal/lib/krb5/test_acl.c
92
ret = krb5_acl_match_string(context, "foo bar", "sr", "bar", &s1);
crypto/heimdal/lib/krb5/test_acl.c
94
if (s1 != NULL) krb5_errx(context, 1, "s1 not NULL");
crypto/heimdal/lib/roken/ct.c
57
const unsigned char *s1 = p1, *s2 = p2;
crypto/heimdal/lib/roken/ct.c
62
r |= (s1[i] ^ s2[i]);
crypto/heimdal/lib/roken/memmove.c
45
memmove(void *s1, const void *s2, size_t n)
crypto/heimdal/lib/roken/memmove.c
47
char *s=(char*)s2, *d=(char*)s1;
crypto/heimdal/lib/roken/memmove.c
61
return s1;
crypto/heimdal/lib/roken/strcasecmp.c
44
strcasecmp(const char *s1, const char *s2)
crypto/heimdal/lib/roken/strcasecmp.c
46
while(toupper((unsigned char)*s1) == toupper((unsigned char)*s2)) {
crypto/heimdal/lib/roken/strcasecmp.c
47
if(*s1 == '\0')
crypto/heimdal/lib/roken/strcasecmp.c
49
s1++;
crypto/heimdal/lib/roken/strcasecmp.c
52
return toupper((unsigned char)*s1) - toupper((unsigned char)*s2);
crypto/heimdal/lib/roken/strncasecmp.c
43
strncasecmp(const char *s1, const char *s2, size_t n)
crypto/heimdal/lib/roken/strncasecmp.c
46
&& toupper((unsigned char)*s1) == toupper((unsigned char)*s2))
crypto/heimdal/lib/roken/strncasecmp.c
48
if(*s1 == '\0')
crypto/heimdal/lib/roken/strncasecmp.c
50
s1++;
crypto/heimdal/lib/roken/strncasecmp.c
56
return toupper((unsigned char)*s1) - toupper((unsigned char)*s2);
crypto/heimdal/lib/roken/strtok_r.c
43
strtok_r(char *s1, const char *s2, char **lasts)
crypto/heimdal/lib/roken/strtok_r.c
47
if (s1 == NULL)
crypto/heimdal/lib/roken/strtok_r.c
48
s1 = *lasts;
crypto/heimdal/lib/roken/strtok_r.c
49
while(*s1 && strchr(s2, *s1))
crypto/heimdal/lib/roken/strtok_r.c
50
++s1;
crypto/heimdal/lib/roken/strtok_r.c
51
if(*s1 == '\0')
crypto/heimdal/lib/roken/strtok_r.c
53
ret = s1;
crypto/heimdal/lib/roken/strtok_r.c
54
while(*s1 && !strchr(s2, *s1))
crypto/heimdal/lib/roken/strtok_r.c
55
++s1;
crypto/heimdal/lib/roken/strtok_r.c
56
if(*s1)
crypto/heimdal/lib/roken/strtok_r.c
57
*s1++ = '\0';
crypto/heimdal/lib/roken/strtok_r.c
58
*lasts = s1;
crypto/heimdal/lib/roken/test-readenv.c
39
char *s1 = "VAR1=VAL1#comment\n\
crypto/heimdal/lib/roken/test-readenv.c
86
write_file(fn, s1);
crypto/heimdal/lib/sl/slc-lex.c
1729
static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
crypto/heimdal/lib/sl/slc-lex.c
1733
s1[i] = s2[i];
crypto/krb5/src/include/gssrpc/clnt.h
100
int32_t s1;
crypto/krb5/src/kadmin/server/auth.c
135
krb5_const_principal p2, const char *s1, const char *s2,
crypto/krb5/src/kadmin/server/auth.c
142
return h->vt.setstr(context, h->data, client, p1, s1, s2);
crypto/krb5/src/kadmin/server/auth.c
164
return h->vt.addpol(context, h->data, client, s1, polent, mask);
crypto/krb5/src/kadmin/server/auth.c
166
return h->vt.modpol(context, h->data, client, s1, polent, mask);
crypto/krb5/src/kadmin/server/auth.c
168
return h->vt.delpol(context, h->data, client, s1);
crypto/krb5/src/kadmin/server/auth.c
170
return h->vt.getpol(context, h->data, client, s1, s2);
crypto/krb5/src/kadmin/server/auth.c
183
krb5_const_principal p1, krb5_const_principal p2, const char *s1,
crypto/krb5/src/kadmin/server/auth.c
193
ret = call_module(context, h, opcode, client, p1, p2, s1, s2,
crypto/krb5/src/kadmin/server/auth.h
67
krb5_const_principal p2, const char *s1, const char *s2,
crypto/krb5/src/kadmin/server/server_stubs.c
322
krb5_const_principal p2, const char *s1, const char *s2)
crypto/krb5/src/kadmin/server/server_stubs.c
325
s1, s2, NULL, 0);
crypto/krb5/src/lib/kadm5/srv/pwqual_dict.c
65
word_compare(const void *s1, const void *s2)
crypto/krb5/src/lib/kadm5/srv/pwqual_dict.c
67
return (strcasecmp(*(const char **)s1, *(const char **)s2));
crypto/krb5/src/lib/krb5/os/localaddr.c
240
addr_eq (struct sockaddr *s1, struct sockaddr *s2)
crypto/krb5/src/lib/krb5/os/localaddr.c
242
if (s1->sa_family != s2->sa_family)
crypto/krb5/src/lib/krb5/os/localaddr.c
244
switch (s1->sa_family) {
crypto/krb5/src/lib/krb5/os/localaddr.c
246
return !memcmp(&sa2sin(s1)->sin_addr, &sa2sin(s2)->sin_addr,
crypto/krb5/src/lib/krb5/os/localaddr.c
247
sizeof(sa2sin(s1)->sin_addr));
crypto/krb5/src/lib/krb5/os/localaddr.c
249
return !memcmp(&sa2sin6(s1)->sin6_addr, &sa2sin6(s2)->sin6_addr,
crypto/krb5/src/lib/krb5/os/localaddr.c
250
sizeof(sa2sin6(s1)->sin6_addr));
crypto/krb5/src/lib/krb5/unicode/ucstr.c
100
char *s1, *s2, *done;
crypto/krb5/src/lib/krb5/unicode/ucstr.c
120
s1 = data1->data;
crypto/krb5/src/lib/krb5/unicode/ucstr.c
122
done = s1 + len;
crypto/krb5/src/lib/krb5/unicode/ucstr.c
124
while ((s1 < done) && KRB5_UTF8_ISASCII(s1) && KRB5_UTF8_ISASCII(s2)) {
crypto/krb5/src/lib/krb5/unicode/ucstr.c
126
char c1 = TOLOWER(*s1);
crypto/krb5/src/lib/krb5/unicode/ucstr.c
130
res = *s1 - *s2;
crypto/krb5/src/lib/krb5/unicode/ucstr.c
132
s1++;
crypto/krb5/src/lib/krb5/unicode/ucstr.c
136
if (s1 < done) {
crypto/krb5/src/lib/krb5/unicode/ucstr.c
137
if (!KRB5_UTF8_ISASCII(s1) || !KRB5_UTF8_ISASCII(s2)) {
crypto/krb5/src/lib/krb5/unicode/ucstr.c
140
} else if (((len < l1) && !KRB5_UTF8_ISASCII(s1)) ||
crypto/krb5/src/lib/krb5/unicode/ucstr.c
151
i = s1 - done + len;
crypto/krb5/src/lib/krb5/unicode/ucstr.c
154
if (!res && (s1 == done) &&
crypto/krb5/src/lib/krb5/unicode/ucstr.c
155
((len == l1) || KRB5_UTF8_ISASCII(s1)) &&
crypto/krb5/src/lib/krb5/unicode/ucstr.c
161
s1--;
crypto/krb5/src/lib/krb5/unicode/ucstr.c
181
if (krb5int_utf8_to_ucs4(s1 + i, &ucs[ulen]) == -1) {
crypto/krb5/src/lib/krb5/unicode/ucstr.c
185
len = KRB5_UTF8_CHARLEN(s1 + i);
crypto/krb5/src/lib/rpc/clnt_perror.c
167
(u_long) e.re_lb.s1,
crypto/krb5/src/lib/rpc/rpc_prot.c
210
error->re_lb.s1 = (int32_t)MSG_ACCEPTED;
crypto/krb5/src/lib/rpc/rpc_prot.c
230
error->re_lb.s1 = (int32_t)MSG_DENIED;
crypto/krb5/src/lib/rpc/rpc_prot.c
258
error->re_lb.s1 = (int32_t)(msg->rm_reply.rp_stat);
crypto/krb5/src/plugins/kdb/test/kdb_test.c
131
set_names(testhandle h, const char *s1, const char *s2, const char *s3)
crypto/krb5/src/plugins/kdb/test/kdb_test.c
135
h->names[2] = s1;
crypto/krb5/src/plugins/kdb/test/kdb_test.c
143
get_string(testhandle h, const char *s1, const char *s2, const char *s3)
crypto/krb5/src/plugins/kdb/test/kdb_test.c
148
set_names(h, s1, s2, s3);
crypto/krb5/src/plugins/kdb/test/kdb_test.c
161
get_duration(testhandle h, const char *s1, const char *s2, const char *s3)
crypto/krb5/src/plugins/kdb/test/kdb_test.c
163
char *strval = get_string(h, s1, s2, s3);
crypto/krb5/src/plugins/kdb/test/kdb_test.c
176
get_time(testhandle h, const char *s1, const char *s2, const char *s3)
crypto/krb5/src/plugins/kdb/test/kdb_test.c
178
char *strval = get_string(h, s1, s2, s3);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1053
int64_t s1 = 2097151 & (load_4(s + 2) >> 5);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1209
s1 += s13 * 666643;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1218
s1 += s12 * 470296;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1226
s1 += carry0;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1244
carry1 = (s1 + (1 << 20)) >> 21;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1246
s1 -= int64_lshift21(carry1);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1264
s1 += s12 * 470296;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1272
s1 += carry0;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1274
carry1 = s1 >> 21;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1276
s1 -= int64_lshift21(carry1);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1309
s1 += s12 * 470296;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1317
s1 += carry0;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1319
carry1 = s1 >> 21;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1321
s1 -= int64_lshift21(carry1);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1352
s[2] = (s0 >> 16) | (s1 << 5);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1353
s[3] = s1 >> 3;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1354
s[4] = s1 >> 11;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1355
s[5] = (s1 >> 19) | (s2 << 2);
crypto/krb5/src/util/support/t_json.c
185
k5_json_string s1, s2, s3;
crypto/krb5/src/util/support/t_json.c
189
k5_json_string_create("hejsan", &s1);
crypto/krb5/src/util/support/t_json.c
193
if (strcmp(k5_json_string_utf8(s1), k5_json_string_utf8(s2)) != 0)
crypto/krb5/src/util/support/t_json.c
202
k5_json_release(s1);
crypto/libecc/include/libecc/sig/bign_common.h
85
nn s1;
crypto/libecc/include/libecc/utils/utils.h
172
ATTRIBUTE_WARN_UNUSED_RET int are_str_equal(const char *s1, const char *s2, int *check);
crypto/libecc/include/libecc/utils/utils.h
173
ATTRIBUTE_WARN_UNUSED_RET int are_str_equal_nlen(const char *s1, const char *s2, u32 maxlen, int *check);
crypto/libecc/src/sig/bign_common.c
481
nn k, h, tmp, s1;
crypto/libecc/src/sig/bign_common.c
492
tmp.magic = s1.magic = WORD(0);
crypto/libecc/src/sig/bign_common.c
656
ret = nn_init_from_buf(&s1, FE2OS_W, l); EG(ret, err);
crypto/libecc/src/sig/bign_common.c
657
ret = nn_mod(&s1, &s1, q); EG(ret, err);
crypto/libecc/src/sig/bign_common.c
663
ret = nn_mod_add(&s1, &s1, &tmp, q); EG(ret, err);
crypto/libecc/src/sig/bign_common.c
666
ret = nn_mod_mul(&s1, &s1, &b, q); EG(ret, err);
crypto/libecc/src/sig/bign_common.c
675
ret = nn_mod_mul(&s1, &s1, &(priv_key->x), q); EG(ret, err);
crypto/libecc/src/sig/bign_common.c
676
ret = nn_mod_sub(&s1, &k, &s1, q); EG(ret, err);
crypto/libecc/src/sig/bign_common.c
677
ret = nn_mod_sub(&s1, &s1, &h, q); EG(ret, err);
crypto/libecc/src/sig/bign_common.c
681
ret = nn_mod_mul(&s1, &s1, &binv, q); EG(ret, err);
crypto/libecc/src/sig/bign_common.c
683
dbg_nn_print("s1", &s1);
crypto/libecc/src/sig/bign_common.c
689
ret = nn_export_to_buf(&sig[l], (u16)BIGN_S1_LEN(q_bit_len), &s1); EG(ret, err);
crypto/libecc/src/sig/bign_common.c
696
nn_uninit(&s1);
crypto/libecc/src/sig/bign_common.c
747
nn *s0, *s1;
crypto/libecc/src/sig/bign_common.c
773
s1 = &(ctx->verify_data.bign.s1);
crypto/libecc/src/sig/bign_common.c
792
ret = nn_init_from_buf(s1, &TMP[0], (u8)BIGN_S1_LEN(q_bit_len)); EG(ret, err);
crypto/libecc/src/sig/bign_common.c
794
dbg_nn_print("s1", s1);
crypto/libecc/src/sig/bign_common.c
797
ret = nn_cmp(s1, q, &cmp); EG(ret, err);
crypto/libecc/src/sig/bign_common.c
811
PTR_NULLIFY(s1);
crypto/libecc/src/sig/bign_common.c
855
nn *s0, *s1;
crypto/libecc/src/sig/bign_common.c
897
s1 = &(ctx->verify_data.bign.s1);
crypto/libecc/src/sig/bign_common.c
922
ret = nn_mod_add(&h, &h, s1, q); EG(ret, err);
crypto/libecc/src/sig/bign_common.c
986
PTR_NULLIFY(s1);
crypto/libecc/src/utils/utils.c
100
const char *ls1 = s1, *ls2 = s2;
crypto/libecc/src/utils/utils.c
103
MUST_HAVE((s1 != NULL) && (s2 != NULL) && (check != NULL), ret, err);
crypto/libecc/src/utils/utils.c
123
int are_str_equal_nlen(const char *s1, const char *s2, u32 maxlen, int *check)
crypto/libecc/src/utils/utils.c
125
const char *ls1 = s1, *ls2 = s2;
crypto/libecc/src/utils/utils.c
129
MUST_HAVE((s1 != NULL) && (s2 != NULL) && (check != NULL), ret, err);
crypto/libecc/src/utils/utils.c
98
int are_str_equal(const char *s1, const char *s2, int *check)
crypto/openssh/defines.h
742
# define memmove(s1, s2, n) bcopy((s2), (s1), (n))
crypto/openssh/ed25519.c
1851
static void ge25519_double_scalarmult_vartime(ge25519_p3 *r, const ge25519_p3 *p1, const sc25519 *s1, const ge25519_p3 *p2, const sc25519 *s2)
crypto/openssh/ed25519.c
1876
sc25519_2interleave2(b,s1,s2);
crypto/openssh/ed25519.c
509
static void sc25519_2interleave2(unsigned char r[127], const sc25519 *s1, const sc25519 *s2);
crypto/openssh/ed25519.c
705
static void sc25519_2interleave2(unsigned char r[127], const sc25519 *s1, const sc25519 *s2)
crypto/openssh/ed25519.c
710
r[4*i] = ( s1->v[i] & 3) ^ (( s2->v[i] & 3) << 2);
crypto/openssh/ed25519.c
711
r[4*i+1] = ((s1->v[i] >> 2) & 3) ^ (((s2->v[i] >> 2) & 3) << 2);
crypto/openssh/ed25519.c
712
r[4*i+2] = ((s1->v[i] >> 4) & 3) ^ (((s2->v[i] >> 4) & 3) << 2);
crypto/openssh/ed25519.c
713
r[4*i+3] = ((s1->v[i] >> 6) & 3) ^ (((s2->v[i] >> 6) & 3) << 2);
crypto/openssh/ed25519.c
715
r[124] = ( s1->v[31] & 3) ^ (( s2->v[31] & 3) << 2);
crypto/openssh/ed25519.c
716
r[125] = ((s1->v[31] >> 2) & 3) ^ (((s2->v[31] >> 2) & 3) << 2);
crypto/openssh/ed25519.c
717
r[126] = ((s1->v[31] >> 4) & 3) ^ (((s2->v[31] >> 4) & 3) << 2);
crypto/openssh/ed25519.c
748
static void ge25519_double_scalarmult_vartime(ge25519 *r, const ge25519 *p1, const sc25519 *s1, const ge25519 *p2, const sc25519 *s2);
crypto/openssh/loginrec.c
206
#define MIN_SIZEOF(s1,s2) (sizeof(s1) < sizeof(s2) ? sizeof(s1) : sizeof(s2))
crypto/openssh/openbsd-compat/glob.c
426
g_strncmp(const Char *s1, const char *s2, size_t n)
crypto/openssh/openbsd-compat/glob.c
431
rv = *(Char *)s1 - *(const unsigned char *)s2++;
crypto/openssh/openbsd-compat/glob.c
434
if (*s1++ == '\0')
crypto/openssh/openbsd-compat/sha2.c
379
s1 = W256[(j+14)&0x0f]; \
crypto/openssh/openbsd-compat/sha2.c
380
s1 = sigma1_256(s1); \
crypto/openssh/openbsd-compat/sha2.c
382
(W256[j&0x0f] += s1 + W256[(j+9)&0x0f] + s0); \
crypto/openssh/openbsd-compat/sha2.c
391
u_int32_t a, b, c, d, e, f, g, h, s0, s1;
crypto/openssh/openbsd-compat/sha2.c
449
u_int32_t a, b, c, d, e, f, g, h, s0, s1;
crypto/openssh/openbsd-compat/sha2.c
486
s1 = W256[(j+14)&0x0f];
crypto/openssh/openbsd-compat/sha2.c
487
s1 = sigma1_256(s1);
crypto/openssh/openbsd-compat/sha2.c
491
(W256[j&0x0f] += s1 + W256[(j+9)&0x0f] + s0);
crypto/openssh/openbsd-compat/sha2.c
660
s1 = W512[(j+14)&0x0f]; \
crypto/openssh/openbsd-compat/sha2.c
661
s1 = sigma1_512(s1); \
crypto/openssh/openbsd-compat/sha2.c
663
(W512[j&0x0f] += s1 + W512[(j+9)&0x0f] + s0); \
crypto/openssh/openbsd-compat/sha2.c
672
u_int64_t a, b, c, d, e, f, g, h, s0, s1;
crypto/openssh/openbsd-compat/sha2.c
730
u_int64_t a, b, c, d, e, f, g, h, s0, s1;
crypto/openssh/openbsd-compat/sha2.c
767
s1 = W512[(j+14)&0x0f];
crypto/openssh/openbsd-compat/sha2.c
768
s1 = sigma1_512(s1);
crypto/openssh/openbsd-compat/sha2.c
772
(W512[j&0x0f] += s1 + W512[(j+9)&0x0f] + s0);
crypto/openssh/poly1305.c
37
uint32_t s1,s2,s3,s4;
crypto/openssh/poly1305.c
59
s1 = r1 * 5;
crypto/openssh/poly1305.c
90
t[0] = mul32x32_64(h0,r0) + mul32x32_64(h1,s4) + mul32x32_64(h2,s3) + mul32x32_64(h3,s2) + mul32x32_64(h4,s1);
crypto/openssh/rijndael.c
1001
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[33];
crypto/openssh/rijndael.c
1005
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[36];
crypto/openssh/rijndael.c
1006
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[37];
crypto/openssh/rijndael.c
1007
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[38];
crypto/openssh/rijndael.c
1008
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[39];
crypto/openssh/rijndael.c
1012
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[41];
crypto/openssh/rijndael.c
1016
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[44];
crypto/openssh/rijndael.c
1017
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[45];
crypto/openssh/rijndael.c
1018
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[46];
crypto/openssh/rijndael.c
1019
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[47];
crypto/openssh/rijndael.c
1023
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[49];
crypto/openssh/rijndael.c
1027
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[52];
crypto/openssh/rijndael.c
1028
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[53];
crypto/openssh/rijndael.c
1029
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[54];
crypto/openssh/rijndael.c
1030
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[55];
crypto/openssh/rijndael.c
1044
Td3[(s1 ) & 0xff] ^
crypto/openssh/rijndael.c
1047
Td0[(s1 >> 24) ] ^
crypto/openssh/rijndael.c
1054
Td1[(s1 >> 16) & 0xff] ^
crypto/openssh/rijndael.c
1061
Td2[(s1 >> 8) & 0xff] ^
crypto/openssh/rijndael.c
1076
s1 =
crypto/openssh/rijndael.c
1107
s1 =
crypto/openssh/rijndael.c
1113
PUTU32(pt + 4, s1);
crypto/openssh/rijndael.c
765
u32 s0, s1, s2, s3, t0, t1, t2, t3;
crypto/openssh/rijndael.c
775
s1 = GETU32(pt + 4) ^ rk[1];
crypto/openssh/rijndael.c
780
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4];
crypto/openssh/rijndael.c
781
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5];
crypto/openssh/rijndael.c
782
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6];
crypto/openssh/rijndael.c
783
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7];
crypto/openssh/rijndael.c
786
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[ 9];
crypto/openssh/rijndael.c
790
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12];
crypto/openssh/rijndael.c
791
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13];
crypto/openssh/rijndael.c
792
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[14];
crypto/openssh/rijndael.c
793
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[15];
crypto/openssh/rijndael.c
796
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[17];
crypto/openssh/rijndael.c
800
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[20];
crypto/openssh/rijndael.c
801
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[21];
crypto/openssh/rijndael.c
802
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[22];
crypto/openssh/rijndael.c
803
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[23];
crypto/openssh/rijndael.c
806
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[25];
crypto/openssh/rijndael.c
810
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[28];
crypto/openssh/rijndael.c
811
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[29];
crypto/openssh/rijndael.c
812
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[30];
crypto/openssh/rijndael.c
813
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[31];
crypto/openssh/rijndael.c
816
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[33];
crypto/openssh/rijndael.c
820
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[36];
crypto/openssh/rijndael.c
821
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[37];
crypto/openssh/rijndael.c
822
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[38];
crypto/openssh/rijndael.c
823
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[39];
crypto/openssh/rijndael.c
827
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[41];
crypto/openssh/rijndael.c
831
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[44];
crypto/openssh/rijndael.c
832
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[45];
crypto/openssh/rijndael.c
833
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[46];
crypto/openssh/rijndael.c
834
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[47];
crypto/openssh/rijndael.c
838
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[49];
crypto/openssh/rijndael.c
842
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[52];
crypto/openssh/rijndael.c
843
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[53];
crypto/openssh/rijndael.c
844
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[54];
crypto/openssh/rijndael.c
845
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[55];
crypto/openssh/rijndael.c
857
Te1[(s1 >> 16) & 0xff] ^
crypto/openssh/rijndael.c
862
Te0[(s1 >> 24) ] ^
crypto/openssh/rijndael.c
871
Te3[(s1 ) & 0xff] ^
crypto/openssh/rijndael.c
876
Te2[(s1 >> 8) & 0xff] ^
crypto/openssh/rijndael.c
891
s1 =
crypto/openssh/rijndael.c
922
s1 =
crypto/openssh/rijndael.c
928
PUTU32(ct + 4, s1);
crypto/openssh/rijndael.c
950
u32 s0, s1, s2, s3, t0, t1, t2, t3;
crypto/openssh/rijndael.c
960
s1 = GETU32(ct + 4) ^ rk[1];
crypto/openssh/rijndael.c
965
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[ 4];
crypto/openssh/rijndael.c
966
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[ 5];
crypto/openssh/rijndael.c
967
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[ 6];
crypto/openssh/rijndael.c
968
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[ 7];
crypto/openssh/rijndael.c
971
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[ 9];
crypto/openssh/rijndael.c
975
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[12];
crypto/openssh/rijndael.c
976
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[13];
crypto/openssh/rijndael.c
977
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[14];
crypto/openssh/rijndael.c
978
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[15];
crypto/openssh/rijndael.c
981
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[17];
crypto/openssh/rijndael.c
985
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[20];
crypto/openssh/rijndael.c
986
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[21];
crypto/openssh/rijndael.c
987
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[22];
crypto/openssh/rijndael.c
988
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[23];
crypto/openssh/rijndael.c
991
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[25];
crypto/openssh/rijndael.c
995
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[28];
crypto/openssh/rijndael.c
996
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[29];
crypto/openssh/rijndael.c
997
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[30];
crypto/openssh/rijndael.c
998
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[31];
crypto/openssl/crypto/aes/aes_core.c
3178
u32 s0, s1, s2, s3, t0, t1, t2, t3;
crypto/openssl/crypto/aes/aes_core.c
3191
s1 = GETU32(in + 4) ^ rk[1];
crypto/openssl/crypto/aes/aes_core.c
3196
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[4];
crypto/openssl/crypto/aes/aes_core.c
3197
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[5];
crypto/openssl/crypto/aes/aes_core.c
3198
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[6];
crypto/openssl/crypto/aes/aes_core.c
3199
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[7];
crypto/openssl/crypto/aes/aes_core.c
3202
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[9];
crypto/openssl/crypto/aes/aes_core.c
3206
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12];
crypto/openssl/crypto/aes/aes_core.c
3207
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13];
crypto/openssl/crypto/aes/aes_core.c
3208
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[14];
crypto/openssl/crypto/aes/aes_core.c
3209
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[15];
crypto/openssl/crypto/aes/aes_core.c
3212
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[17];
crypto/openssl/crypto/aes/aes_core.c
3216
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[20];
crypto/openssl/crypto/aes/aes_core.c
3217
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[21];
crypto/openssl/crypto/aes/aes_core.c
3218
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[22];
crypto/openssl/crypto/aes/aes_core.c
3219
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[23];
crypto/openssl/crypto/aes/aes_core.c
3222
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[25];
crypto/openssl/crypto/aes/aes_core.c
3226
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[28];
crypto/openssl/crypto/aes/aes_core.c
3227
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[29];
crypto/openssl/crypto/aes/aes_core.c
3228
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[30];
crypto/openssl/crypto/aes/aes_core.c
3229
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[31];
crypto/openssl/crypto/aes/aes_core.c
3232
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[33];
crypto/openssl/crypto/aes/aes_core.c
3236
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[36];
crypto/openssl/crypto/aes/aes_core.c
3237
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[37];
crypto/openssl/crypto/aes/aes_core.c
3238
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[38];
crypto/openssl/crypto/aes/aes_core.c
3239
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[39];
crypto/openssl/crypto/aes/aes_core.c
3243
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[41];
crypto/openssl/crypto/aes/aes_core.c
3247
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[44];
crypto/openssl/crypto/aes/aes_core.c
3248
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[45];
crypto/openssl/crypto/aes/aes_core.c
3249
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[46];
crypto/openssl/crypto/aes/aes_core.c
3250
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[47];
crypto/openssl/crypto/aes/aes_core.c
3254
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[49];
crypto/openssl/crypto/aes/aes_core.c
3258
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[52];
crypto/openssl/crypto/aes/aes_core.c
3259
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[53];
crypto/openssl/crypto/aes/aes_core.c
3260
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[54];
crypto/openssl/crypto/aes/aes_core.c
3261
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[55];
crypto/openssl/crypto/aes/aes_core.c
3271
t0 = Te0[(s0 >> 24)] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[(s3) & 0xff] ^ rk[4];
crypto/openssl/crypto/aes/aes_core.c
3272
t1 = Te0[(s1 >> 24)] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[(s0) & 0xff] ^ rk[5];
crypto/openssl/crypto/aes/aes_core.c
3273
t2 = Te0[(s2 >> 24)] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[(s1) & 0xff] ^ rk[6];
crypto/openssl/crypto/aes/aes_core.c
3274
t3 = Te0[(s3 >> 24)] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[(s2) & 0xff] ^ rk[7];
crypto/openssl/crypto/aes/aes_core.c
3282
s1 = Te0[(t1 >> 24)] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[(t0) & 0xff] ^ rk[1];
crypto/openssl/crypto/aes/aes_core.c
3293
s1 = (Te2[(t1 >> 24)] & 0xff000000) ^ (Te3[(t2 >> 16) & 0xff] & 0x00ff0000) ^ (Te0[(t3 >> 8) & 0xff] & 0x0000ff00) ^ (Te1[(t0) & 0xff] & 0x000000ff) ^ rk[1];
crypto/openssl/crypto/aes/aes_core.c
3294
PUTU32(out + 4, s1);
crypto/openssl/crypto/aes/aes_core.c
3310
u32 s0, s1, s2, s3, t0, t1, t2, t3;
crypto/openssl/crypto/aes/aes_core.c
3323
s1 = GETU32(in + 4) ^ rk[1];
crypto/openssl/crypto/aes/aes_core.c
3328
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[4];
crypto/openssl/crypto/aes/aes_core.c
3329
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[5];
crypto/openssl/crypto/aes/aes_core.c
3330
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[6];
crypto/openssl/crypto/aes/aes_core.c
3331
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[7];
crypto/openssl/crypto/aes/aes_core.c
3334
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[9];
crypto/openssl/crypto/aes/aes_core.c
3338
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[12];
crypto/openssl/crypto/aes/aes_core.c
3339
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[13];
crypto/openssl/crypto/aes/aes_core.c
3340
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[14];
crypto/openssl/crypto/aes/aes_core.c
3341
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[15];
crypto/openssl/crypto/aes/aes_core.c
3344
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[17];
crypto/openssl/crypto/aes/aes_core.c
3348
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[20];
crypto/openssl/crypto/aes/aes_core.c
3349
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[21];
crypto/openssl/crypto/aes/aes_core.c
3350
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[22];
crypto/openssl/crypto/aes/aes_core.c
3351
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[23];
crypto/openssl/crypto/aes/aes_core.c
3354
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[25];
crypto/openssl/crypto/aes/aes_core.c
3358
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[28];
crypto/openssl/crypto/aes/aes_core.c
3359
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[29];
crypto/openssl/crypto/aes/aes_core.c
3360
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[30];
crypto/openssl/crypto/aes/aes_core.c
3361
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[31];
crypto/openssl/crypto/aes/aes_core.c
3364
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[33];
crypto/openssl/crypto/aes/aes_core.c
3368
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[36];
crypto/openssl/crypto/aes/aes_core.c
3369
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[37];
crypto/openssl/crypto/aes/aes_core.c
3370
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[38];
crypto/openssl/crypto/aes/aes_core.c
3371
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[39];
crypto/openssl/crypto/aes/aes_core.c
3375
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[41];
crypto/openssl/crypto/aes/aes_core.c
3379
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[44];
crypto/openssl/crypto/aes/aes_core.c
3380
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[45];
crypto/openssl/crypto/aes/aes_core.c
3381
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[46];
crypto/openssl/crypto/aes/aes_core.c
3382
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[47];
crypto/openssl/crypto/aes/aes_core.c
3386
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[49];
crypto/openssl/crypto/aes/aes_core.c
3390
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[52];
crypto/openssl/crypto/aes/aes_core.c
3391
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[53];
crypto/openssl/crypto/aes/aes_core.c
3392
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[54];
crypto/openssl/crypto/aes/aes_core.c
3393
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[55];
crypto/openssl/crypto/aes/aes_core.c
3403
t0 = Td0[(s0 >> 24)] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[(s1) & 0xff] ^ rk[4];
crypto/openssl/crypto/aes/aes_core.c
3404
t1 = Td0[(s1 >> 24)] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[(s2) & 0xff] ^ rk[5];
crypto/openssl/crypto/aes/aes_core.c
3405
t2 = Td0[(s2 >> 24)] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[(s3) & 0xff] ^ rk[6];
crypto/openssl/crypto/aes/aes_core.c
3406
t3 = Td0[(s3 >> 24)] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[(s0) & 0xff] ^ rk[7];
crypto/openssl/crypto/aes/aes_core.c
3414
s1 = Td0[(t1 >> 24)] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[(t2) & 0xff] ^ rk[1];
crypto/openssl/crypto/aes/aes_core.c
3425
s1 = ((u32)Td4[(t1 >> 24)] << 24) ^ ((u32)Td4[(t0 >> 16) & 0xff] << 16) ^ ((u32)Td4[(t3 >> 8) & 0xff] << 8) ^ ((u32)Td4[(t2) & 0xff]) ^ rk[1];
crypto/openssl/crypto/aes/aes_core.c
3426
PUTU32(out + 4, s1);
crypto/openssl/crypto/aes/aes_core.c
465
uni s1;
crypto/openssl/crypto/aes/aes_core.c
470
s1.d = state[c];
crypto/openssl/crypto/aes/aes_core.c
471
s.d = s1.d;
crypto/openssl/crypto/aes/aes_core.c
476
s.d ^= s1.d;
crypto/openssl/crypto/aes/aes_core.c
477
XtimeLong(&s1.d);
crypto/openssl/crypto/aes/aes_core.c
478
s.d ^= s1.d;
crypto/openssl/crypto/aes/aes_core.c
479
s.b[0] ^= s1.b[1];
crypto/openssl/crypto/aes/aes_core.c
480
s.b[1] ^= s1.b[2];
crypto/openssl/crypto/aes/aes_core.c
481
s.b[2] ^= s1.b[3];
crypto/openssl/crypto/aes/aes_core.c
482
s.b[3] ^= s1.b[0];
crypto/openssl/crypto/aes/aes_core.c
483
s.b[4] ^= s1.b[5];
crypto/openssl/crypto/aes/aes_core.c
484
s.b[5] ^= s1.b[6];
crypto/openssl/crypto/aes/aes_core.c
485
s.b[6] ^= s1.b[7];
crypto/openssl/crypto/aes/aes_core.c
486
s.b[7] ^= s1.b[4];
crypto/openssl/crypto/aes/aes_core.c
493
uni s1;
crypto/openssl/crypto/aes/aes_core.c
498
s1.d = state[c];
crypto/openssl/crypto/aes/aes_core.c
499
s.d = s1.d;
crypto/openssl/crypto/aes/aes_core.c
504
s.d ^= s1.d;
crypto/openssl/crypto/aes/aes_core.c
505
XtimeLong(&s1.d);
crypto/openssl/crypto/aes/aes_core.c
506
s.d ^= s1.d;
crypto/openssl/crypto/aes/aes_core.c
507
s.b[0] ^= s1.b[1];
crypto/openssl/crypto/aes/aes_core.c
508
s.b[1] ^= s1.b[2];
crypto/openssl/crypto/aes/aes_core.c
509
s.b[2] ^= s1.b[3];
crypto/openssl/crypto/aes/aes_core.c
510
s.b[3] ^= s1.b[0];
crypto/openssl/crypto/aes/aes_core.c
511
s.b[4] ^= s1.b[5];
crypto/openssl/crypto/aes/aes_core.c
512
s.b[5] ^= s1.b[6];
crypto/openssl/crypto/aes/aes_core.c
513
s.b[6] ^= s1.b[7];
crypto/openssl/crypto/aes/aes_core.c
514
s.b[7] ^= s1.b[4];
crypto/openssl/crypto/aes/aes_core.c
515
XtimeLong(&s1.d);
crypto/openssl/crypto/aes/aes_core.c
516
s1.d ^= ((s1.d & U64(0xFFFF0000FFFF0000)) >> 16)
crypto/openssl/crypto/aes/aes_core.c
517
| ((s1.d & U64(0x0000FFFF0000FFFF)) << 16);
crypto/openssl/crypto/aes/aes_core.c
518
s.d ^= s1.d;
crypto/openssl/crypto/aes/aes_core.c
519
XtimeLong(&s1.d);
crypto/openssl/crypto/aes/aes_core.c
520
s1.d ^= ((s1.d & U64(0xFF00FF00FF00FF00)) >> 8)
crypto/openssl/crypto/aes/aes_core.c
521
| ((s1.d & U64(0x00FF00FF00FF00FF)) << 8);
crypto/openssl/crypto/aes/aes_core.c
522
s.d ^= s1.d;
crypto/openssl/crypto/aes/aes_x86core.c
635
u32 s0, s1, s2, s3, t[4];
crypto/openssl/crypto/aes/aes_x86core.c
646
s1 = GETU32(in + 4) ^ rk[1];
crypto/openssl/crypto/aes/aes_x86core.c
653
t[0] = (u32)Te4[(s0) & 0xff] ^ (u32)Te4[(s1 >> 8) & 0xff] << 8 ^ (u32)Te4[(s2 >> 16) & 0xff] << 16 ^ (u32)Te4[(s3 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
654
t[1] = (u32)Te4[(s1) & 0xff] ^ (u32)Te4[(s2 >> 8) & 0xff] << 8 ^ (u32)Te4[(s3 >> 16) & 0xff] << 16 ^ (u32)Te4[(s0 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
655
t[2] = (u32)Te4[(s2) & 0xff] ^ (u32)Te4[(s3 >> 8) & 0xff] << 8 ^ (u32)Te4[(s0 >> 16) & 0xff] << 16 ^ (u32)Te4[(s1 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
656
t[3] = (u32)Te4[(s3) & 0xff] ^ (u32)Te4[(s0 >> 8) & 0xff] << 8 ^ (u32)Te4[(s1 >> 16) & 0xff] << 16 ^ (u32)Te4[(s2 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
676
t[0] = Te0[(s0) & 0xff] ^ Te1[(s1 >> 8) & 0xff] ^ Te2[(s2 >> 16) & 0xff] ^ Te3[(s3 >> 24)] ^ rk[4];
crypto/openssl/crypto/aes/aes_x86core.c
677
t[1] = Te0[(s1) & 0xff] ^ Te1[(s2 >> 8) & 0xff] ^ Te2[(s3 >> 16) & 0xff] ^ Te3[(s0 >> 24)] ^ rk[5];
crypto/openssl/crypto/aes/aes_x86core.c
678
t[2] = Te0[(s2) & 0xff] ^ Te1[(s3 >> 8) & 0xff] ^ Te2[(s0 >> 16) & 0xff] ^ Te3[(s1 >> 24)] ^ rk[6];
crypto/openssl/crypto/aes/aes_x86core.c
679
t[3] = Te0[(s3) & 0xff] ^ Te1[(s0 >> 8) & 0xff] ^ Te2[(s1 >> 16) & 0xff] ^ Te3[(s2 >> 24)] ^ rk[7];
crypto/openssl/crypto/aes/aes_x86core.c
682
s1 = t[1];
crypto/openssl/crypto/aes/aes_x86core.c
691
t[0] = (u32)Te4[(s0) & 0xff] ^ (u32)Te4[(s1 >> 8) & 0xff] << 8 ^ (u32)Te4[(s2 >> 16) & 0xff] << 16 ^ (u32)Te4[(s3 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
692
t[1] = (u32)Te4[(s1) & 0xff] ^ (u32)Te4[(s2 >> 8) & 0xff] << 8 ^ (u32)Te4[(s3 >> 16) & 0xff] << 16 ^ (u32)Te4[(s0 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
693
t[2] = (u32)Te4[(s2) & 0xff] ^ (u32)Te4[(s3 >> 8) & 0xff] << 8 ^ (u32)Te4[(s0 >> 16) & 0xff] << 16 ^ (u32)Te4[(s1 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
694
t[3] = (u32)Te4[(s3) & 0xff] ^ (u32)Te4[(s0 >> 8) & 0xff] << 8 ^ (u32)Te4[(s1 >> 16) & 0xff] << 16 ^ (u32)Te4[(s2 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
714
t[0] = Te0[(s0) & 0xff] ^ Te1[(s1 >> 8) & 0xff] ^ Te2[(s2 >> 16) & 0xff] ^ Te3[(s3 >> 24)] ^ rk[0];
crypto/openssl/crypto/aes/aes_x86core.c
715
t[1] = Te0[(s1) & 0xff] ^ Te1[(s2 >> 8) & 0xff] ^ Te2[(s3 >> 16) & 0xff] ^ Te3[(s0 >> 24)] ^ rk[1];
crypto/openssl/crypto/aes/aes_x86core.c
716
t[2] = Te0[(s2) & 0xff] ^ Te1[(s3 >> 8) & 0xff] ^ Te2[(s0 >> 16) & 0xff] ^ Te3[(s1 >> 24)] ^ rk[2];
crypto/openssl/crypto/aes/aes_x86core.c
717
t[3] = Te0[(s3) & 0xff] ^ Te1[(s0 >> 8) & 0xff] ^ Te2[(s1 >> 16) & 0xff] ^ Te3[(s2 >> 24)] ^ rk[3];
crypto/openssl/crypto/aes/aes_x86core.c
720
s1 = t[1];
crypto/openssl/crypto/aes/aes_x86core.c
731
*(u32 *)(out + 0) = (u32)Te4[(s0) & 0xff] ^ (u32)Te4[(s1 >> 8) & 0xff] << 8 ^ (u32)Te4[(s2 >> 16) & 0xff] << 16 ^ (u32)Te4[(s3 >> 24)] << 24 ^ rk[0];
crypto/openssl/crypto/aes/aes_x86core.c
732
*(u32 *)(out + 4) = (u32)Te4[(s1) & 0xff] ^ (u32)Te4[(s2 >> 8) & 0xff] << 8 ^ (u32)Te4[(s3 >> 16) & 0xff] << 16 ^ (u32)Te4[(s0 >> 24)] << 24 ^ rk[1];
crypto/openssl/crypto/aes/aes_x86core.c
733
*(u32 *)(out + 8) = (u32)Te4[(s2) & 0xff] ^ (u32)Te4[(s3 >> 8) & 0xff] << 8 ^ (u32)Te4[(s0 >> 16) & 0xff] << 16 ^ (u32)Te4[(s1 >> 24)] << 24 ^ rk[2];
crypto/openssl/crypto/aes/aes_x86core.c
734
*(u32 *)(out + 12) = (u32)Te4[(s3) & 0xff] ^ (u32)Te4[(s0 >> 8) & 0xff] << 8 ^ (u32)Te4[(s1 >> 16) & 0xff] << 16 ^ (u32)Te4[(s2 >> 24)] << 24 ^ rk[3];
crypto/openssl/crypto/aes/aes_x86core.c
736
*(u32 *)(out + 0) = (Te2[(s0) & 0xff] & 0x000000ffU) ^ (Te3[(s1 >> 8) & 0xff] & 0x0000ff00U) ^ (Te0[(s2 >> 16) & 0xff] & 0x00ff0000U) ^ (Te1[(s3 >> 24)] & 0xff000000U) ^ rk[0];
crypto/openssl/crypto/aes/aes_x86core.c
737
*(u32 *)(out + 4) = (Te2[(s1) & 0xff] & 0x000000ffU) ^ (Te3[(s2 >> 8) & 0xff] & 0x0000ff00U) ^ (Te0[(s3 >> 16) & 0xff] & 0x00ff0000U) ^ (Te1[(s0 >> 24)] & 0xff000000U) ^ rk[1];
crypto/openssl/crypto/aes/aes_x86core.c
738
*(u32 *)(out + 8) = (Te2[(s2) & 0xff] & 0x000000ffU) ^ (Te3[(s3 >> 8) & 0xff] & 0x0000ff00U) ^ (Te0[(s0 >> 16) & 0xff] & 0x00ff0000U) ^ (Te1[(s1 >> 24)] & 0xff000000U) ^ rk[2];
crypto/openssl/crypto/aes/aes_x86core.c
739
*(u32 *)(out + 12) = (Te2[(s3) & 0xff] & 0x000000ffU) ^ (Te3[(s0 >> 8) & 0xff] & 0x0000ff00U) ^ (Te0[(s1 >> 16) & 0xff] & 0x00ff0000U) ^ (Te1[(s2 >> 24)] & 0xff000000U) ^ rk[3];
crypto/openssl/crypto/aes/aes_x86core.c
752
u32 s0, s1, s2, s3, t[4];
crypto/openssl/crypto/aes/aes_x86core.c
763
s1 = GETU32(in + 4) ^ rk[1];
crypto/openssl/crypto/aes/aes_x86core.c
770
t[0] = (u32)Td4[(s0) & 0xff] ^ (u32)Td4[(s3 >> 8) & 0xff] << 8 ^ (u32)Td4[(s2 >> 16) & 0xff] << 16 ^ (u32)Td4[(s1 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
771
t[1] = (u32)Td4[(s1) & 0xff] ^ (u32)Td4[(s0 >> 8) & 0xff] << 8 ^ (u32)Td4[(s3 >> 16) & 0xff] << 16 ^ (u32)Td4[(s2 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
772
t[2] = (u32)Td4[(s2) & 0xff] ^ (u32)Td4[(s1 >> 8) & 0xff] << 8 ^ (u32)Td4[(s0 >> 16) & 0xff] << 16 ^ (u32)Td4[(s3 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
773
t[3] = (u32)Td4[(s3) & 0xff] ^ (u32)Td4[(s2 >> 8) & 0xff] << 8 ^ (u32)Td4[(s1 >> 16) & 0xff] << 16 ^ (u32)Td4[(s0 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
801
t[0] = Td0[(s0) & 0xff] ^ Td1[(s3 >> 8) & 0xff] ^ Td2[(s2 >> 16) & 0xff] ^ Td3[(s1 >> 24)] ^ rk[4];
crypto/openssl/crypto/aes/aes_x86core.c
802
t[1] = Td0[(s1) & 0xff] ^ Td1[(s0 >> 8) & 0xff] ^ Td2[(s3 >> 16) & 0xff] ^ Td3[(s2 >> 24)] ^ rk[5];
crypto/openssl/crypto/aes/aes_x86core.c
803
t[2] = Td0[(s2) & 0xff] ^ Td1[(s1 >> 8) & 0xff] ^ Td2[(s0 >> 16) & 0xff] ^ Td3[(s3 >> 24)] ^ rk[6];
crypto/openssl/crypto/aes/aes_x86core.c
804
t[3] = Td0[(s3) & 0xff] ^ Td1[(s2 >> 8) & 0xff] ^ Td2[(s1 >> 16) & 0xff] ^ Td3[(s0 >> 24)] ^ rk[7];
crypto/openssl/crypto/aes/aes_x86core.c
807
s1 = t[1];
crypto/openssl/crypto/aes/aes_x86core.c
816
t[0] = (u32)Td4[(s0) & 0xff] ^ (u32)Td4[(s3 >> 8) & 0xff] << 8 ^ (u32)Td4[(s2 >> 16) & 0xff] << 16 ^ (u32)Td4[(s1 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
817
t[1] = (u32)Td4[(s1) & 0xff] ^ (u32)Td4[(s0 >> 8) & 0xff] << 8 ^ (u32)Td4[(s3 >> 16) & 0xff] << 16 ^ (u32)Td4[(s2 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
818
t[2] = (u32)Td4[(s2) & 0xff] ^ (u32)Td4[(s1 >> 8) & 0xff] << 8 ^ (u32)Td4[(s0 >> 16) & 0xff] << 16 ^ (u32)Td4[(s3 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
819
t[3] = (u32)Td4[(s3) & 0xff] ^ (u32)Td4[(s2 >> 8) & 0xff] << 8 ^ (u32)Td4[(s1 >> 16) & 0xff] << 16 ^ (u32)Td4[(s0 >> 24)] << 24;
crypto/openssl/crypto/aes/aes_x86core.c
847
t[0] = Td0[(s0) & 0xff] ^ Td1[(s3 >> 8) & 0xff] ^ Td2[(s2 >> 16) & 0xff] ^ Td3[(s1 >> 24)] ^ rk[0];
crypto/openssl/crypto/aes/aes_x86core.c
848
t[1] = Td0[(s1) & 0xff] ^ Td1[(s0 >> 8) & 0xff] ^ Td2[(s3 >> 16) & 0xff] ^ Td3[(s2 >> 24)] ^ rk[1];
crypto/openssl/crypto/aes/aes_x86core.c
849
t[2] = Td0[(s2) & 0xff] ^ Td1[(s1 >> 8) & 0xff] ^ Td2[(s0 >> 16) & 0xff] ^ Td3[(s3 >> 24)] ^ rk[2];
crypto/openssl/crypto/aes/aes_x86core.c
850
t[3] = Td0[(s3) & 0xff] ^ Td1[(s2 >> 8) & 0xff] ^ Td2[(s1 >> 16) & 0xff] ^ Td3[(s0 >> 24)] ^ rk[3];
crypto/openssl/crypto/aes/aes_x86core.c
853
s1 = t[1];
crypto/openssl/crypto/aes/aes_x86core.c
863
*(u32 *)(out + 0) = ((u32)Td4[(s0) & 0xff]) ^ ((u32)Td4[(s3 >> 8) & 0xff] << 8) ^ ((u32)Td4[(s2 >> 16) & 0xff] << 16) ^ ((u32)Td4[(s1 >> 24)] << 24) ^ rk[0];
crypto/openssl/crypto/aes/aes_x86core.c
864
*(u32 *)(out + 4) = ((u32)Td4[(s1) & 0xff]) ^ ((u32)Td4[(s0 >> 8) & 0xff] << 8) ^ ((u32)Td4[(s3 >> 16) & 0xff] << 16) ^ ((u32)Td4[(s2 >> 24)] << 24) ^ rk[1];
crypto/openssl/crypto/aes/aes_x86core.c
865
*(u32 *)(out + 8) = ((u32)Td4[(s2) & 0xff]) ^ ((u32)Td4[(s1 >> 8) & 0xff] << 8) ^ ((u32)Td4[(s0 >> 16) & 0xff] << 16) ^ ((u32)Td4[(s3 >> 24)] << 24) ^ rk[2];
crypto/openssl/crypto/aes/aes_x86core.c
866
*(u32 *)(out + 12) = ((u32)Td4[(s3) & 0xff]) ^ ((u32)Td4[(s2 >> 8) & 0xff] << 8) ^ ((u32)Td4[(s1 >> 16) & 0xff] << 16) ^ ((u32)Td4[(s0 >> 24)] << 24) ^ rk[3];
crypto/openssl/crypto/aria/aria.c
608
uint32_t s0, s1, s2, s3;
crypto/openssl/crypto/aria/aria.c
645
s1 = reg1;
crypto/openssl/crypto/aria/aria.c
664
rk_tail->u[1] = s1;
crypto/openssl/crypto/camellia/camellia.c
290
register u32 s0, s1, s2, s3;
crypto/openssl/crypto/camellia/camellia.c
293
k[1] = s1 = GETU32(rawKey + 4);
crypto/openssl/crypto/camellia/camellia.c
299
k[9] = s1 = GETU32(rawKey + 20);
crypto/openssl/crypto/camellia/camellia.c
302
k[11] = s3 = ~s1;
crypto/openssl/crypto/camellia/camellia.c
307
s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3];
crypto/openssl/crypto/camellia/camellia.c
311
Camellia_Feistel(s0, s1, s2, s3, SIGMA + 0);
crypto/openssl/crypto/camellia/camellia.c
312
Camellia_Feistel(s2, s3, s0, s1, SIGMA + 2);
crypto/openssl/crypto/camellia/camellia.c
314
s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3];
crypto/openssl/crypto/camellia/camellia.c
315
Camellia_Feistel(s0, s1, s2, s3, SIGMA + 4);
crypto/openssl/crypto/camellia/camellia.c
316
Camellia_Feistel(s2, s3, s0, s1, SIGMA + 6);
crypto/openssl/crypto/camellia/camellia.c
320
k[4] = s0, k[5] = s1, k[6] = s2, k[7] = s3;
crypto/openssl/crypto/camellia/camellia.c
321
RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 15 */
crypto/openssl/crypto/camellia/camellia.c
322
k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3;
crypto/openssl/crypto/camellia/camellia.c
323
RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 30 */
crypto/openssl/crypto/camellia/camellia.c
324
k[16] = s0, k[17] = s1, k[18] = s2, k[19] = s3;
crypto/openssl/crypto/camellia/camellia.c
325
RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 45 */
crypto/openssl/crypto/camellia/camellia.c
326
k[24] = s0, k[25] = s1;
crypto/openssl/crypto/camellia/camellia.c
327
RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 60 */
crypto/openssl/crypto/camellia/camellia.c
328
k[28] = s0, k[29] = s1, k[30] = s2, k[31] = s3;
crypto/openssl/crypto/camellia/camellia.c
329
RotLeft128(s1, s2, s3, s0, 2); /* KA <<< 94 */
crypto/openssl/crypto/camellia/camellia.c
330
k[40] = s1, k[41] = s2, k[42] = s3, k[43] = s0;
crypto/openssl/crypto/camellia/camellia.c
331
RotLeft128(s1, s2, s3, s0, 17); /* KA <<<111 */
crypto/openssl/crypto/camellia/camellia.c
332
k[48] = s1, k[49] = s2, k[50] = s3, k[51] = s0;
crypto/openssl/crypto/camellia/camellia.c
334
s0 = k[0], s1 = k[1], s2 = k[2], s3 = k[3];
crypto/openssl/crypto/camellia/camellia.c
335
RotLeft128(s0, s1, s2, s3, 15); /* KL <<< 15 */
crypto/openssl/crypto/camellia/camellia.c
336
k[8] = s0, k[9] = s1, k[10] = s2, k[11] = s3;
crypto/openssl/crypto/camellia/camellia.c
337
RotLeft128(s0, s1, s2, s3, 30); /* KL <<< 45 */
crypto/openssl/crypto/camellia/camellia.c
338
k[20] = s0, k[21] = s1, k[22] = s2, k[23] = s3;
crypto/openssl/crypto/camellia/camellia.c
339
RotLeft128(s0, s1, s2, s3, 15); /* KL <<< 60 */
crypto/openssl/crypto/camellia/camellia.c
341
RotLeft128(s0, s1, s2, s3, 17); /* KL <<< 77 */
crypto/openssl/crypto/camellia/camellia.c
342
k[32] = s0, k[33] = s1, k[34] = s2, k[35] = s3;
crypto/openssl/crypto/camellia/camellia.c
343
RotLeft128(s0, s1, s2, s3, 17); /* KL <<< 94 */
crypto/openssl/crypto/camellia/camellia.c
344
k[36] = s0, k[37] = s1, k[38] = s2, k[39] = s3;
crypto/openssl/crypto/camellia/camellia.c
345
RotLeft128(s0, s1, s2, s3, 17); /* KL <<<111 */
crypto/openssl/crypto/camellia/camellia.c
346
k[44] = s0, k[45] = s1, k[46] = s2, k[47] = s3;
crypto/openssl/crypto/camellia/camellia.c
350
k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3;
crypto/openssl/crypto/camellia/camellia.c
351
s0 ^= k[8], s1 ^= k[9], s2 ^= k[10], s3 ^= k[11];
crypto/openssl/crypto/camellia/camellia.c
352
Camellia_Feistel(s0, s1, s2, s3, (SIGMA + 8));
crypto/openssl/crypto/camellia/camellia.c
353
Camellia_Feistel(s2, s3, s0, s1, (SIGMA + 10));
crypto/openssl/crypto/camellia/camellia.c
355
k[4] = s0, k[5] = s1, k[6] = s2, k[7] = s3;
crypto/openssl/crypto/camellia/camellia.c
356
RotLeft128(s0, s1, s2, s3, 30); /* KB <<< 30 */
crypto/openssl/crypto/camellia/camellia.c
357
k[20] = s0, k[21] = s1, k[22] = s2, k[23] = s3;
crypto/openssl/crypto/camellia/camellia.c
358
RotLeft128(s0, s1, s2, s3, 30); /* KB <<< 60 */
crypto/openssl/crypto/camellia/camellia.c
359
k[40] = s0, k[41] = s1, k[42] = s2, k[43] = s3;
crypto/openssl/crypto/camellia/camellia.c
360
RotLeft128(s1, s2, s3, s0, 19); /* KB <<<111 */
crypto/openssl/crypto/camellia/camellia.c
361
k[64] = s1, k[65] = s2, k[66] = s3, k[67] = s0;
crypto/openssl/crypto/camellia/camellia.c
363
s0 = k[8], s1 = k[9], s2 = k[10], s3 = k[11];
crypto/openssl/crypto/camellia/camellia.c
364
RotLeft128(s0, s1, s2, s3, 15); /* KR <<< 15 */
crypto/openssl/crypto/camellia/camellia.c
365
k[8] = s0, k[9] = s1, k[10] = s2, k[11] = s3;
crypto/openssl/crypto/camellia/camellia.c
366
RotLeft128(s0, s1, s2, s3, 15); /* KR <<< 30 */
crypto/openssl/crypto/camellia/camellia.c
367
k[16] = s0, k[17] = s1, k[18] = s2, k[19] = s3;
crypto/openssl/crypto/camellia/camellia.c
368
RotLeft128(s0, s1, s2, s3, 30); /* KR <<< 60 */
crypto/openssl/crypto/camellia/camellia.c
369
k[36] = s0, k[37] = s1, k[38] = s2, k[39] = s3;
crypto/openssl/crypto/camellia/camellia.c
370
RotLeft128(s1, s2, s3, s0, 2); /* KR <<< 94 */
crypto/openssl/crypto/camellia/camellia.c
371
k[52] = s1, k[53] = s2, k[54] = s3, k[55] = s0;
crypto/openssl/crypto/camellia/camellia.c
373
s0 = k[12], s1 = k[13], s2 = k[14], s3 = k[15];
crypto/openssl/crypto/camellia/camellia.c
374
RotLeft128(s0, s1, s2, s3, 15); /* KA <<< 15 */
crypto/openssl/crypto/camellia/camellia.c
375
k[12] = s0, k[13] = s1, k[14] = s2, k[15] = s3;
crypto/openssl/crypto/camellia/camellia.c
376
RotLeft128(s0, s1, s2, s3, 30); /* KA <<< 45 */
crypto/openssl/crypto/camellia/camellia.c
377
k[28] = s0, k[29] = s1, k[30] = s2, k[31] = s3;
crypto/openssl/crypto/camellia/camellia.c
379
k[48] = s1, k[49] = s2, k[50] = s3, k[51] = s0;
crypto/openssl/crypto/camellia/camellia.c
380
RotLeft128(s1, s2, s3, s0, 17); /* KA <<< 94 */
crypto/openssl/crypto/camellia/camellia.c
381
k[56] = s1, k[57] = s2, k[58] = s3, k[59] = s0;
crypto/openssl/crypto/camellia/camellia.c
383
s0 = k[0], s1 = k[1], s2 = k[2], s3 = k[3];
crypto/openssl/crypto/camellia/camellia.c
384
RotLeft128(s1, s2, s3, s0, 13); /* KL <<< 45 */
crypto/openssl/crypto/camellia/camellia.c
385
k[24] = s1, k[25] = s2, k[26] = s3, k[27] = s0;
crypto/openssl/crypto/camellia/camellia.c
386
RotLeft128(s1, s2, s3, s0, 15); /* KL <<< 60 */
crypto/openssl/crypto/camellia/camellia.c
387
k[32] = s1, k[33] = s2, k[34] = s3, k[35] = s0;
crypto/openssl/crypto/camellia/camellia.c
388
RotLeft128(s1, s2, s3, s0, 17); /* KL <<< 77 */
crypto/openssl/crypto/camellia/camellia.c
389
k[44] = s1, k[45] = s2, k[46] = s3, k[47] = s0;
crypto/openssl/crypto/camellia/camellia.c
390
RotLeft128(s2, s3, s0, s1, 2); /* KL <<<111 */
crypto/openssl/crypto/camellia/camellia.c
391
k[60] = s2, k[61] = s3, k[62] = s0, k[63] = s1;
crypto/openssl/crypto/camellia/camellia.c
409
register u32 s0, s1, s2, s3;
crypto/openssl/crypto/camellia/camellia.c
413
s1 = GETU32(plaintext + 4) ^ k[1];
crypto/openssl/crypto/camellia/camellia.c
420
Camellia_Feistel(s0, s1, s2, s3, k + 0);
crypto/openssl/crypto/camellia/camellia.c
421
Camellia_Feistel(s2, s3, s0, s1, k + 2);
crypto/openssl/crypto/camellia/camellia.c
422
Camellia_Feistel(s0, s1, s2, s3, k + 4);
crypto/openssl/crypto/camellia/camellia.c
423
Camellia_Feistel(s2, s3, s0, s1, k + 6);
crypto/openssl/crypto/camellia/camellia.c
424
Camellia_Feistel(s0, s1, s2, s3, k + 8);
crypto/openssl/crypto/camellia/camellia.c
425
Camellia_Feistel(s2, s3, s0, s1, k + 10);
crypto/openssl/crypto/camellia/camellia.c
436
s1 ^= LeftRotate(s0 & k[0], 1);
crypto/openssl/crypto/camellia/camellia.c
438
s0 ^= s1 | k[1];
crypto/openssl/crypto/camellia/camellia.c
443
s2 ^= k[0], s3 ^= k[1], s0 ^= k[2], s1 ^= k[3];
crypto/openssl/crypto/camellia/camellia.c
448
PUTU32(ciphertext + 12, s1);
crypto/openssl/crypto/camellia/camellia.c
462
u32 s0, s1, s2, s3;
crypto/openssl/crypto/camellia/camellia.c
466
s1 = GETU32(ciphertext + 4) ^ k[1];
crypto/openssl/crypto/camellia/camellia.c
473
Camellia_Feistel(s0, s1, s2, s3, k + 10);
crypto/openssl/crypto/camellia/camellia.c
474
Camellia_Feistel(s2, s3, s0, s1, k + 8);
crypto/openssl/crypto/camellia/camellia.c
475
Camellia_Feistel(s0, s1, s2, s3, k + 6);
crypto/openssl/crypto/camellia/camellia.c
476
Camellia_Feistel(s2, s3, s0, s1, k + 4);
crypto/openssl/crypto/camellia/camellia.c
477
Camellia_Feistel(s0, s1, s2, s3, k + 2);
crypto/openssl/crypto/camellia/camellia.c
478
Camellia_Feistel(s2, s3, s0, s1, k + 0);
crypto/openssl/crypto/camellia/camellia.c
489
s1 ^= LeftRotate(s0 & k[2], 1);
crypto/openssl/crypto/camellia/camellia.c
491
s0 ^= s1 | k[3];
crypto/openssl/crypto/camellia/camellia.c
496
s2 ^= k[0], s3 ^= k[1], s0 ^= k[2], s1 ^= k[3];
crypto/openssl/crypto/camellia/camellia.c
501
PUTU32(plaintext + 12, s1);
crypto/openssl/crypto/ec/curve25519.c
4777
int64_t s1 = kBottom21Bits & (load_4(s + 2) >> 5);
crypto/openssl/crypto/ec/curve25519.c
4933
s1 += s13 * 666643;
crypto/openssl/crypto/ec/curve25519.c
4942
s1 += s12 * 470296;
crypto/openssl/crypto/ec/curve25519.c
4950
s1 += carry0;
crypto/openssl/crypto/ec/curve25519.c
4968
carry1 = (s1 + (1 << 20)) >> 21;
crypto/openssl/crypto/ec/curve25519.c
4970
s1 -= carry1 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
4988
s1 += s12 * 470296;
crypto/openssl/crypto/ec/curve25519.c
4996
s1 += carry0;
crypto/openssl/crypto/ec/curve25519.c
4998
carry1 = s1 >> 21;
crypto/openssl/crypto/ec/curve25519.c
5000
s1 -= carry1 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5033
s1 += s12 * 470296;
crypto/openssl/crypto/ec/curve25519.c
5041
s1 += carry0;
crypto/openssl/crypto/ec/curve25519.c
5043
carry1 = s1 >> 21;
crypto/openssl/crypto/ec/curve25519.c
5045
s1 -= carry1 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5076
s[2] = (uint8_t)((s0 >> 16) | (s1 << 5));
crypto/openssl/crypto/ec/curve25519.c
5077
s[3] = (uint8_t)(s1 >> 3);
crypto/openssl/crypto/ec/curve25519.c
5078
s[4] = (uint8_t)(s1 >> 11);
crypto/openssl/crypto/ec/curve25519.c
5079
s[5] = (uint8_t)((s1 >> 19) | (s2 << 2));
crypto/openssl/crypto/ec/curve25519.c
5158
int64_t s1;
crypto/openssl/crypto/ec/curve25519.c
5206
s1 = c1 + a0 * b1 + a1 * b0;
crypto/openssl/crypto/ec/curve25519.c
5231
s1 += carry0;
crypto/openssl/crypto/ec/curve25519.c
5267
carry1 = (s1 + (1 << 20)) >> 21;
crypto/openssl/crypto/ec/curve25519.c
5269
s1 -= carry1 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5416
s1 += s13 * 666643;
crypto/openssl/crypto/ec/curve25519.c
5425
s1 += s12 * 470296;
crypto/openssl/crypto/ec/curve25519.c
5433
s1 += carry0;
crypto/openssl/crypto/ec/curve25519.c
5451
carry1 = (s1 + (1 << 20)) >> 21;
crypto/openssl/crypto/ec/curve25519.c
5453
s1 -= carry1 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5471
s1 += s12 * 470296;
crypto/openssl/crypto/ec/curve25519.c
5479
s1 += carry0;
crypto/openssl/crypto/ec/curve25519.c
5481
carry1 = s1 >> 21;
crypto/openssl/crypto/ec/curve25519.c
5483
s1 -= carry1 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5516
s1 += s12 * 470296;
crypto/openssl/crypto/ec/curve25519.c
5524
s1 += carry0;
crypto/openssl/crypto/ec/curve25519.c
5526
carry1 = s1 >> 21;
crypto/openssl/crypto/ec/curve25519.c
5528
s1 -= carry1 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5559
s[2] = (uint8_t)((s0 >> 16) | (s1 << 5));
crypto/openssl/crypto/ec/curve25519.c
5560
s[3] = (uint8_t)(s1 >> 3);
crypto/openssl/crypto/ec/curve25519.c
5561
s[4] = (uint8_t)(s1 >> 11);
crypto/openssl/crypto/ec/curve25519.c
5562
s[5] = (uint8_t)((s1 >> 19) | (s2 << 2));
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
733
if (!encode_fn(key->s1.poly + i, &pkt))
crypto/openssl/crypto/ml_dsa/ml_dsa_encoders.c
798
if (!decode_fn(key->s1.poly + i, &pkt))
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
115
if (key->s1.poly != NULL)
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
117
if (!vector_alloc(&key->s1, l + 2 * k))
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
120
poly = key->s1.poly;
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
121
key->s1.num_poly = l;
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
150
if (key->s1.poly != NULL) {
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
151
vector_zero(&key->s1);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
154
vector_free(&key->s1);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
214
if (src->s1.poly != NULL) {
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
217
vector_copy(&ret->s1, &src->s1);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
339
vector_copy(&s1_ntt, &key->s1);
crypto/openssl/crypto/ml_dsa/ml_dsa_key.c
445
ret = vector_expand_S(md_ctx, out->shake256_md, params->eta, priv_seed, &out->s1, &out->s2)
crypto/openssl/crypto/ml_dsa/ml_dsa_key.h
54
VECTOR s1; /* private secret of size L with short coefficients (-4..4) or (-2..2) */
crypto/openssl/crypto/ml_dsa/ml_dsa_local.h
66
const uint8_t *seed, VECTOR *s1, VECTOR *s2);
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
244
const uint8_t *seed, VECTOR *s1, VECTOR *s2)
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
248
size_t l = s1->num_poly;
crypto/openssl/crypto/ml_dsa/ml_dsa_sample.c
265
derived_seed, sizeof(derived_seed), &s1->poly[i]))
crypto/openssl/crypto/ml_dsa/ml_dsa_sign.c
126
vector_copy(&s1_ntt, &priv->s1);
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
133
const uint8_t *seed, VECTOR *s1, VECTOR *s2)
crypto/openssl/crypto/ml_dsa/ml_dsa_vector.h
135
return ossl_ml_dsa_vector_expand_S(h_ctx, md, eta, seed, s1, s2);
crypto/openssl/crypto/o_str.c
420
int OPENSSL_strcasecmp(const char *s1, const char *s2)
crypto/openssl/crypto/o_str.c
424
while ((t = ossl_tolower(*s1) - ossl_tolower(*s2++)) == 0)
crypto/openssl/crypto/o_str.c
425
if (*s1++ == '\0')
crypto/openssl/crypto/o_str.c
430
int OPENSSL_strncasecmp(const char *s1, const char *s2, size_t n)
crypto/openssl/crypto/o_str.c
436
if ((t = ossl_tolower(*s1) - ossl_tolower(*s2++)) != 0)
crypto/openssl/crypto/o_str.c
438
else if (*s1++ == '\0')
crypto/openssl/crypto/poly1305/poly1305.c
141
u64 s1;
crypto/openssl/crypto/poly1305/poly1305.c
148
s1 = r1 + (r1 >> 2);
crypto/openssl/crypto/poly1305/poly1305.c
165
d0 = ((u128)h0 * r0) + ((u128)h1 * s1);
crypto/openssl/crypto/poly1305/poly1305.c
166
d1 = ((u128)h0 * r1) + ((u128)h1 * r0) + (h2 * s1);
crypto/openssl/crypto/poly1305/poly1305.c
280
u32 s1, s2, s3;
crypto/openssl/crypto/poly1305/poly1305.c
289
s1 = r1 + (r1 >> 2);
crypto/openssl/crypto/poly1305/poly1305.c
308
d0 = ((u64)h0 * r0) + ((u64)h1 * s3) + ((u64)h2 * s2) + ((u64)h3 * s1);
crypto/openssl/crypto/poly1305/poly1305.c
309
d1 = ((u64)h0 * r1) + ((u64)h1 * r0) + ((u64)h2 * s3) + ((u64)h3 * s2) + (h4 * s1);
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
107
d0 = ((u128)h0 * r0) + ((u128)h1 * s2) + ((u128)h2 * s1);
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
79
u64 s1, s2;
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
88
s1 = st->s[0];
crypto/openssl/crypto/seed/seed.c
394
unsigned int s0, s1, s2, s3, ret;
crypto/openssl/crypto/seed/seed.c
397
s1 = SEED_Sbox[1][(unsigned char)((v) >> 8) & 0xff];
crypto/openssl/crypto/seed/seed.c
401
ret = ((s0 & 0xFC) ^ (s1 & 0xF3) ^ (s2 & 0xCF) ^ (s3 & 0x3F));
crypto/openssl/crypto/seed/seed.c
402
ret |= ((s0 & 0xF3) ^ (s1 & 0xCF) ^ (s2 & 0x3F) ^ (s3 & 0xFC)) << 8;
crypto/openssl/crypto/seed/seed.c
403
ret |= ((s0 & 0xCF) ^ (s1 & 0x3F) ^ (s2 & 0xFC) ^ (s3 & 0xF3)) << 16;
crypto/openssl/crypto/seed/seed.c
404
ret |= ((s0 & 0x3F) ^ (s1 & 0xFC) ^ (s2 & 0xF3) ^ (s3 & 0xCF)) << 24;
crypto/openssl/crypto/sha/sha256.c
219
unsigned MD32_REG_T a, b, c, d, e, f, g, h, s0, s1, T1, T2;
crypto/openssl/crypto/sha/sha256.c
253
s1 = X[(i + 14) & 0x0f];
crypto/openssl/crypto/sha/sha256.c
254
s1 = sigma1(s1);
crypto/openssl/crypto/sha/sha256.c
256
T1 = X[i & 0xf] += s0 + s1 + X[(i + 9) & 0xf];
crypto/openssl/crypto/sha/sha256.c
294
s1 = X[(i + 14) & 0x0f]; \
crypto/openssl/crypto/sha/sha256.c
295
s1 = sigma1(s1); \
crypto/openssl/crypto/sha/sha256.c
296
T1 = X[(i) & 0x0f] += s0 + s1 + X[(i + 9) & 0x0f]; \
crypto/openssl/crypto/sha/sha256.c
307
unsigned MD32_REG_T a, b, c, d, e, f, g, h, s0, s1, T1;
crypto/openssl/crypto/sha/sha512.c
649
SHA_LONG64 a, b, c, d, e, f, g, h, s0, s1, T1, T2;
crypto/openssl/crypto/sha/sha512.c
685
s1 = X[(i + 14) & 0x0f];
crypto/openssl/crypto/sha/sha512.c
686
s1 = sigma1(s1);
crypto/openssl/crypto/sha/sha512.c
688
T1 = X[i & 0xf] += s0 + s1 + X[(i + 9) & 0xf];
crypto/openssl/crypto/sha/sha512.c
727
s1 = X[(j + 14) & 0x0f]; \
crypto/openssl/crypto/sha/sha512.c
728
s1 = sigma1(s1); \
crypto/openssl/crypto/sha/sha512.c
729
T1 = X[(j) & 0x0f] += s0 + s1 + X[(j + 9) & 0x0f]; \
crypto/openssl/crypto/sha/sha512.c
741
SHA_LONG64 a, b, c, d, e, f, g, h, s0, s1, T1;
crypto/openssl/crypto/x509/v3_ncons.c
122
static int ia5ncasecmp(const char *s1, const char *s2, size_t n)
crypto/openssl/crypto/x509/v3_ncons.c
124
for (; n > 0; n--, s1++, s2++) {
crypto/openssl/crypto/x509/v3_ncons.c
125
if (*s1 != *s2) {
crypto/openssl/crypto/x509/v3_ncons.c
126
unsigned char c1 = (unsigned char)*s1, c2 = (unsigned char)*s2;
crypto/openssl/fuzz/bignum.c
33
int s1 = 0, s3 = 0;
crypto/openssl/fuzz/bignum.c
61
s1 = buf[0] & 1;
crypto/openssl/fuzz/bignum.c
66
BN_set_negative(b1, s1);
crypto/openssl/fuzz/bndiv.c
51
int s1 = 0, s2 = 0;
crypto/openssl/fuzz/bndiv.c
67
s1 = buf[0] & 0x40;
crypto/openssl/fuzz/bndiv.c
73
BN_set_negative(b1, s1);
crypto/openssl/include/openssl/crypto.h
149
int OPENSSL_strcasecmp(const char *s1, const char *s2);
crypto/openssl/include/openssl/crypto.h
150
int OPENSSL_strncasecmp(const char *s1, const char *s2, size_t n);
crypto/openssl/ssl/s3_enc.c
23
EVP_MD_CTX *s1;
crypto/openssl/ssl/s3_enc.c
37
s1 = EVP_MD_CTX_new();
crypto/openssl/ssl/s3_enc.c
38
if (md5 == NULL || sha1 == NULL || m5 == NULL || s1 == NULL) {
crypto/openssl/ssl/s3_enc.c
52
if (!EVP_DigestInit_ex(s1, sha1, NULL)
crypto/openssl/ssl/s3_enc.c
53
|| !EVP_DigestUpdate(s1, buf, k)
crypto/openssl/ssl/s3_enc.c
54
|| !EVP_DigestUpdate(s1, s->session->master_key,
crypto/openssl/ssl/s3_enc.c
56
|| !EVP_DigestUpdate(s1, s->s3.server_random, SSL3_RANDOM_SIZE)
crypto/openssl/ssl/s3_enc.c
57
|| !EVP_DigestUpdate(s1, s->s3.client_random, SSL3_RANDOM_SIZE)
crypto/openssl/ssl/s3_enc.c
58
|| !EVP_DigestFinal_ex(s1, smd, NULL)
crypto/openssl/ssl/s3_enc.c
85
EVP_MD_CTX_free(s1);
crypto/openssl/test/acvp_test.c
245
const BIGNUM *r1, *s1;
crypto/openssl/test/acvp_test.c
251
s1 = ECDSA_SIG_get0_s(sign);
crypto/openssl/test/acvp_test.c
252
if (r1 == NULL || s1 == NULL)
crypto/openssl/test/acvp_test.c
256
s1_len = BN_num_bytes(s1);
crypto/openssl/test/acvp_test.c
263
if (BN_bn2binpad(s1, sbuf, s1_len) <= 0)
crypto/openssl/test/acvp_test.c
758
const BIGNUM *r1, *s1;
crypto/openssl/test/acvp_test.c
763
DSA_SIG_get0(sign, &r1, &s1);
crypto/openssl/test/acvp_test.c
764
if (r1 == NULL || s1 == NULL)
crypto/openssl/test/acvp_test.c
768
s1_len = BN_num_bytes(s1);
crypto/openssl/test/acvp_test.c
775
if (BN_bn2binpad(s1, sbuf, s1_len) <= 0)
crypto/openssl/test/testutil/tests.c
211
const char *s1, const char *s2, \
crypto/openssl/test/testutil/tests.c
216
test_fail_message(NULL, file, line, #type, s1, s2, #op, \
crypto/openssl/test/testutil/tests.c
277
const char *s1, const char *s2)
crypto/openssl/test/testutil/tests.c
279
if (s1 == NULL && s2 == NULL)
crypto/openssl/test/testutil/tests.c
281
if (s1 == NULL || s2 == NULL || strcmp(s1, s2) != 0) {
crypto/openssl/test/testutil/tests.c
283
s1, s1 == NULL ? 0 : strlen(s1),
crypto/openssl/test/testutil/tests.c
291
const char *s1, const char *s2)
crypto/openssl/test/testutil/tests.c
293
if ((s1 == NULL) ^ (s2 == NULL))
crypto/openssl/test/testutil/tests.c
295
if (s1 == NULL || strcmp(s1, s2) == 0) {
crypto/openssl/test/testutil/tests.c
297
s1, s1 == NULL ? 0 : strlen(s1),
crypto/openssl/test/testutil/tests.c
305
const char *s1, size_t n1, const char *s2, size_t n2)
crypto/openssl/test/testutil/tests.c
307
if (s1 == NULL && s2 == NULL)
crypto/openssl/test/testutil/tests.c
309
if (n1 != n2 || s1 == NULL || s2 == NULL || strncmp(s1, s2, n1) != 0) {
crypto/openssl/test/testutil/tests.c
311
s1, s1 == NULL ? 0 : OPENSSL_strnlen(s1, n1),
crypto/openssl/test/testutil/tests.c
319
const char *s1, size_t n1, const char *s2, size_t n2)
crypto/openssl/test/testutil/tests.c
321
if ((s1 == NULL) ^ (s2 == NULL))
crypto/openssl/test/testutil/tests.c
323
if (n1 != n2 || s1 == NULL || strncmp(s1, s2, n1) == 0) {
crypto/openssl/test/testutil/tests.c
325
s1, s1 == NULL ? 0 : OPENSSL_strnlen(s1, n1),
crypto/openssl/test/testutil/tests.c
333
const void *s1, size_t n1, const void *s2, size_t n2)
crypto/openssl/test/testutil/tests.c
335
if (s1 == NULL && s2 == NULL)
crypto/openssl/test/testutil/tests.c
337
if (n1 != n2 || s1 == NULL || s2 == NULL || memcmp(s1, s2, n1) != 0) {
crypto/openssl/test/testutil/tests.c
339
s1, n1, s2, n2);
crypto/openssl/test/testutil/tests.c
346
const void *s1, size_t n1, const void *s2, size_t n2)
crypto/openssl/test/testutil/tests.c
348
if ((s1 == NULL) ^ (s2 == NULL))
crypto/openssl/test/testutil/tests.c
352
if (s1 == NULL || memcmp(s1, s2, n1) == 0) {
crypto/openssl/test/testutil/tests.c
354
s1, n1, s2, n2);
crypto/openssl/test/testutil/tests.c
362
const char *s1, const char *s2, \
crypto/openssl/test/testutil/tests.c
367
test_fail_bignum_message(NULL, file, line, "BIGNUM", s1, s2, \
crypto/openssl/test/testutil/tests.c
452
const char *s1, const char *s2, \
crypto/openssl/test/testutil/tests.c
460
test_fail_message(NULL, file, line, "time_t", s1, s2, #op, \
include/rpc/clnt.h
75
int32_t s1;
lib/libc/iconv/bsd_iconv.c
178
const char * const *s1;
lib/libc/iconv/bsd_iconv.c
181
s1 = first;
lib/libc/iconv/bsd_iconv.c
183
return (strcmp(*s1, *s2));
lib/libc/locale/collcmp.c
44
char s1[2], s2[2];
lib/libc/locale/collcmp.c
46
s1[0] = c1;
lib/libc/locale/collcmp.c
47
s1[1] = '\0';
lib/libc/locale/collcmp.c
50
return (strcoll(s1, s2));
lib/libc/locale/collcmp.c
55
wchar_t s1[2], s2[2];
lib/libc/locale/collcmp.c
57
s1[0] = c1;
lib/libc/locale/collcmp.c
58
s1[1] = L'\0';
lib/libc/locale/collcmp.c
61
return (wcscoll(s1, s2));
lib/libc/regex/engine.c
139
#define AT(t, p1, p2, s1, s2) at(m, t, p1, p2, s1, s2)
lib/libc/regex/engine.c
143
#define AT(t, p1, p2, s1, s2) /* nothing */
lib/libc/regex/regcomp.c
1076
wchar_t s1[2], s2[2];
lib/libc/regex/regcomp.c
1078
s1[0] = c1;
lib/libc/regex/regcomp.c
1079
s1[1] = L'\0';
lib/libc/regex/regcomp.c
1082
return (wcscoll(s1, s2));
lib/libc/rpc/clnt_perror.c
164
e.re_lb.s1, e.re_lb.s2);
lib/libc/rpc/rpc_prot.c
258
error->re_lb.s1 = (int32_t)MSG_ACCEPTED;
lib/libc/rpc/rpc_prot.c
280
error->re_lb.s1 = (int32_t)MSG_DENIED;
lib/libc/rpc/rpc_prot.c
311
error->re_lb.s1 = (int32_t)(msg->rm_reply.rp_stat);
lib/libc/stdlib/malloc/jemalloc/include/jemalloc/jemalloc.h
159
# define JEMALLOC_ALLOC_SIZE2(s1, s2)
lib/libc/stdlib/malloc/jemalloc/include/jemalloc/jemalloc.h
189
# define JEMALLOC_ALLOC_SIZE2(s1, s2) JEMALLOC_ATTR(alloc_size(s1, s2))
lib/libc/stdlib/malloc/jemalloc/include/jemalloc/jemalloc.h
192
# define JEMALLOC_ALLOC_SIZE2(s1, s2)
lib/libc/stdlib/malloc/jemalloc/include/jemalloc/jemalloc.h
228
# define JEMALLOC_ALLOC_SIZE2(s1, s2)
lib/libc/string/memcmp.c
41
memcmp(const void *s1, const void *s2, size_t n)
lib/libc/string/memcmp.c
44
const unsigned char *p1 = s1, *p2 = s2;
lib/libc/string/strcasecmp.c
42
strcasecmp_l(const char *s1, const char *s2, locale_t locale)
lib/libc/string/strcasecmp.c
45
*us1 = (const u_char *)s1,
lib/libc/string/strcasecmp.c
55
strcasecmp(const char *s1, const char *s2)
lib/libc/string/strcasecmp.c
57
return strcasecmp_l(s1, s2, __get_locale());
lib/libc/string/strcasecmp.c
61
strncasecmp_l(const char *s1, const char *s2, size_t n, locale_t locale)
lib/libc/string/strcasecmp.c
66
*us1 = (const u_char *)s1,
lib/libc/string/strcasecmp.c
80
strncasecmp(const char *s1, const char *s2, size_t n)
lib/libc/string/strcasecmp.c
82
return strncasecmp_l(s1, s2, n, __get_locale());
lib/libc/string/strcmp.c
41
strcmp(const char *s1, const char *s2)
lib/libc/string/strcmp.c
43
while (*s1 == *s2++)
lib/libc/string/strcmp.c
44
if (*s1++ == '\0')
lib/libc/string/strcmp.c
46
return (*(const unsigned char *)s1 - *(const unsigned char *)(s2 - 1));
lib/libc/string/strcspn.c
43
const char *s1;
lib/libc/string/strcspn.c
64
for(s1 = s; ; s1++) {
lib/libc/string/strcspn.c
65
idx = IDX(*s1);
lib/libc/string/strcspn.c
66
bit = BIT(*s1);
lib/libc/string/strcspn.c
70
return (s1 - s);
lib/libc/string/strncmp.c
35
strncmp(const char *s1, const char *s2, size_t n)
lib/libc/string/strncmp.c
41
if (*s1 != *s2++)
lib/libc/string/strncmp.c
42
return (*(const unsigned char *)s1 -
lib/libc/string/strncmp.c
44
if (*s1++ == '\0')
lib/libc/string/strpbrk.c
38
strpbrk(const char *s1, const char *s2)
lib/libc/string/strpbrk.c
43
while ((c = *s1++) != 0) {
lib/libc/string/strpbrk.c
46
return ((char *)(s1 - 1));
lib/libc/string/strspn.c
43
const char *s1;
lib/libc/string/strspn.c
63
for(s1 = s; ; s1++) {
lib/libc/string/strspn.c
64
idx = IDX(*s1);
lib/libc/string/strspn.c
65
bit = BIT(*s1);
lib/libc/string/strspn.c
69
return (s1 - s);
lib/libc/string/strverscmp.c
10
strverscmp(const char *s1, const char *s2)
lib/libc/string/strverscmp.c
15
const unsigned char *u1 = __DECONST(const unsigned char *, s1);
lib/libc/string/strverscmp.c
22
if (s1 == s2)
lib/libc/string/wcscasecmp.c
33
wcscasecmp(const wchar_t *s1, const wchar_t *s2)
lib/libc/string/wcscasecmp.c
37
for (; *s1; s1++, s2++) {
lib/libc/string/wcscasecmp.c
38
c1 = towlower(*s1);
lib/libc/string/wcscat.c
41
__ssp_real(wcscat)(wchar_t * __restrict s1, const wchar_t * __restrict s2)
lib/libc/string/wcscat.c
45
cp = s1;
lib/libc/string/wcscat.c
51
return (s1);
lib/libc/string/wcscmp.c
44
wcscmp(const wchar_t *s1, const wchar_t *s2)
lib/libc/string/wcscmp.c
47
while (*s1 == *s2++)
lib/libc/string/wcscmp.c
48
if (*s1++ == '\0')
lib/libc/string/wcscmp.c
51
return (*(const unsigned int *)s1 - *(const unsigned int *)--s2);
lib/libc/string/wcscpy.c
41
__ssp_real(wcscpy)(wchar_t * __restrict s1, const wchar_t * __restrict s2)
lib/libc/string/wcscpy.c
45
cp = s1;
lib/libc/string/wcscpy.c
49
return (s1);
lib/libc/string/wcsncasecmp.c
33
wcsncasecmp(const wchar_t *s1, const wchar_t *s2, size_t n)
lib/libc/string/wcsncasecmp.c
39
for (; *s1; s1++, s2++) {
lib/libc/string/wcsncasecmp.c
40
c1 = towlower(*s1);
lib/libc/string/wcsncat.c
41
__ssp_real(wcsncat)(wchar_t * __restrict s1, const wchar_t * __restrict s2,
lib/libc/string/wcsncat.c
48
p = s1;
lib/libc/string/wcsncat.c
58
return s1;
lib/libc/string/wcsncmp.c
37
wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n)
lib/libc/string/wcsncmp.c
43
if (*s1 != *s2++) {
lib/libc/string/wcsncmp.c
45
return (*(const unsigned int *)s1 -
lib/libc/string/wcsncmp.c
48
if (*s1++ == 0)
lib/libc/string/wmemcmp.c
40
wmemcmp(const wchar_t *s1, const wchar_t *s2, size_t n)
lib/libc/string/wmemcmp.c
45
if (*s1 != *s2) {
lib/libc/string/wmemcmp.c
47
return *s1 > *s2 ? 1 : -1;
lib/libc/string/wmemcmp.c
49
s1++;
lib/libc/tests/string/strxfrm_test.c
36
char s1[8];
lib/libc/tests/string/strxfrm_test.c
40
strxfrm(s1, s2, 0x8);
lib/libc/tests/string/wcsnlen_test.c
60
wchar_t *s1;
lib/libc/tests/string/wcsnlen_test.c
67
s1 = makebuf(bufsize * sizeof(wchar_t), i);
lib/libc/tests/string/wcsnlen_test.c
68
wmemcpy(s1, s, bufsize <= size ? bufsize : size);
lib/libc/tests/string/wcsnlen_test.c
70
ATF_CHECK(wcsnlen(s1, bufsize) == len);
lib/libiconv_modules/EUC/citrus_euc.c
198
char *s0, *s1 = NULL;
lib/libiconv_modules/EUC/citrus_euc.c
244
s1 = &psenc->ch[1];
lib/libiconv_modules/EUC/citrus_euc.c
249
s1 = &psenc->ch[0];
lib/libiconv_modules/EUC/citrus_euc.c
256
wchar = (wchar << 8) | (*s1++ & 0xff);
lib/libiconv_modules/GBK2K/citrus_gbk2k.c
155
char *s0, *s1;
lib/libiconv_modules/GBK2K/citrus_gbk2k.c
222
s1 = &psenc->ch[0];
lib/libiconv_modules/GBK2K/citrus_gbk2k.c
225
wc = (wc << 8) | (*s1++ & 0xff);
lib/libproc/proc_sym.c
109
const char *s1, *s2;
lib/libproc/proc_sym.c
133
s1 = elf_strptr(thunk->e, thunk->symtab->stridx, sym1.st_name);
lib/libproc/proc_sym.c
135
if (s1 != NULL && s2 != NULL) {
lib/libproc/proc_sym.c
137
if (*s1 == '$')
lib/libproc/proc_sym.c
143
for (; *s1 == '_' && *s2 == '_'; s1++, s2++)
lib/libproc/proc_sym.c
145
if (*s1 == '_')
lib/libsecureboot/brf.c
100
eqstr(const char *s1, const char *s2)
lib/libsecureboot/brf.c
102
return (eqstr_chunk(s1, strlen(s1), s2, strlen(s2)));
lib/libsecureboot/brf.c
78
eqstr_chunk(const char *s1, size_t s1_len, const char *s2, size_t s2_len)
lib/libsecureboot/brf.c
82
lim1 = s1 + s1_len;
lib/libsecureboot/brf.c
87
c1 = next_char(&s1, lim1);
lib/libutil/humanize_number.c
167
s1 = (int)quotient + ((remainder * 10 + divisor / 2) /
lib/libutil/humanize_number.c
171
sign * s1, localeconv()->decimal_point, s2,
lib/libutil/humanize_number.c
52
int i, r, remainder, s1, s2, sign;
lib/msun/ld128/e_lgammal_r.c
135
s1 = 1.23221687850916448903914170805852253e-01L,
lib/msun/ld128/e_lgammal_r.c
298
p = y*(s0+y*(s1+y*(s2+y*(s3+y*(s4+y*(s5+y*(s6+y*(s7+y*(s8+
lib/msun/ld80/e_lgammal_r.c
330
p = y*(s0+y*(s1+y*(s2+y*(s3+y*(s4+y*(s5+y*s6))))));
lib/msun/src/e_lgamma_r.c
134
s1 = 2.14982415960608852501e-01, /* 0x3FCB848B, 0x36E20878 */
lib/msun/src/e_lgamma_r.c
271
p = y*(s0+y*(s1+y*(s2+y*(s3+y*(s4+y*(s5+y*s6))))));
lib/msun/src/e_lgammaf_r.c
188
p = y*(s0+y*(s1+y*(s2+y*s3)));
lib/msun/src/e_lgammaf_r.c
67
s1 = 2.69987404e-01, /* 0x3e8a3bca */
lib/msun/src/e_sqrt.c
103
u_int32_t r,t1,s1,ix1,q1;
lib/msun/src/e_sqrt.c
141
q = q1 = s0 = s1 = 0; /* [q,q1] = sqrt(x) */
lib/msun/src/e_sqrt.c
158
t1 = s1+r;
lib/msun/src/e_sqrt.c
161
s1 = t1+r;
lib/msun/src/e_sqrt.c
162
if(((t1&sign)==sign)&&(s1&sign)==0) s0 += 1;
lib/msun/src/s_atan.c
109
s1 = z*(aT[0]+w*(aT[2]+w*(aT[4]+w*(aT[6]+w*(aT[8]+w*aT[10])))));
lib/msun/src/s_atan.c
111
if (id<0) return x - x*(s1+s2);
lib/msun/src/s_atan.c
113
z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
lib/msun/src/s_atan.c
72
double w,s1,s2,z;
lib/msun/src/s_atanf.c
48
float w,s1,s2,z;
lib/msun/src/s_atanf.c
82
s1 = z*(aT[0]+w*(aT[2]+w*aT[4]));
lib/msun/src/s_atanf.c
84
if (id<0) return x - x*(s1+s2);
lib/msun/src/s_atanf.c
86
z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
lib/msun/src/s_atanl.c
32
long double w,s1,s2,z;
lib/msun/src/s_atanl.c
74
s1 = z*T_even(w);
lib/msun/src/s_atanl.c
76
if (id<0) return x - x*(s1+s2);
lib/msun/src/s_atanl.c
78
z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
libexec/rbootd/defs.h
71
#define STREQN(s1,s2) ((*s1 == *s2) && (strcmp(s1,s2) == 0))
libexec/rbootd/defs.h
72
#define STRNEQN(s1,s2,n) ((*s1 == *s2) && (strncmp(s1,s2,n) == 0))
libexec/rpc.rstatd/rstat_proc.c
127
return(&stats_all.s1);
libexec/rpc.rstatd/rstat_proc.c
198
stats_all.s1.cp_time[i] = bsd_cp_time[cp_time_xlat[i]];
libexec/rpc.rstatd/rstat_proc.c
219
fprintf(stderr, "%d %d %d %d\n", stats_all.s1.cp_time[0],
libexec/rpc.rstatd/rstat_proc.c
220
stats_all.s1.cp_time[1], stats_all.s1.cp_time[2], stats_all.s1.cp_time[3]);
libexec/rpc.rstatd/rstat_proc.c
232
FETCH_CNT(stats_all.s1.v_pgpgin, vm.v_vnodepgsin);
libexec/rpc.rstatd/rstat_proc.c
233
FETCH_CNT(stats_all.s1.v_pgpgout, vm.v_vnodepgsout);
libexec/rpc.rstatd/rstat_proc.c
234
FETCH_CNT(stats_all.s1.v_pswpin, vm.v_swappgsin);
libexec/rpc.rstatd/rstat_proc.c
235
FETCH_CNT(stats_all.s1.v_pswpout, vm.v_swappgsout);
libexec/rpc.rstatd/rstat_proc.c
236
FETCH_CNT(stats_all.s1.v_intr, sys.v_intr);
libexec/rpc.rstatd/rstat_proc.c
239
stats_all.s1.v_intr -= hz*(tm.tv_sec - btm.tv_sec) +
libexec/rpc.rstatd/rstat_proc.c
243
updatexfers(RSTAT_DK_NDRIVE, stats_all.s1.dk_xfer);
libexec/rpc.rstatd/rstat_proc.c
256
stats_all.s1.if_ipackets = 0;
libexec/rpc.rstatd/rstat_proc.c
257
stats_all.s1.if_opackets = 0;
libexec/rpc.rstatd/rstat_proc.c
258
stats_all.s1.if_ierrors = 0;
libexec/rpc.rstatd/rstat_proc.c
259
stats_all.s1.if_oerrors = 0;
libexec/rpc.rstatd/rstat_proc.c
260
stats_all.s1.if_collisions = 0;
libexec/rpc.rstatd/rstat_proc.c
275
stats_all.s1.if_ipackets += ifmd.ifmd_data.ifi_ipackets;
libexec/rpc.rstatd/rstat_proc.c
276
stats_all.s1.if_opackets += ifmd.ifmd_data.ifi_opackets;
libexec/rpc.rstatd/rstat_proc.c
277
stats_all.s1.if_ierrors += ifmd.ifmd_data.ifi_ierrors;
libexec/rpc.rstatd/rstat_proc.c
278
stats_all.s1.if_oerrors += ifmd.ifmd_data.ifi_oerrors;
libexec/rpc.rstatd/rstat_proc.c
279
stats_all.s1.if_collisions += ifmd.ifmd_data.ifi_collisions;
libexec/rpc.rstatd/rstat_proc.c
76
struct stats s1;
sbin/geom/core/geom.c
610
char *s1, *s2;
sbin/geom/core/geom.c
612
s1 = class_name;
sbin/geom/core/geom.c
613
for (; *s1 != '\0'; s1++)
sbin/geom/core/geom.c
614
*s1 = tolower(*s1);
sbin/geom/core/geom.c
618
s1 = gclass_name;
sbin/geom/core/geom.c
621
*s1++ = toupper(*s2);
sbin/geom/core/geom.c
622
*s1 = '\0';
sbin/ipf/ipscan/ipscan_y.y
406
makepair(char *s1, char *s2)
sbin/ipf/ipscan/ipscan_y.y
411
a[0] = s1;
sbin/ipf/libipf/save_v1trap.c
51
snmpv1_opts_t *s1 = ctx1, *s2 = ctx2;
sbin/ipf/libipf/save_v1trap.c
53
if (s1->v6 != s2->v6)
sbin/ipf/libipf/save_v1trap.c
56
if (strcmp(s1->community, s2->community))
sbin/ipf/libipf/save_v1trap.c
60
if (s1->v6 == 1) {
sbin/ipf/libipf/save_v1trap.c
61
if (memcmp(&s1->sin6, &s2->sin6, sizeof(s1->sin6)))
sbin/ipf/libipf/save_v1trap.c
66
if (memcmp(&s1->sin, &s2->sin, sizeof(s1->sin)))
sbin/ipf/libipf/save_v2trap.c
55
snmpv2_opts_t *s1 = ctx1, *s2 = ctx2;
sbin/ipf/libipf/save_v2trap.c
57
if (s1->v6 != s2->v6)
sbin/ipf/libipf/save_v2trap.c
60
if (strcmp(s1->community, s2->community))
sbin/ipf/libipf/save_v2trap.c
64
if (s1->v6 == 1) {
sbin/ipf/libipf/save_v2trap.c
65
if (memcmp(&s1->sin6, &s2->sin6, sizeof(s1->sin6)))
sbin/ipf/libipf/save_v2trap.c
70
if (memcmp(&s1->sin, &s2->sin, sizeof(s1->sin)))
sbin/ipfw/ipfw2.c
1030
char *s1;
sbin/ipfw/ipfw2.c
1043
for (s1 = s; *s1 && (isalnum(*s1) || *s1 == '\\' ||
sbin/ipfw/ipfw2.c
1044
*s1 == '_' || *s1 == '.') ; s1++)
sbin/ipfw/ipfw2.c
1045
if (*s1 == '\\' && s1[1] != '\0')
sbin/ipfw/ipfw2.c
1046
s1++;
sbin/ipfw/ipfw2.c
1048
buf = safe_calloc(s1 - s + 1, 1);
sbin/ipfw/ipfw2.c
1053
for (p = s, i = 0; p != s1 ; p++)
sbin/ipfw/ipfw2.c
1062
*end = s1;
sbin/ipfw/ipfw2.c
1075
*end = s1;
sbin/mount/mount.c
711
catopt(char *s0, const char *s1)
sbin/mount/mount.c
715
if (s1 == NULL || *s1 == '\0')
sbin/mount/mount.c
719
if (asprintf(&cp, "%s,%s", s0, s1) == -1)
sbin/mount/mount.c
722
cp = strdup(s1);
sbin/newfs_msdos/mkfs_msdos.c
818
const char *s1, *s2;
sbin/newfs_msdos/mkfs_msdos.c
827
s1 = fname;
sbin/newfs_msdos/mkfs_msdos.c
828
if (!strncmp(s1, _PATH_DEV, len))
sbin/newfs_msdos/mkfs_msdos.c
829
s1 += len;
sbin/newfs_msdos/mkfs_msdos.c
830
r = S_ISCHR(mode) && s1 != fname && *s1 == 'r';
sbin/newfs_msdos/mkfs_msdos.c
835
if ((r && s2 != mp->f_mntfromname && !strcmp(s1 + 1, s2)) ||
sbin/newfs_msdos/mkfs_msdos.c
836
!strcmp(s1, s2)) {
stand/i386/boot2/boot2.c
137
strcmp(const char *s1, const char *s2)
stand/i386/boot2/boot2.c
140
for (; *s1 == *s2 && *s1; s1++, s2++);
stand/i386/boot2/boot2.c
141
return ((unsigned char)*s1 - (unsigned char)*s2);
stand/libsa/smbios.c
679
smbios_match_str(const char* s1, const char* s2)
stand/libsa/smbios.c
681
return (s1 == NULL || (s2 != NULL && !strcmp(s1, s2)));
stand/libsa/strcasecmp.c
34
strcasecmp(const char *s1, const char *s2)
stand/libsa/strcasecmp.c
37
*us1 = (const u_char *)s1,
stand/libsa/strcasecmp.c
47
strncasecmp(const char *s1, const char *s2, size_t n)
stand/libsa/strcasecmp.c
51
*us1 = (const u_char *)s1,
stand/powerpc/boot1.chrp/boot1.c
473
strcmp(const char *s1, const char *s2)
stand/powerpc/boot1.chrp/boot1.c
475
for (; *s1 == *s2 && *s1; s1++, s2++)
stand/powerpc/boot1.chrp/boot1.c
477
return ((u_char)*s1 - (u_char)*s2);
sys/cddl/dev/dtrace/amd64/dtrace_isa.c
276
size_t s1, s2;
sys/cddl/dev/dtrace/amd64/dtrace_isa.c
303
s1 = sizeof (struct xframe) + 2 * sizeof (long);
sys/cddl/dev/dtrace/amd64/dtrace_isa.c
304
s2 = s1 + sizeof (siginfo_t);
sys/cddl/dev/dtrace/amd64/dtrace_isa.c
328
if (oldcontext == sp + s1 || oldcontext == sp + s2) {
sys/cddl/dev/dtrace/i386/dtrace_isa.c
111
size_t s1, s2;
sys/cddl/dev/dtrace/i386/dtrace_isa.c
123
s1 = sizeof (struct frame) + 2 * sizeof (long);
sys/cddl/dev/dtrace/i386/dtrace_isa.c
124
s2 = s1 + sizeof (siginfo_t);
sys/cddl/dev/dtrace/i386/dtrace_isa.c
126
s1 = sizeof (struct frame32) + 3 * sizeof (int);
sys/cddl/dev/dtrace/i386/dtrace_isa.c
127
s2 = s1 + sizeof (siginfo32_t);
sys/cddl/dev/dtrace/i386/dtrace_isa.c
155
if (oldcontext == sp + s1 || oldcontext == sp + s2) {
sys/cddl/dev/dtrace/i386/dtrace_isa.c
321
size_t s1, s2;
sys/cddl/dev/dtrace/i386/dtrace_isa.c
350
s1 = sizeof (struct frame) + 2 * sizeof (long);
sys/cddl/dev/dtrace/i386/dtrace_isa.c
351
s2 = s1 + sizeof (siginfo_t);
sys/cddl/dev/dtrace/i386/dtrace_isa.c
353
s1 = sizeof (struct frame32) + 3 * sizeof (int);
sys/cddl/dev/dtrace/i386/dtrace_isa.c
354
s2 = s1 + sizeof (siginfo32_t);
sys/cddl/dev/dtrace/i386/dtrace_isa.c
379
if (oldcontext == sp + s1 || oldcontext == sp + s2) {
sys/cddl/dev/dtrace/powerpc/dtrace_isa.c
328
size_t s1, s2;
sys/cddl/dev/dtrace/powerpc/dtrace_isa.c
354
s1 = sizeof (struct xframe) + 2 * sizeof (long);
sys/cddl/dev/dtrace/powerpc/dtrace_isa.c
355
s2 = s1 + sizeof (siginfo_t);
sys/cddl/dev/dtrace/powerpc/dtrace_isa.c
384
if (oldcontext == sp + s1 || oldcontext == sp + s2) {
sys/compat/linuxkpi/common/include/linux/sysfs.h
489
sysfs_streq(const char *s1, const char *s2)
sys/compat/linuxkpi/common/include/linux/sysfs.h
493
l1 = strlen(s1);
sys/compat/linuxkpi/common/include/linux/sysfs.h
496
if (l1 != 0 && s1[l1-1] == '\n')
sys/compat/linuxkpi/common/include/linux/sysfs.h
501
return (l1 == l2 && strncmp(s1, s2, l1) == 0);
sys/crypto/des/des_locl.h
173
unsigned int u1,u2,s1,s2; \
sys/crypto/des/des_locl.h
181
s1=(int)(u>>16L); \
sys/crypto/des/des_locl.h
183
s1&=0xfc; \
sys/crypto/des/des_locl.h
185
LL^= *(const DES_LONG *)(des_SP+0x400+s1); \
sys/crypto/des/des_locl.h
192
s1=(int)(t>>16L); \
sys/crypto/des/des_locl.h
194
s1&=0xfc; \
sys/crypto/des/des_locl.h
196
LL^= *(const DES_LONG *)(des_SP+0x400+s1); \
sys/crypto/des/des_locl.h
203
s1=(int)(t>>16L); \
sys/crypto/des/des_locl.h
205
s1&=0xfc; \
sys/crypto/des/des_locl.h
207
LL^= *(const DES_LONG *)(des_SP+0x500+s1); \
sys/crypto/des/des_locl.h
258
unsigned int u1,u2,s1,s2; \
sys/crypto/des/des_locl.h
267
s1=(int)u>>16L; \
sys/crypto/des/des_locl.h
269
s1&=0x3f; \
sys/crypto/des/des_locl.h
271
LL^=des_SPtrans[4][s1]; \
sys/crypto/des/des_locl.h
278
s1=(int)t>>16; \
sys/crypto/des/des_locl.h
280
s1&=0x3f; \
sys/crypto/des/des_locl.h
282
LL^=des_SPtrans[5][s1]; \
sys/crypto/rijndael/rijndael-alg-fst.c
1019
s1 =
sys/crypto/rijndael/rijndael-alg-fst.c
1025
PUTU32(ct + 4, s1);
sys/crypto/rijndael/rijndael-alg-fst.c
1043
u32 s0, s1, s2, s3, t0, t1, t2, t3;
sys/crypto/rijndael/rijndael-alg-fst.c
1053
s1 = GETU32(ct + 4) ^ rk[1];
sys/crypto/rijndael/rijndael-alg-fst.c
1058
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[ 4];
sys/crypto/rijndael/rijndael-alg-fst.c
1059
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[ 5];
sys/crypto/rijndael/rijndael-alg-fst.c
1060
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[ 6];
sys/crypto/rijndael/rijndael-alg-fst.c
1061
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[ 7];
sys/crypto/rijndael/rijndael-alg-fst.c
1064
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[ 9];
sys/crypto/rijndael/rijndael-alg-fst.c
1068
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[12];
sys/crypto/rijndael/rijndael-alg-fst.c
1069
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[13];
sys/crypto/rijndael/rijndael-alg-fst.c
1070
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[14];
sys/crypto/rijndael/rijndael-alg-fst.c
1071
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[15];
sys/crypto/rijndael/rijndael-alg-fst.c
1074
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[17];
sys/crypto/rijndael/rijndael-alg-fst.c
1078
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[20];
sys/crypto/rijndael/rijndael-alg-fst.c
1079
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[21];
sys/crypto/rijndael/rijndael-alg-fst.c
1080
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[22];
sys/crypto/rijndael/rijndael-alg-fst.c
1081
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[23];
sys/crypto/rijndael/rijndael-alg-fst.c
1084
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[25];
sys/crypto/rijndael/rijndael-alg-fst.c
1088
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[28];
sys/crypto/rijndael/rijndael-alg-fst.c
1089
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[29];
sys/crypto/rijndael/rijndael-alg-fst.c
1090
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[30];
sys/crypto/rijndael/rijndael-alg-fst.c
1091
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[31];
sys/crypto/rijndael/rijndael-alg-fst.c
1094
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[33];
sys/crypto/rijndael/rijndael-alg-fst.c
1098
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[36];
sys/crypto/rijndael/rijndael-alg-fst.c
1099
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[37];
sys/crypto/rijndael/rijndael-alg-fst.c
1100
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[38];
sys/crypto/rijndael/rijndael-alg-fst.c
1101
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[39];
sys/crypto/rijndael/rijndael-alg-fst.c
1105
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[41];
sys/crypto/rijndael/rijndael-alg-fst.c
1109
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[44];
sys/crypto/rijndael/rijndael-alg-fst.c
1110
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[45];
sys/crypto/rijndael/rijndael-alg-fst.c
1111
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[46];
sys/crypto/rijndael/rijndael-alg-fst.c
1112
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[47];
sys/crypto/rijndael/rijndael-alg-fst.c
1116
s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[49];
sys/crypto/rijndael/rijndael-alg-fst.c
1120
t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[52];
sys/crypto/rijndael/rijndael-alg-fst.c
1121
t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[53];
sys/crypto/rijndael/rijndael-alg-fst.c
1122
t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[54];
sys/crypto/rijndael/rijndael-alg-fst.c
1123
t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[55];
sys/crypto/rijndael/rijndael-alg-fst.c
1137
Td3[(s1 ) & 0xff] ^
sys/crypto/rijndael/rijndael-alg-fst.c
1140
Td0[(s1 >> 24) ] ^
sys/crypto/rijndael/rijndael-alg-fst.c
1147
Td1[(s1 >> 16) & 0xff] ^
sys/crypto/rijndael/rijndael-alg-fst.c
1154
Td2[(s1 >> 8) & 0xff] ^
sys/crypto/rijndael/rijndael-alg-fst.c
1169
s1 =
sys/crypto/rijndael/rijndael-alg-fst.c
1200
s1 =
sys/crypto/rijndael/rijndael-alg-fst.c
1206
PUTU32(pt + 4, s1);
sys/crypto/rijndael/rijndael-alg-fst.c
862
u32 s0, s1, s2, s3, t0, t1, t2, t3;
sys/crypto/rijndael/rijndael-alg-fst.c
872
s1 = GETU32(pt + 4) ^ rk[1];
sys/crypto/rijndael/rijndael-alg-fst.c
877
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4];
sys/crypto/rijndael/rijndael-alg-fst.c
878
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5];
sys/crypto/rijndael/rijndael-alg-fst.c
879
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6];
sys/crypto/rijndael/rijndael-alg-fst.c
880
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7];
sys/crypto/rijndael/rijndael-alg-fst.c
883
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[ 9];
sys/crypto/rijndael/rijndael-alg-fst.c
887
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12];
sys/crypto/rijndael/rijndael-alg-fst.c
888
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13];
sys/crypto/rijndael/rijndael-alg-fst.c
889
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[14];
sys/crypto/rijndael/rijndael-alg-fst.c
890
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[15];
sys/crypto/rijndael/rijndael-alg-fst.c
893
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[17];
sys/crypto/rijndael/rijndael-alg-fst.c
897
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[20];
sys/crypto/rijndael/rijndael-alg-fst.c
898
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[21];
sys/crypto/rijndael/rijndael-alg-fst.c
899
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[22];
sys/crypto/rijndael/rijndael-alg-fst.c
900
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[23];
sys/crypto/rijndael/rijndael-alg-fst.c
903
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[25];
sys/crypto/rijndael/rijndael-alg-fst.c
907
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[28];
sys/crypto/rijndael/rijndael-alg-fst.c
908
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[29];
sys/crypto/rijndael/rijndael-alg-fst.c
909
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[30];
sys/crypto/rijndael/rijndael-alg-fst.c
910
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[31];
sys/crypto/rijndael/rijndael-alg-fst.c
913
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[33];
sys/crypto/rijndael/rijndael-alg-fst.c
917
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[36];
sys/crypto/rijndael/rijndael-alg-fst.c
918
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[37];
sys/crypto/rijndael/rijndael-alg-fst.c
919
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[38];
sys/crypto/rijndael/rijndael-alg-fst.c
920
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[39];
sys/crypto/rijndael/rijndael-alg-fst.c
924
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[41];
sys/crypto/rijndael/rijndael-alg-fst.c
928
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[44];
sys/crypto/rijndael/rijndael-alg-fst.c
929
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[45];
sys/crypto/rijndael/rijndael-alg-fst.c
930
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[46];
sys/crypto/rijndael/rijndael-alg-fst.c
931
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[47];
sys/crypto/rijndael/rijndael-alg-fst.c
935
s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[49];
sys/crypto/rijndael/rijndael-alg-fst.c
939
t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[52];
sys/crypto/rijndael/rijndael-alg-fst.c
940
t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[53];
sys/crypto/rijndael/rijndael-alg-fst.c
941
t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[54];
sys/crypto/rijndael/rijndael-alg-fst.c
942
t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[55];
sys/crypto/rijndael/rijndael-alg-fst.c
954
Te1[(s1 >> 16) & 0xff] ^
sys/crypto/rijndael/rijndael-alg-fst.c
959
Te0[(s1 >> 24) ] ^
sys/crypto/rijndael/rijndael-alg-fst.c
968
Te3[(s1 ) & 0xff] ^
sys/crypto/rijndael/rijndael-alg-fst.c
973
Te2[(s1 >> 8) & 0xff] ^
sys/crypto/rijndael/rijndael-alg-fst.c
988
s1 =
sys/crypto/sha2/sha256c.c
132
W[i + ii + 16] = s1(W[i + ii + 14]) + W[i + ii + 9] + s0(W[i + ii + 1]) + W[i + ii]
sys/crypto/sha2/sha512c.c
161
W[i + ii + 16] = s1(W[i + ii + 14]) + W[i + ii + 9] + s0(W[i + ii + 1]) + W[i + ii]
sys/dev/atkbdc/atkbdc.c
135
#define QUIRK_STR_EQUAL(s1, s2) \
sys/dev/atkbdc/atkbdc.c
136
(s1 == NULL || \
sys/dev/atkbdc/atkbdc.c
137
(s2 != NULL && strcmp(s1, s2) == 0))
sys/dev/atkbdc/atkbdc.c
138
#define QUIRK_STR_MATCH(s1, s2) \
sys/dev/atkbdc/atkbdc.c
139
(s1 == NULL || \
sys/dev/atkbdc/atkbdc.c
140
(s2 != NULL && strncmp(s1, s2, strlen(s1)) == 0))
sys/dev/cxgbe/cudbg/fastlz_api.c
46
unsigned long s1 = checksum & 0xffff;
sys/dev/cxgbe/cudbg/fastlz_api.c
54
s1 += *ptr++; s2 += s1;
sys/dev/cxgbe/cudbg/fastlz_api.c
55
s1 += *ptr++; s2 += s1;
sys/dev/cxgbe/cudbg/fastlz_api.c
56
s1 += *ptr++; s2 += s1;
sys/dev/cxgbe/cudbg/fastlz_api.c
57
s1 += *ptr++; s2 += s1;
sys/dev/cxgbe/cudbg/fastlz_api.c
58
s1 += *ptr++; s2 += s1;
sys/dev/cxgbe/cudbg/fastlz_api.c
59
s1 += *ptr++; s2 += s1;
sys/dev/cxgbe/cudbg/fastlz_api.c
60
s1 += *ptr++; s2 += s1;
sys/dev/cxgbe/cudbg/fastlz_api.c
61
s1 += *ptr++; s2 += s1;
sys/dev/cxgbe/cudbg/fastlz_api.c
66
s1 += *ptr++; s2 += s1;
sys/dev/cxgbe/cudbg/fastlz_api.c
68
s1 = s1 % ADLER32_BASE;
sys/dev/cxgbe/cudbg/fastlz_api.c
71
return (s2 << 16) + s1;
sys/dev/cxgbe/t4_main.c
12122
uint32_t cfg, s1, s2;
sys/dev/cxgbe/t4_main.c
12132
s1 = t4_read_reg(sc, A_SGE_STAT_TOTAL);
sys/dev/cxgbe/t4_main.c
12148
sbuf_printf(sb, "total %d, incomplete %d", s1, s2);
sys/dev/cxgbe/t4_main.c
12150
sbuf_printf(sb, "total %d, data overflow %d", s1, s2);
sys/dev/mlx/mlx_disk.c
213
int s1, s2;
sys/dev/mlx/mlx_disk.c
261
s1 = sc->mlxd_controller->mlx_enq2->me_maxblk * MLX_BLKSIZE;
sys/dev/mlx/mlx_disk.c
263
sc->mlxd_disk->d_maxsize = imin(s1, s2);
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
629
struct ib_srq *s1;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2997
devr->s1 = rdma_zalloc_drv_obj(ibdev, ib_srq);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2998
if (!devr->s1) {
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3003
devr->s1->device = &dev->ib_dev;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3004
devr->s1->pd = devr->p0;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3005
devr->s1->srq_type = IB_SRQT_BASIC;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3006
devr->s1->ext.cq = devr->c0;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3008
ret = mlx5_ib_create_srq(devr->s1, &attr, NULL);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3013
atomic_set(&devr->s1->usecnt, 0);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3024
kfree(devr->s1);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3048
mlx5_ib_destroy_srq(devr->s1, NULL);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3049
kfree(devr->s1);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
1818
MLX5_SET(qpc, qpc, srqn_rmpn, to_msrq(devr->s1)->msrq.srqn);
sys/dev/pms/freebsd/driver/common/osstring.h
62
#define osti_memcmp(s1, s2, n) memcmp((void *)s1, (void *)s2, (size_t)n)
sys/dev/pms/freebsd/driver/common/osstring.h
67
#define osti_strcmp(s1, s2) strcmp((char *)s1, (char *)s2)
sys/dev/pms/freebsd/driver/common/osstring.h
70
#define osti_strncmp(s1, s2, n) strncmp((char *)s1, (char *)s2, (size_t)n)
sys/dev/pms/freebsd/driver/common/osstring.h
72
#define osti_strstr(s1, s2) strstr((char *)s1, (char *)s2)
sys/dev/qat/include/icp_qat_fw.h
57
} s1;
sys/dev/qat/qat_api/common/compression/dc_datapath.c
165
cmpErr = pCompRespMsg->comn_resp.comn_error.s1.cmp_err_code;
sys/dev/qat/qat_api/common/compression/dc_datapath.c
245
xlatErr = pCompRespMsg->comn_resp.comn_error.s1.xlat_err_code;
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_alg_chain.c
243
pSessionDesc->shramReqCacheHdr.cd_pars.s1.serv_specif_fields);
sys/dev/qat/qat_api/common/crypto/sym/lac_sym_alg_chain.c
524
pSessionDesc->shramReqCacheHdr.cd_pars.s1
sys/dev/qat/qat_api/common/crypto/sym/qat/lac_sym_qat_key.c
38
pKeyGenReqMid->u1.s1.output_lgth_ssl = outLenRounded;
sys/dev/qat/qat_api/common/crypto/sym/qat/lac_sym_qat_key.c
39
pKeyGenReqMid->u1.s1.label_lgth_ssl = labelLenInBytes;
sys/dev/qat/qat_api/firmware/include/icp_qat_fw.h
212
} s1;
sys/dev/qat/qat_api/firmware/include/icp_qat_fw.h
405
} s1;
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_la.h
1821
} s1;
sys/dev/qat/qat_api/firmware/include/icp_qat_fw_la.h
974
} s1;
sys/dev/qat_c2xxx/qat_hw15reg.h
205
} s1;
sys/dev/sound/pci/solo.c
384
int speed, s0, s1, use0;
sys/dev/sound/pci/solo.c
394
s1 = 768000 / (128 - t1);
sys/dev/sound/pci/solo.c
397
use0 = (ABS(speed - s0) < ABS(speed - s1))? 1 : 0;
sys/dev/sound/pci/solo.c
399
*spd = use0? s0 : s1;
sys/dev/sound/pcm/feeder.c
176
#define score_signeq(s1, s2) (((s1) & 0x1) == ((s2) & 0x1))
sys/dev/sound/pcm/feeder.c
177
#define score_endianeq(s1, s2) (((s1) & 0x2) == ((s2) & 0x2))
sys/dev/sound/pcm/feeder.c
178
#define score_cheq(s1, s2) (((s1) & 0xfc) == ((s2) & 0xfc))
sys/dev/sound/pcm/feeder.c
179
#define score_chgt(s1, s2) (((s1) & 0xfc) > ((s2) & 0xfc))
sys/dev/sound/pcm/feeder.c
180
#define score_chlt(s1, s2) (((s1) & 0xfc) < ((s2) & 0xfc))
sys/dev/sound/pcm/feeder.c
181
#define score_val(s1) ((s1) & 0x3f00)
sys/dev/sound/pcm/feeder.c
182
#define score_cse(s1) ((s1) & 0x7f)
sys/dev/syscons/syscons.c
203
static int and_region(int *s1, int *e1, int s2, int e2);
sys/dev/syscons/syscons.c
2280
and_region(int *s1, int *e1, int s2, int e2)
sys/dev/syscons/syscons.c
2282
if (*e1 < s2 || e2 < *s1)
sys/dev/syscons/syscons.c
2284
*s1 = imax(*s1, s2);
sys/dev/usb/storage/umass.c
3022
char s1[40];
sys/dev/usb/storage/umass.c
3026
s1[0] = '\0';
sys/dev/usb/storage/umass.c
3034
s1, s2);
sys/dev/usb/storage/umass.c
3037
sprintf(&s1[j * 2], "%02x", buffer[i] & 0xff);
sys/dev/usb/storage/umass.c
3042
s1, s2, s3);
sys/fs/devfs/devfs_rule.c
706
struct devfs_ruleset *s1;
sys/fs/devfs/devfs_rule.c
718
TAILQ_FOREACH(s1, &devfs_rulesets, ds_list) {
sys/fs/devfs/devfs_rule.c
719
if (s1->ds_number > rsnum) {
sys/fs/devfs/devfs_rule.c
720
TAILQ_INSERT_BEFORE(s1, ds, ds_list);
sys/fs/devfs/devfs_rule.c
724
if (s1 == NULL)
sys/kern/kern_kexec.c
124
const struct kexec_segment *s1, *s2;
sys/kern/kern_kexec.c
126
s1 = seg1;
sys/kern/kern_kexec.c
129
return ((uintptr_t)s1->mem - (uintptr_t)s2->mem);
sys/kern/subr_asan.c
511
kasan_strcmp(const char *s1, const char *s2)
sys/kern/subr_asan.c
514
kasan_shadow_check((unsigned long)s1, 1, false, __RET_ADDR);
sys/kern/subr_asan.c
516
if (*s1 != *s2)
sys/kern/subr_asan.c
518
if (*s1 == '\0')
sys/kern/subr_asan.c
520
s1++, s2++;
sys/kern/subr_asan.c
523
return (*(const unsigned char *)s1 - *(const unsigned char *)s2);
sys/kern/subr_csan.c
323
kcsan_strcmp(const char *s1, const char *s2)
sys/kern/subr_csan.c
326
kcsan_access((uintptr_t)s1, 1, false, false, __RET_ADDR);
sys/kern/subr_csan.c
328
if (*s1 != *s2)
sys/kern/subr_csan.c
330
if (*s1 == '\0')
sys/kern/subr_csan.c
332
s1++, s2++;
sys/kern/subr_csan.c
335
return (*(const unsigned char *)s1 - *(const unsigned char *)s2);
sys/kern/subr_msan.c
837
kmsan_strcmp(const char *s1, const char *s2)
sys/kern/subr_msan.c
839
const char *_s1 = s1, *_s2 = s2;
sys/kern/subr_msan.c
842
kmsan_check_arg(sizeof(s1) + sizeof(s2), "strcmp():args");
sys/kern/subr_msan.c
847
if (*s1 != *s2)
sys/kern/subr_msan.c
849
if (*s1 == '\0') {
sys/kern/subr_msan.c
854
s1++, s2++;
sys/kern/subr_msan.c
860
return (*(const unsigned char *)s1 - *(const unsigned char *)s2);
sys/libkern/memcmp.c
42
(memcmp)(const void *s1, const void *s2, size_t n)
sys/libkern/memcmp.c
45
const unsigned char *p1 = s1, *p2 = s2;
sys/libkern/strcasecmp.c
41
strcasecmp(const char *s1, const char *s2)
sys/libkern/strcasecmp.c
43
const u_char *us1 = (const u_char *)s1, *us2 = (const u_char *)s2;
sys/libkern/strcasecmp.c
54
strncasecmp(const char *s1, const char *s2, size_t n)
sys/libkern/strcasecmp.c
58
const u_char *us1 = (const u_char *)s1;
sys/libkern/strcmp.c
42
(strcmp)(const char *s1, const char *s2)
sys/libkern/strcmp.c
44
while (*s1 == *s2++)
sys/libkern/strcmp.c
45
if (*s1++ == '\0')
sys/libkern/strcmp.c
47
return (*(const unsigned char *)s1 - *(const unsigned char *)(s2 - 1));
sys/libkern/strcspn.c
44
const char *s1;
sys/libkern/strcspn.c
65
for(s1 = s; ; s1++) {
sys/libkern/strcspn.c
66
idx = IDX(*s1);
sys/libkern/strcspn.c
67
bit = BIT(*s1);
sys/libkern/strcspn.c
71
return (s1 - s);
sys/libkern/strncmp.c
36
strncmp(const char *s1, const char *s2, size_t n)
sys/libkern/strncmp.c
42
if (*s1 != *s2++)
sys/libkern/strncmp.c
43
return (*(const unsigned char *)s1 -
sys/libkern/strncmp.c
45
if (*s1++ == '\0')
sys/libkern/strspn.c
44
const char *s1;
sys/libkern/strspn.c
64
for(s1 = s; ; s1++) {
sys/libkern/strspn.c
65
idx = IDX(*s1);
sys/libkern/strspn.c
66
bit = BIT(*s1);
sys/libkern/strspn.c
70
return (s1 - s);
sys/net/ieee8023ad_lacp.h
278
#define LACP_STATE_EQ(s1, s2, mask) \
sys/net/ieee8023ad_lacp.h
279
((((s1) ^ (s2)) & (mask)) == 0)
sys/netgraph/ng_ksocket.c
630
char *s1, *s2, name[NG_HOOKSIZ];
sys/netgraph/ng_ksocket.c
646
s1 = name;
sys/netgraph/ng_ksocket.c
647
if ((s2 = strchr(s1, '/')) == NULL)
sys/netgraph/ng_ksocket.c
650
family = ng_ksocket_parse(ng_ksocket_families, s1, 0);
sys/netgraph/ng_ksocket.c
653
s1 = s2;
sys/netgraph/ng_ksocket.c
654
if ((s2 = strchr(s1, '/')) == NULL)
sys/netgraph/ng_ksocket.c
657
type = ng_ksocket_parse(ng_ksocket_types, s1, 0);
sys/netgraph/ng_ksocket.c
660
s1 = s2;
sys/netgraph/ng_ksocket.c
661
protocol = ng_ksocket_parse(ng_ksocket_protos, s1, family);
sys/netinet/libalias/alias.c
165
uint16_t s1 = ((uint16_t)c[1] << 8) + (uint16_t)c[0];
sys/netinet/libalias/alias.c
168
uint16_t s1 = ((uint16_t)c[0] << 8) + (uint16_t)c[1];
sys/netinet/libalias/alias.c
171
return (s1 + s2);
sys/netpfil/ipfilter/netinet/ip_nat.c
5028
u_32_t s1, s2, sumd, msumd;
sys/netpfil/ipfilter/netinet/ip_nat.c
5030
s1 = LONG_SUM(ntohl(fin->fin_saddr));
sys/netpfil/ipfilter/netinet/ip_nat.c
5036
CALC_SUMD(s1, s2, sumd);
sys/netpfil/ipfilter/netinet/ip_nat.c
5039
s1 = LONG_SUM(ntohl(fin->fin_daddr));
sys/netpfil/ipfilter/netinet/ip_nat.c
5045
CALC_SUMD(s1, s2, sumd);
sys/netpfil/ipfilter/netinet/ip_nat.c
5135
u_32_t s1, s2, sumd;
sys/netpfil/ipfilter/netinet/ip_nat.c
5150
s1 = ip->ip_len;
sys/netpfil/ipfilter/netinet/ip_nat.c
5155
CALC_SUMD(s1, s2, sumd);
sys/netpfil/ipfilter/netinet/ip_nat.h
597
#define CALC_SUMD(s1, s2, sd) { \
sys/netpfil/ipfilter/netinet/ip_nat.h
598
(s1) = ((s1) & 0xffff) + ((s1) >> 16); \
sys/netpfil/ipfilter/netinet/ip_nat.h
601
(s1) = ((s1) & 0xffff) + ((s1) >> 16); \
sys/netpfil/ipfilter/netinet/ip_nat.h
604
if ((s1) > (s2)) (s2)--; \
sys/netpfil/ipfilter/netinet/ip_nat.h
605
(sd) = (s2) - (s1); \
sys/netpfil/ipfilter/netinet/ip_nat6.c
1496
u_short *s1, *s2, *ds;
sys/netpfil/ipfilter/netinet/ip_nat6.c
1502
s1 = (u_short *)&l1;
sys/netpfil/ipfilter/netinet/ip_nat6.c
1507
if (s1[i] > s2[i]) {
sys/netpfil/ipfilter/netinet/ip_nat6.c
1508
ds[i] = s2[i] + 0x10000 - s1[i];
sys/netpfil/ipfilter/netinet/ip_nat6.c
1511
ds[i] = s2[i] - s1[i];
sys/netpfil/ipfilter/netinet/ip_nat6.c
1514
if (s2[0] > s1[0]) {
sys/netpfil/ipfilter/netinet/ip_nat6.c
1515
ds[0] = s2[0] + 0x10000 - s1[0];
sys/netpfil/ipfilter/netinet/ip_nat6.c
1517
ds[0] = s2[0] - s1[0];
sys/netpfil/ipfilter/netinet/ip_proxy.c
882
u_32_t s1, s2, sd;
sys/netpfil/ipfilter/netinet/ip_proxy.c
974
s1 = LONG_SUM(fin->fin_plen - adjlen);
sys/netpfil/ipfilter/netinet/ip_proxy.c
976
CALC_SUMD(s1, s2, sd);
sys/netpfil/ipfilter/netinet/ip_state.h
22
#define PAIRS(s1,d1,s2,d2) ((((s1) == (s2)) && ((d1) == (d2))) ||\
sys/netpfil/ipfilter/netinet/ip_state.h
23
(((s1) == (d2)) && ((d1) == (s2))))
sys/netpfil/ipfilter/netinet/ip_state.h
24
#define IPPAIR(s1,d1,s2,d2) PAIRS((s1).s_addr, (d1).s_addr, \
sys/netpfil/ipfilter/netinet/radix_ipf.c
1392
myst_t *s1;
sys/netpfil/ipfilter/netinet/radix_ipf.c
1398
for (s1 = myst_top; s1 != NULL; s1 = s1->next) {
sys/netpfil/ipfilter/netinet/radix_ipf.c
1400
if (s1->printed == -1)
sys/netpfil/ipfilter/netinet/radix_ipf.c
1402
rn = &s1->nodes[1];
sys/rpc/clnt.h
79
int32_t s1;
sys/rpc/rpc_prot.c
272
error->re_lb.s1 = (int32_t)MSG_ACCEPTED;
sys/rpc/rpc_prot.c
292
error->re_lb.s1 = (int32_t)MSG_DENIED;
sys/rpc/rpc_prot.c
325
error->re_lb.s1 = (int32_t)(msg->rm_reply.rp_stat);
sys/sys/bitset.h
132
#define __BIT_OR2(_s, d, s1, s2) do { \
sys/sys/bitset.h
135
(d)->__bits[__i] = (s1)->__bits[__i] | (s2)->__bits[__i];\
sys/sys/bitset.h
144
#define __BIT_ORNOT2(_s, d, s1, s2) do { \
sys/sys/bitset.h
147
(d)->__bits[__i] = (s1)->__bits[__i] | ~(s2)->__bits[__i];\
sys/sys/bitset.h
156
#define __BIT_AND2(_s, d, s1, s2) do { \
sys/sys/bitset.h
159
(d)->__bits[__i] = (s1)->__bits[__i] & (s2)->__bits[__i];\
sys/sys/bitset.h
168
#define __BIT_ANDNOT2(_s, d, s1, s2) do { \
sys/sys/bitset.h
171
(d)->__bits[__i] = (s1)->__bits[__i] & ~(s2)->__bits[__i];\
sys/sys/bitset.h
180
#define __BIT_XOR2(_s, d, s1, s2) do { \
sys/sys/bitset.h
183
(d)->__bits[__i] = (s1)->__bits[__i] ^ (s2)->__bits[__i];\
sys/sys/bitset.h
323
#define BIT_AND2(_s, d, s1, s2) __BIT_AND2(_s, d, s1, s2)
sys/sys/bitset.h
325
#define BIT_ANDNOT2(_s, d, s1, s2) __BIT_ANDNOT2(_s, d, s1, s2)
sys/sys/bitset.h
344
#define BIT_OR2(_s, d, s1, s2) __BIT_OR2(_s, d, s1, s2)
sys/sys/bitset.h
346
#define BIT_ORNOT2(_s, d, s1, s2) __BIT_ORNOT2(_s, d, s1, s2)
sys/sys/bitset.h
357
#define BIT_XOR2(_s, d, s1, s2) __BIT_XOR2(_s, d, s1, s2)
sys/sys/cpuset.h
58
#define CPU_OR(d, s1, s2) __BIT_OR2(CPU_SETSIZE, d, s1, s2)
sys/sys/cpuset.h
59
#define CPU_ORNOT(d, s1, s2) __BIT_ORNOT2(CPU_SETSIZE, d, s1, s2)
sys/sys/cpuset.h
60
#define CPU_AND(d, s1, s2) __BIT_AND2(CPU_SETSIZE, d, s1, s2)
sys/sys/cpuset.h
61
#define CPU_ANDNOT(d, s1, s2) __BIT_ANDNOT2(CPU_SETSIZE, d, s1, s2)
sys/sys/cpuset.h
62
#define CPU_XOR(d, s1, s2) __BIT_XOR2(CPU_SETSIZE, d, s1, s2)
sys/sys/cpuset.h
88
#define CPU_OR_S(_s, d, s1, s2) __BIT_OR2((_s) * 8, d, s1, s2)
sys/sys/cpuset.h
89
#define CPU_AND_S(_s, d, s1, s2) __BIT_AND2((_s) * 8, d, s1, s2)
sys/sys/cpuset.h
90
#define CPU_XOR_S(_s, d, s1, s2) __BIT_XOR2((_s) * 8, d, s1, s2)
sys/sys/libkern.h
286
#define strcmp(s1, s2) SAN_INTERCEPTOR(strcmp)((s1), (s2))
sys/sys/libkern.h
291
#define strcmp(s1, s2) __builtin_strcmp((s1), (s2))
tests/sys/kern/unix_seqpacket_test.c
112
int s, s2, err, s1;
tests/sys/kern/unix_seqpacket_test.c
126
s1 = accept(s, NULL, NULL);
tests/sys/kern/unix_seqpacket_test.c
127
if (s1 == -1) {
tests/sys/kern/unix_seqpacket_test.c
132
sv[0] = s1;
tests/sys/netinet/so_reuseport_lb_test.c
575
int error, len, s1, s2, s3;
tests/sys/netinet/so_reuseport_lb_test.c
578
s1 = socket(PF_INET, SOCK_DGRAM, 0);
tests/sys/netinet/so_reuseport_lb_test.c
579
ATF_REQUIRE(s1 >= 0);
tests/sys/netinet/so_reuseport_lb_test.c
585
error = setsockopt(s1, SOL_SOCKET, SO_REUSEPORT_LB, (int[]){1},
tests/sys/netinet/so_reuseport_lb_test.c
589
error = bind(s1, (struct sockaddr *)&sin, sizeof(sin));
tests/sys/netinet/so_reuseport_lb_test.c
602
error = connect(s1, (struct sockaddr *)&sin, sizeof(sin));
tests/sys/netinet/so_reuseport_lb_test.c
606
error = getsockname(s1, (struct sockaddr *)&sin,
tests/sys/netinet/so_reuseport_lb_test.c
619
error = ioctl(s1, FIONREAD, &len);
tests/sys/netinet/so_reuseport_lb_test.c
628
error = ioctl(s1, FIONREAD, &len);
tests/sys/netinet/so_reuseport_lb_test.c
647
int error, len, s1, s2, s3;
tests/sys/netinet/so_reuseport_lb_test.c
650
s1 = socket(PF_INET6, SOCK_DGRAM, 0);
tests/sys/netinet/so_reuseport_lb_test.c
651
ATF_REQUIRE(s1 >= 0);
tests/sys/netinet/so_reuseport_lb_test.c
657
error = setsockopt(s1, SOL_SOCKET, SO_REUSEPORT_LB, (int[]){1},
tests/sys/netinet/so_reuseport_lb_test.c
661
error = bind(s1, (struct sockaddr *)&sin6, sizeof(sin6));
tests/sys/netinet/so_reuseport_lb_test.c
674
error = connect(s1, (struct sockaddr *)&sin6, sizeof(sin6));
tests/sys/netinet/so_reuseport_lb_test.c
678
error = getsockname(s1, (struct sockaddr *)&sin6,
tests/sys/netinet/so_reuseport_lb_test.c
691
error = ioctl(s1, FIONREAD, &len);
tests/sys/netinet/so_reuseport_lb_test.c
700
error = ioctl(s1, FIONREAD, &len);
tools/build/bootstrap-m4/inittokenizer.c
1776
static void yy_flex_strncpy (char* s1, const char * s2, int n )
tools/build/bootstrap-m4/inittokenizer.c
1781
s1[i] = s2[i];
tools/regression/netinet/ipdivert/ipdivert.c
118
int s1, s2;
tools/regression/netinet/ipdivert/ipdivert.c
124
s1 = ipdivert_create(test);
tools/regression/netinet/ipdivert/ipdivert.c
125
ipdivert_close(test, s1);
tools/regression/netinet/ipdivert/ipdivert.c
132
s1 = ipdivert_create(test);
tools/regression/netinet/ipdivert/ipdivert.c
133
ipdivert_bind(test, s1, 1000, 0);
tools/regression/netinet/ipdivert/ipdivert.c
134
ipdivert_close(test, s1);
tools/regression/netinet/ipdivert/ipdivert.c
142
s1 = ipdivert_create(test);
tools/regression/netinet/ipdivert/ipdivert.c
144
ipdivert_bind(test, s1, 1000, 0);
tools/regression/netinet/ipdivert/ipdivert.c
146
ipdivert_close(test, s1);
tools/regression/netinet/ipdivert/ipdivert.c
155
s1 = ipdivert_create(test);
tools/regression/netinet/ipdivert/ipdivert.c
157
ipdivert_bind(test, s1, 1000, 0);
tools/regression/netinet/ipdivert/ipdivert.c
159
ipdivert_close(test, s1);
tools/tools/shlib-compat/test/libtest1/test.c
18
struct s1 *f2_s1;
tools/tools/shlib-compat/test/libtest1/test.c
22
struct s1 f1_s1;
tools/tools/shlib-compat/test/libtest1/test.c
28
void func3(struct s1 *s);
tools/tools/shlib-compat/test/libtest1/test.c
29
void func4(struct s1 s);
tools/tools/shlib-compat/test/libtest1/test.c
46
func3(struct s1 *s)
tools/tools/shlib-compat/test/libtest1/test.c
51
func4(struct s1 s)
tools/tools/shlib-compat/test/libtest2/test.c
18
struct s1 *f2_s1;
tools/tools/shlib-compat/test/libtest2/test.c
22
struct s1 f1_s1;
tools/tools/shlib-compat/test/libtest2/test.c
29
void func3(struct s1 *s);
tools/tools/shlib-compat/test/libtest2/test.c
30
void func4(struct s1 s);
tools/tools/shlib-compat/test/libtest2/test.c
54
func3(struct s1 *s)
tools/tools/shlib-compat/test/libtest2/test.c
59
func4(struct s1 s)
tools/tools/shlib-compat/test/libtest3/test.c
18
struct s1 *f2_s1;
tools/tools/shlib-compat/test/libtest3/test.c
22
struct s1 f1_s1;
tools/tools/shlib-compat/test/libtest3/test.c
31
struct s1 f1_s1;
tools/tools/shlib-compat/test/libtest3/test.c
40
void func3(struct s1 *s);
tools/tools/shlib-compat/test/libtest3/test.c
41
void func4(struct s1 s);
tools/tools/shlib-compat/test/libtest3/test.c
59
func3(struct s1 *s)
tools/tools/shlib-compat/test/libtest3/test.c
64
func4(struct s1 s)
tools/tools/so_splice/proxy.c
126
splice(int s1, int s2)
tools/tools/so_splice/proxy.c
132
if (setsockopt(s1, SOL_SOCKET, SO_SPLICE, &sp, sizeof(sp)) == -1)
tools/tools/so_splice/proxy.c
230
proxy(struct proxy_softc *sc, int s1, int s2)
tools/tools/so_splice/proxy.c
238
close(s1);
tools/tools/so_splice/proxy.c
244
proxy_copy(sc, s1, s2);
tools/tools/so_splice/proxy.c
246
proxy_splice(sc, s1, s2);
usr.bin/calendar/parsedata.c
113
#define CHECKSPECIAL(s1, s2, lens2, type) \
usr.bin/calendar/parsedata.c
114
if (s2 != NULL && strncmp(s1, s2, lens2) == 0) { \
usr.bin/calendar/parsedata.c
118
if (strlen(s1) == lens2) { \
usr.bin/calendar/parsedata.c
119
strlcpy(specialday, s1, SLEN); \
usr.bin/calendar/parsedata.c
122
strncpy(specialday, s1, lens2); \
usr.bin/calendar/parsedata.c
124
strlcpy(modifieroffset, s1 + lens2, SLEN); \
usr.bin/chat/chat.c
556
char *s1, *phchar;
usr.bin/chat/chat.c
560
s1 = temp;
usr.bin/chat/chat.c
562
while (*s && s1 - temp < (off_t)(sizeof(temp) - 2 - add_return)) {
usr.bin/chat/chat.c
567
*s1++ = '^';
usr.bin/chat/chat.c
572
*s1++ = cur_chr;
usr.bin/chat/chat.c
578
*s1++ = cur_chr;
usr.bin/chat/chat.c
585
*s1++ = '\\';
usr.bin/chat/chat.c
586
*s1++ = '\\';
usr.bin/chat/chat.c
593
*s1++ = '\b';
usr.bin/chat/chat.c
600
*s1++ = cur_chr;
usr.bin/chat/chat.c
608
*s1++ = '\\';
usr.bin/chat/chat.c
610
*s1++ = cur_chr;
usr.bin/chat/chat.c
616
*s1++ = *phchar;
usr.bin/chat/chat.c
619
*s1++ = '\\';
usr.bin/chat/chat.c
620
*s1++ = 'T';
usr.bin/chat/chat.c
627
*s1++ = *phchar;
usr.bin/chat/chat.c
630
*s1++ = '\\';
usr.bin/chat/chat.c
631
*s1++ = 'U';
usr.bin/chat/chat.c
640
*s1++ = '\r';
usr.bin/chat/chat.c
644
*s1++ = '\n';
usr.bin/chat/chat.c
648
*s1++ = ' ';
usr.bin/chat/chat.c
652
*s1++ = '\t';
usr.bin/chat/chat.c
657
*s1++ = '\\';
usr.bin/chat/chat.c
658
*s1++ = '\0';
usr.bin/chat/chat.c
661
*s1++ = 'N';
usr.bin/chat/chat.c
678
*s1++ = '\\';
usr.bin/chat/chat.c
679
*s1++ = cur_chr;
usr.bin/chat/chat.c
685
*s1++ = '\\';
usr.bin/chat/chat.c
686
*s1++ = cur_chr;
usr.bin/chat/chat.c
692
*s1++ = '\r';
usr.bin/chat/chat.c
694
*s1++ = '\0'; /* guarantee closure */
usr.bin/chat/chat.c
695
*s1++ = '\0'; /* terminate the string */
usr.bin/chat/chat.c
696
return dup_mem (temp, (size_t) (s1 - temp)); /* may have embedded nuls */
usr.bin/chat/chat.c
896
char *s1;
usr.bin/chat/chat.c
903
s1 = clean(s, 0);
usr.bin/chat/chat.c
905
if (strlen(s1) > strlen(s)
usr.bin/chat/chat.c
906
|| strlen(s1) + 1 > sizeof(fail_buffer))
usr.bin/chat/chat.c
909
abort_string[n_aborts++] = s1;
usr.bin/chat/chat.c
917
char *s1;
usr.bin/chat/chat.c
924
s1 = clean(s, 0);
usr.bin/chat/chat.c
926
if (strlen(s1) > strlen(s)
usr.bin/chat/chat.c
927
|| strlen(s1) + 1 > sizeof(fail_buffer))
usr.bin/chat/chat.c
932
if ( strcmp(s1,abort_string[i]) == 0 ) {
usr.bin/chat/chat.c
941
free(s1);
usr.bin/chat/chat.c
948
char *s1;
usr.bin/chat/chat.c
954
s1 = clean(s, 0);
usr.bin/chat/chat.c
956
if (strlen(s1) > strlen(s) || strlen(s1) > sizeof fail_buffer - 1)
usr.bin/chat/chat.c
959
report_string[n_reports++] = s1;
usr.bin/chat/chat.c
967
char *s1;
usr.bin/chat/chat.c
974
s1 = clean(s, 0);
usr.bin/chat/chat.c
976
if (strlen(s1) > strlen(s) || strlen(s1) > sizeof fail_buffer - 1)
usr.bin/chat/chat.c
981
if ( strcmp(s1,report_string[i]) == 0 ) {
usr.bin/chat/chat.c
990
free(s1);
usr.bin/find/find.c
48
static int find_compare(const FTSENT * const *s1, const FTSENT * const *s2);
usr.bin/find/find.c
57
find_compare(const FTSENT * const *s1, const FTSENT * const *s2)
usr.bin/find/find.c
60
return (strcoll((*s1)->fts_name, (*s2)->fts_name));
usr.bin/fortune/strfile/strfile.c
361
static char s1[2], s2[2];
usr.bin/fortune/strfile/strfile.c
364
s1[0] = c1;
usr.bin/fortune/strfile/strfile.c
366
if ((ret = strcoll(s1, s2)) != 0)
usr.bin/fortune/strfile/strfile.c
376
cmp_str(const void *s1, const void *s2)
usr.bin/fortune/strfile/strfile.c
384
p1 = (const STR *)s1;
usr.bin/indent/args.c
231
eqin(const char *s1, const char *s2)
usr.bin/indent/args.c
233
while (*s1) {
usr.bin/indent/args.c
234
if (*s1++ != *s2++)
usr.bin/join/join.c
392
mbscoll(const char *s1, const char *s2)
usr.bin/join/join.c
398
return (strcoll(s1, s2));
usr.bin/join/join.c
399
if ((w1 = towcs(s1)) == NULL || (w2 = towcs(s2)) == NULL)
usr.bin/kdump/kdump.c
142
#define eqs(s1, s2) (strcmp((s1), (s2)) == 0)
usr.bin/lex/initscan.c
5158
static void yy_flex_strncpy (char* s1, const char * s2, int n )
usr.bin/lex/initscan.c
5163
s1[i] = s2[i];
usr.bin/locale/locale.c
466
scmp(const void *s1, const void *s2)
usr.bin/locale/locale.c
468
return strcmp(*(const char * const *)s1, *(const char * const *)s2);
usr.bin/localedef/collate.c
1082
wsncpy(wchar_t *s1, const wchar_t *s2, size_t n)
usr.bin/localedef/collate.c
1084
wchar_t *os1 = s1;
usr.bin/localedef/collate.c
1087
while (--n > 0 && (*s1++ = htote(*s2++)) != 0)
usr.bin/localedef/collate.c
1091
*s1++ = 0;
usr.bin/lock/lock.c
164
(void)fgets(s1, sizeof(s1), stdin);
usr.bin/lock/lock.c
166
if (strcmp(s1, s)) {
usr.bin/lock/lock.c
236
if (!strcmp(s, s1))
usr.bin/lock/lock.c
91
char hostname[MAXHOSTNAMELEN], s[BUFSIZ], s1[BUFSIZ];
usr.bin/look/look.c
319
compare(wchar_t *s1, unsigned char *s2, unsigned char *back)
usr.bin/look/look.c
324
for (; *s1 && s2 < back && *s2 != '\n'; ++s1, s2 += len2) {
usr.bin/look/look.c
325
ch1 = *s1;
usr.bin/look/look.c
335
--s1;
usr.bin/look/look.c
341
return (*s1 ? GREATER : EQUAL);
usr.bin/m4/misc.c
352
xreallocarray(void *old, size_t s1, size_t s2, const char *fmt, ...)
usr.bin/m4/misc.c
354
void *p = reallocarray(old, s1, s2);
usr.bin/m4/misc.c
71
doindex(const char *s1, const char *s2)
usr.bin/m4/misc.c
75
t = strstr(s1, s2);
usr.bin/m4/misc.c
79
return (t - s1);
usr.bin/mail/lex.c
507
const char *s1, *s2;
usr.bin/mail/lex.c
509
s1 = as1;
usr.bin/mail/lex.c
511
while (*s1++ == *s2)
usr.bin/mail/lex.c
514
return (*--s1 == '\0');
usr.bin/netstat/mroute.c
104
strcpy(s1, "?");
usr.bin/netstat/mroute.c
115
(u_long)bw_meter->bm_start_time.tv_usec, s1, s2);
usr.bin/netstat/mroute.c
123
snprintf(s1, sizeof(s1), "%ju",
usr.bin/netstat/mroute.c
128
strcpy(s1, "?");
usr.bin/netstat/mroute.c
140
(u_long)bw_meter->bm_threshold.b_time.tv_usec, s1, s2);
usr.bin/netstat/mroute.c
79
char s1[256], s2[256], s3[256];
usr.bin/netstat/mroute.c
99
snprintf(s1, sizeof(s1), "%ju",
usr.bin/patch/common.h
49
#define strEQ(s1,s2) (strcmp(s1, s2) == 0)
usr.bin/patch/common.h
50
#define strnNE(s1,s2,l) (strncmp(s1, s2, l) != 0)
usr.bin/patch/common.h
51
#define strnEQ(s1,s2,l) (strncmp(s1, s2, l) == 0)
usr.bin/sdiff/sdiff.c
216
char *filename1, *filename2, *tmp1, *tmp2, *s1, *s2;
usr.bin/sdiff/sdiff.c
420
while ((s1 = xfgets(file1)))
usr.bin/sdiff/sdiff.c
421
enqueue(s1, ' ', NULL);
usr.bin/sdiff/sdiff.c
424
s1 = xfgets(file1);
usr.bin/sdiff/sdiff.c
426
if (s1 || s2)
usr.bin/sdiff/sdiff.c
427
enqueue(s1, ' ', s2);
usr.bin/sdiff/sdiff.c
564
prompt(const char *s1, const char *s2)
usr.bin/sdiff/sdiff.c
582
if (eparse(p, s1, s2) == -1)
usr.bin/sdiff/sdiff.c
588
if (s1 != NULL)
usr.bin/sdiff/sdiff.c
589
fprintf(outfp, "%s\n", s1);
usr.bin/sdiff/sdiff.c
640
println(const char *s1, const char divider, const char *s2)
usr.bin/sdiff/sdiff.c
646
if (s1) {
usr.bin/sdiff/sdiff.c
648
printcol(s1, &col, width);
usr.bin/sdiff/sdiff.c
810
char *s1, *s2;
usr.bin/sdiff/sdiff.c
812
if (!(s1 = xfgets(file1)))
usr.bin/sdiff/sdiff.c
828
enqueue(s1, '(', NULL);
usr.bin/sdiff/sdiff.c
830
enqueue(s1, ' ', NULL);
usr.bin/sdiff/sdiff.c
832
enqueue(s1, ' ', s2);
usr.bin/sort/bwstring.c
173
wide_str_coll(const wchar_t *s1, const wchar_t *s2)
usr.bin/sort/bwstring.c
178
ret = wcscoll(s1, s2);
usr.bin/sort/bwstring.c
181
ret = wcscmp(s1, s2);
usr.bin/sort/bwstring.c
184
wchar_t c1 = s1[i];
usr.bin/sort/bwstring.c
503
const char *s1, *s2;
usr.bin/sort/bwstring.c
505
s1 = bws1->cdata.str + offset;
usr.bin/sort/bwstring.c
508
res = memcmp(s1, s2, cmp_len);
usr.bin/sort/bwstring.c
511
const wchar_t *s1, *s2;
usr.bin/sort/bwstring.c
513
s1 = bws1->wdata.str + offset;
usr.bin/sort/bwstring.c
516
res = memcmp(s1, s2, SIZEOF_WCHAR_STRING(cmp_len));
usr.bin/sort/bwstring.c
596
const char *s1, *s2;
usr.bin/sort/bwstring.c
598
s1 = bws1->cdata.str + offset;
usr.bin/sort/bwstring.c
605
res = memcmp(s1, s2, len2);
usr.bin/sort/bwstring.c
609
res = memcmp(s1, s2, len1);
usr.bin/sort/bwstring.c
613
res = memcmp(s1, s2, len1);
usr.bin/sort/bwstring.c
630
!s1[i] && !s2[i])
usr.bin/sort/bwstring.c
636
if (s1[i] == 0) {
usr.bin/sort/bwstring.c
645
res = strcoll((const char*)(s1 + i), (const char*)(s2 + i));
usr.bin/sort/bwstring.c
650
s1[i] && s2[i])
usr.bin/sort/bwstring.c
656
if (s1[i] == 0) {
usr.bin/sort/bwstring.c
677
const wchar_t *s1, *s2;
usr.bin/sort/bwstring.c
681
s1 = bws1->wdata.str + offset;
usr.bin/sort/bwstring.c
694
!s1[i] && !s2[i])
usr.bin/sort/bwstring.c
700
if (s1[i] == 0) {
usr.bin/sort/bwstring.c
709
res = wide_str_coll(s1 + i, s2 + i);
usr.bin/sort/bwstring.c
713
while ((i < maxlen) && s1[i] && s2[i])
usr.bin/sort/bwstring.c
719
if (s1[i] == 0) {
usr.bin/sort/coll.c
1000
s1 = kv1->k;
usr.bin/sort/coll.c
1004
bwsprintf(stdout, s1, "; k1=<", ">");
usr.bin/sort/coll.c
1008
if (s1 == s2)
usr.bin/sort/coll.c
1022
MD5Update(&ctx1, bwsrawdata(s1), bwsrawlen(s1));
usr.bin/sort/coll.c
1043
struct bwstring *s1, *s2;
usr.bin/sort/coll.c
1045
s1 = kv1->k;
usr.bin/sort/coll.c
1049
bwsprintf(stdout, s1, "; k1=<", ">");
usr.bin/sort/coll.c
1053
if (s1 == s2)
usr.bin/sort/coll.c
1056
return (vcmp(s1, s2));
usr.bin/sort/coll.c
516
top_level_str_coll(const struct bwstring *s1, const struct bwstring *s2)
usr.bin/sort/coll.c
522
tmp = s1;
usr.bin/sort/coll.c
523
s1 = s2;
usr.bin/sort/coll.c
527
return (bwscoll(s1, s2, 0));
usr.bin/sort/coll.c
811
struct bwstring *s1, *s2;
usr.bin/sort/coll.c
819
s1 = kv1->k;
usr.bin/sort/coll.c
828
bwsprintf(stdout, s1, "; k1=<", ">");
usr.bin/sort/coll.c
832
if (s1 == s2)
usr.bin/sort/coll.c
837
read_number(s1, &sign1, smain1, &main1, sfrac1, &frac1, &SI1);
usr.bin/sort/coll.c
902
read_number(s1, &sign1, smain1, &main1, sfrac1, &frac1, &SI1);
usr.bin/sort/coll.c
995
struct bwstring *s1, *s2;
usr.bin/sort/file.c
391
struct bwstring *s1, *s2, *s1disorder, *s2disorder;
usr.bin/sort/file.c
397
s1 = s2 = s1disorder = s2disorder = NULL;
usr.bin/sort/file.c
411
s1 = file_reader_readline(fr);
usr.bin/sort/file.c
412
if (s1 == NULL)
usr.bin/sort/file.c
416
preproc(s1, ka1);
usr.bin/sort/file.c
429
bwsprintf(stdout, s1, "s2=<", ">");
usr.bin/sort/file.c
437
cmp = top_level_str_coll(s2, s1);
usr.bin/sort/file.c
449
s1disorder = bwsdup(s1);
usr.bin/sort/file.c
457
clean_keys_array(s1, ka1);
usr.bin/sort/file.c
462
bwsfree(s1);
usr.bin/sort/file.c
463
s1 = s2;
usr.bin/sort/file.c
475
clean_keys_array(s1, ka1);
usr.bin/sort/file.c
479
if (s1)
usr.bin/sort/file.c
480
bwsfree(s1);
usr.bin/sort/vsort.c
200
vcmp(struct bwstring *s1, struct bwstring *s2)
usr.bin/sort/vsort.c
207
if (s1 == s2)
usr.bin/sort/vsort.c
210
cmp_bytes = bwscmp(s1, s2, 0);
usr.bin/sort/vsort.c
214
len1 = slen1 = BWSLEN(s1);
usr.bin/sort/vsort.c
222
si1 = bws_begin(s1);
usr.bin/sort/vsort.c
251
find_suffix(si1, bws_end(s1), &len1);
usr.bin/sort/vsort.h
36
int vcmp(struct bwstring *s1, struct bwstring *s2);
usr.bin/systat/cmds.c
183
prefix(const char *s1, const char *s2)
usr.bin/systat/cmds.c
186
while (*s1 == *s2) {
usr.bin/systat/cmds.c
187
if (*s1 == '\0')
usr.bin/systat/cmds.c
189
s1++, s2++;
usr.bin/systat/cmds.c
191
return (*s1 == '\0');
usr.bin/systat/devs.c
169
dscmd(const char *cmd, const char *args, int maxshowdevs, struct statinfo *s1)
usr.bin/systat/devs.c
174
return(dsselect(args, DS_SELECT_ADDONLY, maxshowdevs, s1));
usr.bin/systat/devs.c
176
return(dsselect(args, DS_SELECT_REMOVE, maxshowdevs, s1));
usr.bin/systat/devs.c
178
return(dsselect(args, DS_SELECT_ONLY, maxshowdevs, s1));
usr.bin/systat/devs.c
180
return(dsmatchselect(args, DS_SELECT_ONLY, maxshowdevs, s1));
usr.bin/systat/devs.c
184
s1->dinfo->devices, num_devices,
usr.bin/systat/devs.c
202
printw("%s%d ", s1->dinfo->devices[i].device_name,
usr.bin/systat/devs.c
203
s1->dinfo->devices[i].unit_number);
usr.bin/systat/devs.c
212
struct statinfo *s1)
usr.bin/systat/devs.c
265
s1->dinfo->devices, num_devices, matches, num_matches,
usr.bin/systat/devs.c
277
struct statinfo *s1)
usr.bin/systat/devs.c
348
s1->dinfo->devices, num_devices, NULL, 0,
usr.bin/systat/devs.c
95
int maxshowdevs, struct statinfo *s1);
usr.bin/systat/devs.c
97
int maxshowdevs, struct statinfo *s1);
usr.bin/systat/vmstat.c
116
} s, s1, s2, z;
usr.bin/systat/vmstat.c
123
#define oldnchtotal s1.nchstats
usr.bin/systat/vmstat.c
263
allocinfo(&s1);
usr.bin/systat/vmstat.c
270
copyinfo(&s2, &s1);
usr.bin/systat/vmstat.c
360
#define X(fld) {t=s.fld[i]; s.fld[i]-=s1.fld[i]; if(state==TIME) s1.fld[i]=t;}
usr.bin/systat/vmstat.c
362
#define Y(fld) {t = s.fld; s.fld -= s1.fld; if(state == TIME) s1.fld = t;}
usr.bin/systat/vmstat.c
363
#define Z(fld) {t = s.nchstats.fld; s.nchstats.fld -= s1.nchstats.fld; \
usr.bin/systat/vmstat.c
364
if(state == TIME) s1.nchstats.fld = t;}
usr.bin/systat/vmstat.c
428
s1.nchcount = s.nchcount;
usr.bin/systat/vmstat.c
537
copyinfo(&s2, &s1);
usr.bin/systat/vmstat.c
557
copyinfo(&z, &s1);
usr.bin/systat/vmstat.c
567
getinfo(&s1);
usr.bin/tip/libacu/v3451.c
196
prefix(char *s1, char *s2)
usr.bin/tip/libacu/v3451.c
200
while ((c = *s1++) == *s2++)
usr.bin/tip/tip/cmds.c
983
anyof(char *s1, char *s2)
usr.bin/tip/tip/cmds.c
987
while ((c = *s1++))
usr.bin/tr/tr.c
125
delete = setup(argv[0], &s1, cflag, Cflag);
usr.bin/tr/tr.c
147
delete = setup(argv[0], &s1, cflag, Cflag);
usr.bin/tr/tr.c
162
squeeze = setup(argv[0], &s1, cflag, Cflag);
usr.bin/tr/tr.c
190
s1.str = argv[0];
usr.bin/tr/tr.c
209
while (next(&s1)) {
usr.bin/tr/tr.c
211
if (s1.state == CCLASS_LOWER &&
usr.bin/tr/tr.c
213
s1.cnt == 1 && s2.cnt == 1) {
usr.bin/tr/tr.c
215
ch = towupper(s1.lastch);
usr.bin/tr/tr.c
216
cmap_add(map, s1.lastch, ch);
usr.bin/tr/tr.c
219
if (!next(&s1))
usr.bin/tr/tr.c
221
} while (s1.state == CCLASS_LOWER && s1.cnt > 1);
usr.bin/tr/tr.c
228
} else if (s1.state == CCLASS_UPPER &&
usr.bin/tr/tr.c
230
s1.cnt == 1 && s2.cnt == 1) {
usr.bin/tr/tr.c
232
ch = towlower(s1.lastch);
usr.bin/tr/tr.c
233
cmap_add(map, s1.lastch, ch);
usr.bin/tr/tr.c
236
if (!next(&s1))
usr.bin/tr/tr.c
238
} while (s1.state == CCLASS_UPPER && s1.cnt > 1);
usr.bin/tr/tr.c
245
} else if (s1.state == CCLASS &&
usr.bin/tr/tr.c
247
s1.cnt == 1 && s2.cnt == 1) {
usr.bin/tr/tr.c
249
ch = towupper(s1.lastch);
usr.bin/tr/tr.c
250
cmap_add(map, s1.lastch, ch);
usr.bin/tr/tr.c
253
if (!next(&s1))
usr.bin/tr/tr.c
255
} while (s1.state == CCLASS && s1.cnt > 1);
usr.bin/tr/tr.c
262
} else if (s1.state == CCLASS &&
usr.bin/tr/tr.c
264
s1.cnt == 1 && s2.cnt == 1) {
usr.bin/tr/tr.c
266
ch = towlower(s1.lastch);
usr.bin/tr/tr.c
267
cmap_add(map, s1.lastch, ch);
usr.bin/tr/tr.c
270
if (!next(&s1))
usr.bin/tr/tr.c
272
} while (s1.state == CCLASS && s1.cnt > 1);
usr.bin/tr/tr.c
280
cmap_add(map, s1.lastch, s2.lastch);
usr.bin/tr/tr.c
52
static STR s1 = { STRING1, NORMAL, 0, OOBCH, 0, { 0, OOBCH }, NULL, NULL };
usr.bin/tsort/tsort.c
192
add_arc(char *s1, char *s2)
usr.bin/tsort/tsort.c
198
n1 = get_node(s1);
usr.bin/tsort/tsort.c
200
if (!strcmp(s1, s2))
usr.bin/uniq/uniq.c
285
inlcmp(const char *s1, const char *s2)
usr.bin/uniq/uniq.c
289
while (*s1 == *s2++)
usr.bin/uniq/uniq.c
290
if (*s1++ == '\0')
usr.bin/uniq/uniq.c
292
c1 = (unsigned char)*s1;
usr.bin/vgrind/regexp.c
339
register char *ptr,*s1; /* temporary pointer */
usr.bin/vgrind/regexp.c
429
s1 = s;
usr.bin/vgrind/regexp.c
431
ptr = expmatch(s1, MNEXT(cs), mstring);
usr.bin/vgrind/regexp.c
432
if (ptr != NULL && s1 != s) {
usr.bin/vgrind/regexp.c
435
strncpy (mstring, s, s1 - s);
usr.bin/vgrind/regexp.c
436
mstring[s1 - s] = '\0';
usr.bin/vgrind/regexp.c
447
if (!(isalnum(*s1) || *s1 == '_' ||
usr.bin/vgrind/regexp.c
449
*s1 == '~' ||
usr.bin/vgrind/regexp.c
451
(strlen(s1) > 1 && *s1 == ':' && s1[1] == ':' &&
usr.bin/vgrind/regexp.c
452
(s1++, true))))
usr.bin/vgrind/regexp.c
454
if (*s1 == '\\')
usr.bin/vgrind/regexp.c
458
} while (*s1++);
usr.bin/vgrind/regexp.c
468
s1 = s;
usr.bin/vgrind/regexp.c
470
ptr = expmatch(s1, MNEXT(cs), mstring);
usr.bin/vgrind/regexp.c
471
if (ptr != NULL && s1 != s) {
usr.bin/vgrind/regexp.c
484
if (*s1 == '\\')
usr.bin/vgrind/regexp.c
488
} while (*s1++);
usr.bin/vgrind/regexp.c
54
STRNCMP(register char *s1, register char *s2, register int len)
usr.bin/vgrind/regexp.c
58
if (*s2 - makelower(*s1))
usr.bin/vgrind/regexp.c
59
return (*s2 - makelower(*s1));
usr.bin/vgrind/regexp.c
62
s1++;
usr.bin/vgrind/regexp.c
67
if (*s2 - *s1)
usr.bin/vgrind/regexp.c
68
return (*s2 - *s1);
usr.bin/vgrind/regexp.c
71
s1++;
usr.bin/xargs/strnsubst.c
35
char *s1, *s2, *this;
usr.bin/xargs/strnsubst.c
38
s1 = *str;
usr.bin/xargs/strnsubst.c
39
if (s1 == NULL)
usr.bin/xargs/strnsubst.c
51
maxsize = strlen(s1) + 1;
usr.bin/xargs/strnsubst.c
60
if (match == NULL || replstr == NULL || maxsize == strlen(s1)) {
usr.bin/xargs/strnsubst.c
61
strlcpy(s2, s1, maxsize);
usr.bin/xargs/strnsubst.c
66
this = strstr(s1, match);
usr.bin/xargs/strnsubst.c
69
if ((strlen(s2) + strlen(s1) + strlen(replstr) -
usr.bin/xargs/strnsubst.c
71
strlcat(s2, s1, maxsize);
usr.bin/xargs/strnsubst.c
75
strncat(s2, s1, (uintptr_t)this - (uintptr_t)s1);
usr.bin/xargs/strnsubst.c
77
s1 = this + strlen(match);
usr.bin/xargs/strnsubst.c
79
strcat(s2, s1);
usr.sbin/autofs/common.c
102
s1last = s1[strlen(s1) - 1];
usr.sbin/autofs/common.c
112
ret = asprintf(&result, "%s%s", s1, s2 + 1);
usr.sbin/autofs/common.c
114
s1[0] == '\0' || s2[0] == '\0') {
usr.sbin/autofs/common.c
115
ret = asprintf(&result, "%s%s", s1, s2);
usr.sbin/autofs/common.c
117
ret = asprintf(&result, "%s%c%s", s1, separator, s2);
usr.sbin/autofs/common.c
88
concat(const char *s1, char separator, const char *s2)
usr.sbin/autofs/common.c
94
if (s1 == NULL)
usr.sbin/autofs/common.c
95
s1 = "";
usr.sbin/autofs/common.c
99
if (s1[0] == '\0')
usr.sbin/autofs/common.h
72
char *concat(const char *s1, char separator, const char *s2);
usr.sbin/bluetooth/rfcomm_pppd/rfcomm_pppd.c
327
int s1 = accept(s, (struct sockaddr *) &sock_addr, &len);
usr.sbin/bluetooth/rfcomm_pppd/rfcomm_pppd.c
329
if (s1 < 0) {
usr.sbin/bluetooth/rfcomm_pppd/rfcomm_pppd.c
365
exec_ppp(s1, NULL, label);
usr.sbin/bluetooth/rfcomm_pppd/rfcomm_pppd.c
367
close(s1);
usr.sbin/boot0cfg/boot0cfg.c
549
char *s, *s1;
usr.sbin/boot0cfg/boot0cfg.c
554
for (s1 = s; (q = strtok(s1, ",")); s1 = NULL) {
usr.sbin/cdcontrol/cdcontrol.c
527
unsigned m1, m2, s1, s2, f1, f2;
usr.sbin/cdcontrol/cdcontrol.c
532
&tr1, &m1, &s1, &f1, &tr2, &m2, &s2, &f2))
usr.sbin/cdcontrol/cdcontrol.c
537
&tr1, &m1, &s1, &tr2, &m2, &s2, &f2))
usr.sbin/cdcontrol/cdcontrol.c
542
&tr1, &m1, &s1, &f1, &tr2, &m2, &s2))
usr.sbin/cdcontrol/cdcontrol.c
547
&tr1, &m1, &s1, &f1, &m2, &s2, &f2))
usr.sbin/cdcontrol/cdcontrol.c
552
&tr1, &m1, &s1, &f1, &m2, &s2))
usr.sbin/cdcontrol/cdcontrol.c
557
&tr1, &m1, &s1, &m2, &s2, &f2))
usr.sbin/cdcontrol/cdcontrol.c
562
&tr1, &m1, &s1, &f1, &tr2, &m2))
usr.sbin/cdcontrol/cdcontrol.c
566
if (5 == sscanf (arg, "%d %d:%d %d:%d", &tr1, &m1, &s1, &m2, &s2))
usr.sbin/cdcontrol/cdcontrol.c
571
&tr1, &m1, &s1, &tr2, &m2))
usr.sbin/cdcontrol/cdcontrol.c
576
&tr1, &m1, &s1, &f1, &tr2))
usr.sbin/cdcontrol/cdcontrol.c
580
if (4 == sscanf (arg, "%d %d:%d %d", &tr1, &m1, &s1, &tr2))
usr.sbin/cdcontrol/cdcontrol.c
584
if (4 == sscanf (arg, "%d %d:%d.%d", &tr1, &m1, &s1, &f1))
usr.sbin/cdcontrol/cdcontrol.c
588
if (3 == sscanf (arg, "%d %d:%d", &tr1, &m1, &s1))
usr.sbin/cdcontrol/cdcontrol.c
611
&& ((s1 > ts)
usr.sbin/cdcontrol/cdcontrol.c
612
|| ((s1 == ts)
usr.sbin/cdcontrol/cdcontrol.c
620
s1 += f1 / 75;
usr.sbin/cdcontrol/cdcontrol.c
624
s1 += ts;
usr.sbin/cdcontrol/cdcontrol.c
625
if (s1 >= 60) {
usr.sbin/cdcontrol/cdcontrol.c
626
m1 += s1 / 60;
usr.sbin/cdcontrol/cdcontrol.c
627
s1 %= 60;
usr.sbin/cdcontrol/cdcontrol.c
641
s2 += s1;
usr.sbin/cdcontrol/cdcontrol.c
706
return (play_msf (m1, s1, f1, m2, s2, f2));
usr.sbin/cdcontrol/cdcontrol.c
710
&m1, &s1, &f1, &m2, &s2, &f2) &&
usr.sbin/cdcontrol/cdcontrol.c
711
5 != sscanf (arg, "%d:%d.%d%d:%d", &m1, &s1, &f1, &m2, &s2) &&
usr.sbin/cdcontrol/cdcontrol.c
712
5 != sscanf (arg, "%d:%d%d:%d.%d", &m1, &s1, &m2, &s2, &f2) &&
usr.sbin/cdcontrol/cdcontrol.c
713
3 != sscanf (arg, "%d:%d.%d", &m1, &s1, &f1) &&
usr.sbin/cdcontrol/cdcontrol.c
714
4 != sscanf (arg, "%d:%d%d:%d", &m1, &s1, &m2, &s2) &&
usr.sbin/cdcontrol/cdcontrol.c
715
2 != sscanf (arg, "%d:%d", &m1, &s1))
usr.sbin/cdcontrol/cdcontrol.c
731
return play_msf (m1, s1, f1, m2, s2, f2);
usr.sbin/fdread/fdutil.c
173
char *s1;
usr.sbin/fdread/fdutil.c
182
s1 = strdup(s);
usr.sbin/fdread/fdutil.c
183
if (s1 == NULL)
usr.sbin/fdread/fdutil.c
187
s1 = malloc(cp - s + 1);
usr.sbin/fdread/fdutil.c
188
if (s1 == NULL)
usr.sbin/fdread/fdutil.c
190
memcpy(s1, s, cp - s);
usr.sbin/fdread/fdutil.c
191
s1[cp - s] = 0;
usr.sbin/fdread/fdutil.c
195
if (strlen(s1) == 0) {
usr.sbin/fdread/fdutil.c
196
free(s1);
usr.sbin/fdread/fdutil.c
202
if (getnum(s1, &out->sectrac))
usr.sbin/fdread/fdutil.c
204
"bad numeric value for sectrac: %s", s1);
usr.sbin/fdread/fdutil.c
208
if (getnum(s1, &j))
usr.sbin/fdread/fdutil.c
210
"bad numeric value for secsize: %s", s1);
usr.sbin/fdread/fdutil.c
220
if (getnum(s1, &j))
usr.sbin/fdread/fdutil.c
222
"bad numeric value for datalen: %s", s1);
usr.sbin/fdread/fdutil.c
229
if (getnum(s1, &out->gap))
usr.sbin/fdread/fdutil.c
231
"bad numeric value for gap: %s", s1);
usr.sbin/fdread/fdutil.c
235
if (getnum(s1, &j))
usr.sbin/fdread/fdutil.c
237
"bad numeric value for ncyls: %s", s1);
usr.sbin/fdread/fdutil.c
244
if (getnum(s1, &j))
usr.sbin/fdread/fdutil.c
246
"bad numeric value for speed: %s", s1);
usr.sbin/fdread/fdutil.c
286
if (getnum(s1, &j))
usr.sbin/fdread/fdutil.c
288
"bad numeric value for heads: %s", s1);
usr.sbin/fdread/fdutil.c
296
if (getnum(s1, &out->f_gap))
usr.sbin/fdread/fdutil.c
298
"bad numeric value for f_gap: %s", s1);
usr.sbin/fdread/fdutil.c
302
if (getnum(s1, &out->f_inter))
usr.sbin/fdread/fdutil.c
304
"bad numeric value for f_inter: %s", s1);
usr.sbin/fdread/fdutil.c
308
if (getnum(s1, &out->offset_side2))
usr.sbin/fdread/fdutil.c
310
"bad numeric value for offs2: %s", s1);
usr.sbin/fdread/fdutil.c
314
if (strcmp(s1, "+mfm") == 0)
usr.sbin/fdread/fdutil.c
316
else if (strcmp(s1, "-mfm") == 0)
usr.sbin/fdread/fdutil.c
318
else if (strcmp(s1, "+auto") == 0)
usr.sbin/fdread/fdutil.c
320
else if (strcmp(s1, "-auto") == 0)
usr.sbin/fdread/fdutil.c
322
else if (strcmp(s1, "+2step") == 0)
usr.sbin/fdread/fdutil.c
324
else if (strcmp(s1, "-2step") == 0)
usr.sbin/fdread/fdutil.c
326
else if (strcmp(s1, "+perpnd") == 0)
usr.sbin/fdread/fdutil.c
328
else if (strcmp(s1, "-perpnd") == 0)
usr.sbin/fdread/fdutil.c
331
errx(EX_USAGE, "bad flag: %s", s1);
usr.sbin/fdread/fdutil.c
334
free(s1);
usr.sbin/kbdcontrol/kbdcontrol.c
122
static char * mkfullname(const char *s1, const char *s2, const char *s3);
usr.sbin/kbdcontrol/kbdcontrol.c
171
mkfullname(const char *s1, const char *s2, const char *s3)
usr.sbin/kbdcontrol/kbdcontrol.c
177
f = strlen(s1) + strlen(s2) + strlen(s3) + 1;
usr.sbin/kbdcontrol/kbdcontrol.c
190
strcpy(buf, s1);
usr.sbin/mfiutil/mfi_drive.c
653
char *s1;
usr.sbin/mfiutil/mfi_drive.c
662
for (s1 = av[2]; *s1 != '\0'; s1++)
usr.sbin/mfiutil/mfi_drive.c
663
*s1 = tolower(*s1);
usr.sbin/mptutil/mpt_volume.c
206
char *s1;
usr.sbin/mptutil/mpt_volume.c
215
for (s1 = av[2]; *s1 != '\0'; s1++)
usr.sbin/mptutil/mpt_volume.c
216
*s1 = tolower(*s1);
usr.sbin/sa/main.c
375
cmp_comm(const char *s1, const char *s2)
usr.sbin/sa/main.c
379
rv = strcmp(s1, s2);
usr.sbin/syslogd/syslogd.c
3036
int s1;
usr.sbin/syslogd/syslogd.c
3038
s1 = maybe_dup_forw_socket(nvl, ai->ai_addr,
usr.sbin/syslogd/syslogd.c
3040
if (s1 < 0)
usr.sbin/syslogd/syslogd.c
3043
s = s1;