Searched refs:s1 (Results 1 – 3 of 3) sorted by relevance
/lib/ |
D | random32.c | 43 u32 s1, s2, s3; member 52 state->s1 = TAUSWORTHE(state->s1, 13, 19, 4294967294UL, 12); in __random32() 56 return (state->s1 ^ state->s2 ^ state->s3); in __random32() 99 state->s1 = __seed(state->s1 ^ entropy, 1); in srandom32() 116 state->s1 = __seed(LCG(i + jiffies), 1); in random32_init() 117 state->s2 = __seed(LCG(state->s1), 7); in random32_init() 145 state->s1 = __seed(seeds[0], 1); in random32_reseed()
|
D | string.c | 34 int strnicmp(const char *s1, const char *s2, size_t len) in strnicmp() argument 42 c1 = *s1; in strnicmp() 44 s1++; in strnicmp() 64 int strcasecmp(const char *s1, const char *s2) in strcasecmp() argument 69 c1 = tolower(*s1++); in strcasecmp() 78 int strncasecmp(const char *s1, const char *s2, size_t n) in strncasecmp() argument 83 c1 = tolower(*s1++); in strncasecmp() 506 bool sysfs_streq(const char *s1, const char *s2) in sysfs_streq() argument 508 while (*s1 && *s1 == *s2) { in sysfs_streq() 509 s1++; in sysfs_streq() [all …]
|
/lib/lzo/ |
D | lzodefs.h | 41 #define DX2(p, s1, s2) (((((size_t)((p)[2]) << (s2)) ^ (p)[1]) \ argument 42 << (s1)) ^ (p)[0]) 43 #define DX3(p, s1, s2, s3) ((DX2((p)+1, s2, s3) << (s1)) ^ (p)[0]) argument
|