Searched refs:s1 (Results 1 – 9 of 9) sorted by relevance
/include/linux/ |
D | zutil.h | 57 #define DO1(buf,i) {s1 += buf[i]; s2 += s1;} 82 unsigned long s1 = adler & 0xffff; in zlib_adler32() local 97 s1 += *buf++; in zlib_adler32() 98 s2 += s1; in zlib_adler32() 100 s1 %= BASE; in zlib_adler32() 103 return (s2 << 16) | s1; in zlib_adler32()
|
D | unicode.h | 16 const struct qstr *s1, const struct qstr *s2); 19 const struct qstr *s1, const struct qstr *s2); 22 const struct qstr *s1);
|
D | nls.h | 76 static inline int nls_strnicmp(struct nls_table *t, const unsigned char *s1, in nls_strnicmp() argument 80 if (nls_tolower(t, *s1++) != nls_tolower(t, *s2++)) in nls_strnicmp()
|
D | prandom.h | 63 __u32 s1, s2, s3, s4; member 107 state->s1 = __seed(i, 2U); in prandom_seed_state()
|
D | string.h | 94 extern int strcasecmp(const char *s1, const char *s2); 97 extern int strncasecmp(const char *s1, const char *s2, size_t n); 225 extern bool sysfs_streq(const char *s1, const char *s2);
|
D | of.h | 881 #define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2)) argument 882 #define of_prop_cmp(s1, s2) strcmp((s1), (s2)) argument 883 #define of_node_cmp(s1, s2) strcasecmp((s1), (s2)) argument
|
/include/crypto/ |
D | algapi.h | 171 unsigned long *s1 = (unsigned long *)src1; in crypto_xor_cpy() local 175 *d++ = *s1++ ^ *s2++; in crypto_xor_cpy()
|
/include/video/ |
D | newport.h | 27 struct { volatile unsigned short s0, s1; } byshort; member 403 return regs->set.dcbdata0.byshort.s1; in newport_vc2_get() 435 regs->set.dcbdata0.byshort.s1 = addr; in newport_cmap_setaddr()
|
/include/net/ |
D | xfrm.h | 895 static inline bool xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2) in xfrm_sec_ctx_match() argument 897 return ((!s1 && !s2) || in xfrm_sec_ctx_match() 898 (s1 && s2 && in xfrm_sec_ctx_match() 899 (s1->ctx_sid == s2->ctx_sid) && in xfrm_sec_ctx_match() 900 (s1->ctx_doi == s2->ctx_doi) && in xfrm_sec_ctx_match() 901 (s1->ctx_alg == s2->ctx_alg))); in xfrm_sec_ctx_match() 904 static inline bool xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2) in xfrm_sec_ctx_match() argument
|