Searched refs:s1 (Results 1 – 3 of 3) sorted by relevance
/lib/ |
D | string.c | 41 int strncasecmp(const char *s1, const char *s2, size_t len) in strncasecmp() argument 50 c1 = *s1++; in strncasecmp() 67 int strcasecmp(const char *s1, const char *s2) in strcasecmp() argument 72 c1 = tolower(*s1++); in strcasecmp() 673 bool sysfs_streq(const char *s1, const char *s2) in sysfs_streq() argument 675 while (*s1 && *s1 == *s2) { in sysfs_streq() 676 s1++; in sysfs_streq() 680 if (*s1 == *s2) in sysfs_streq() 682 if (!*s1 && *s2 == '\n' && !s2[1]) in sysfs_streq() 684 if (*s1 == '\n' && !s1[1] && !*s2) in sysfs_streq() [all …]
|
D | test-string_helpers.c | 122 struct test_string_1 s1[TEST_STRING_2_MAX_S1]; member 128 .s1 = {{ 142 .s1 = {{ 156 .s1 = {{ 212 .s1 = {{ 223 .s1 = {{ 231 .s1 = {{ 244 const struct test_string_1 *s1 = s2->s1; in test_string_find_match() local 257 for (i = 0; i < TEST_STRING_2_MAX_S1 && s1->out; i++, s1++) in test_string_find_match() 258 if (s1->flags == flags) in test_string_find_match() [all …]
|
D | random32.c | 52 state->s1 = TAUSWORTHE(state->s1, 6U, 13U, 4294967294U, 18U); in prandom_u32_state() 57 return (state->s1 ^ state->s2 ^ state->s3 ^ state->s4); in prandom_u32_state() 116 state->s1 = __seed(seeds[0], 2U); in prandom_seed_full_state() 259 state->s1 = __seed(HWSEED() ^ LCG(seed), 2U); in prandom_seed_early() 260 state->s2 = __seed(HWSEED() ^ LCG(state->s1), 8U); in prandom_seed_early()
|