Home
last modified time | relevance | path

Searched refs:s2 (Results 1 – 10 of 10) sorted by relevance

/include/linux/
Dzutil.h57 #define DO1(buf,i) {s1 += buf[i]; s2 += s1;}
83 unsigned long s2 = (adler >> 16) & 0xffff; in zlib_adler32() local
98 s2 += s1; in zlib_adler32()
101 s2 %= BASE; in zlib_adler32()
103 return (s2 << 16) | s1; in zlib_adler32()
Dprandom.h17 __u32 s1, s2, s3, s4; member
45 state->s2 = __seed(i, 8U); in prandom_seed_state()
Dunicode.h59 const struct qstr *s1, const struct qstr *s2);
62 const struct qstr *s1, const struct qstr *s2);
Dnls.h77 const unsigned char *s2, int len) in nls_strnicmp() argument
80 if (nls_tolower(t, *s1++) != nls_tolower(t, *s2++)) in nls_strnicmp()
Dstring.h94 extern int strcasecmp(const char *s1, const char *s2);
97 extern int strncasecmp(const char *s1, const char *s2, size_t n);
226 extern bool sysfs_streq(const char *s1, const char *s2);
Dof.h902 #define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2)) argument
903 #define of_prop_cmp(s1, s2) strcmp((s1), (s2)) argument
904 #define of_node_cmp(s1, s2) strcasecmp((s1), (s2)) argument
/include/crypto/
Daria.h108 static const u32 s2[256] = { variable
347 s2[get_u8(*t0, 1)] ^ in aria_sbox_layer1_with_pre_diff()
351 s2[get_u8(*t1, 1)] ^ in aria_sbox_layer1_with_pre_diff()
355 s2[get_u8(*t2, 1)] ^ in aria_sbox_layer1_with_pre_diff()
359 s2[get_u8(*t3, 1)] ^ in aria_sbox_layer1_with_pre_diff()
371 s2[get_u8(*t0, 3)]; in aria_sbox_layer2_with_pre_diff()
375 s2[get_u8(*t1, 3)]; in aria_sbox_layer2_with_pre_diff()
379 s2[get_u8(*t2, 3)]; in aria_sbox_layer2_with_pre_diff()
383 s2[get_u8(*t3, 3)]; in aria_sbox_layer2_with_pre_diff()
Dutils.h43 unsigned long *s2 = (unsigned long *)src2; in crypto_xor_cpy() local
47 l = get_unaligned(s1++) ^ get_unaligned(s2++); in crypto_xor_cpy()
/include/ufs/
Dufs_quirks.h10 #define STR_PRFX_EQUAL(s1, s2) !strncmp(s1, s2, strlen(s1)) argument
/include/net/
Dxfrm.h922 static inline bool xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2) in xfrm_sec_ctx_match() argument
924 return ((!s1 && !s2) || in xfrm_sec_ctx_match()
925 (s1 && s2 && in xfrm_sec_ctx_match()
926 (s1->ctx_sid == s2->ctx_sid) && in xfrm_sec_ctx_match()
927 (s1->ctx_doi == s2->ctx_doi) && in xfrm_sec_ctx_match()
928 (s1->ctx_alg == s2->ctx_alg))); in xfrm_sec_ctx_match()
931 static inline bool xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2) in xfrm_sec_ctx_match() argument