Searched refs:s1 (Results 1 – 7 of 7) sorted by relevance
/lib/ |
D | string.c | 43 int strncasecmp(const char *s1, const char *s2, size_t len) in strncasecmp() argument 52 c1 = *s1++; in strncasecmp() 69 int strcasecmp(const char *s1, const char *s2) in strcasecmp() argument 74 c1 = tolower(*s1++); in strcasecmp() 703 bool sysfs_streq(const char *s1, const char *s2) in sysfs_streq() argument 705 while (*s1 && *s1 == *s2) { in sysfs_streq() 706 s1++; in sysfs_streq() 710 if (*s1 == *s2) in sysfs_streq() 712 if (!*s1 && *s2 == '\n' && !s2[1]) in sysfs_streq() 714 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 = {{ 266 const struct test_string_1 *s1 = s2->s1; in test_string_find_match() local 279 for (i = 0; i < TEST_STRING_2_MAX_S1 && s1->out; i++, s1++) in test_string_find_match() 280 if (s1->flags == flags) in test_string_find_match() [all …]
|
D | random32.c | 56 state->s1 = TAUSWORTHE(state->s1, 6U, 13U, 4294967294U, 18U); in prandom_u32_state() 61 return (state->s1 ^ state->s2 ^ state->s3 ^ state->s4); in prandom_u32_state() 120 state->s1 = __seed(seeds[0], 2U); in prandom_seed_full_state() 264 state->s1 = __seed(HWSEED() ^ LCG(seed), 2U); in prandom_seed_early() 265 state->s2 = __seed(HWSEED() ^ LCG(state->s1), 8U); in prandom_seed_early()
|
/lib/crypto/ |
D | poly1305-donna64.c | 41 u64 s1, s2; in poly1305_core_blocks() local 59 s1 = key->precomputed_s.r64[0]; in poly1305_core_blocks() 77 d = (u128)h2 * s1; in poly1305_core_blocks()
|
D | poly1305-donna32.c | 37 u32 s1, s2, s3, s4; in poly1305_core_blocks() local 53 s1 = key->precomputed_s.r[0]; in poly1305_core_blocks() 75 ((u64)h4 * s1); in poly1305_core_blocks()
|
D | sha256.c | 35 #define s1(x) (ror32(x, 17) ^ ror32(x, 19) ^ (x >> 10)) macro 44 W[I] = s1(W[I-2]) + W[I-7] + s0(W[I-15]) + W[I-16]; in BLEND_OP()
|
D | curve25519-hacl64.c | 232 u128 s1 = ((((((u128)(d0) * (r1))) + (((u128)(d4) * (r2))))) + in fsquare_fsquare__() local 241 tmp[1] = s1; in fsquare_fsquare__()
|