Searched refs:s1 (Results 1 – 7 of 7) sorted by relevance
| /subsys/testsuite/ztest/include/zephyr/ |
| A D | ztest_assert.h | 405 #define zassert_str_equal(s1, s2, ...) \ argument 406 zassert(strcmp(s1, s2) == 0, #s1 " not equal to " #s2, ##__VA_ARGS__) 583 #define zassume_str_equal(s1, s2, ...) \ argument 584 zassume(strcmp(s1, s2) == 0, #s1 " not equal to " #s2, ##__VA_ARGS__) 728 #define zexpect_str_equal(s1, s2, ...) \ argument 729 zexpect(strcmp(s1, s2) == 0, #s1 " not equal to " #s2, ##__VA_ARGS__)
|
| /subsys/stats/ |
| A D | Kconfig | 18 form "s0", "s1", etc. Enabling this setting simplifies debugging, 28 form "s0", "s1", etc. Enabling this setting simplifies debugging,
|
| /subsys/bluetooth/audio/ |
| A D | csip_crypto.c | 137 static int s1(const uint8_t *m, size_t m_size, in s1() function 178 err = s1(m, sizeof(m), s1_out); in bt_csip_sef()
|
| /subsys/mgmt/osdp/src/ |
| A D | osdp_sc.c | 98 static int osdp_ct_compare(const void *s1, const void *s2, size_t len) in osdp_ct_compare() argument 101 const uint8_t *_s1 = s1; in osdp_ct_compare()
|
| A D | osdp_cp.c | 100 char *tok, *s1, *s2, addr_buf[32 * CONFIG_OSDP_NUM_CONNECTED_PD]; in osdp_extract_address() local 104 tok = strtok_r(addr_buf, ", ", &s1); in osdp_extract_address() 112 tok = strtok_r(NULL, ", ", &s1); in osdp_extract_address()
|
| /subsys/logging/ |
| A D | log_mgmt.c | 66 union log_source_ids s1 = { .raw = id1 }; in source_id_cmp() local 68 return (s0.id.source_id == s1.id.source_id) && in source_id_cmp() 69 (s0.id.domain_id == s1.id.domain_id); in source_id_cmp()
|
| /subsys/shell/ |
| A D | shell.c | 415 static size_t str_common(const char *s1, const char *s2, size_t n) in str_common() argument 419 while ((n > 0) && (*s1 == *s2) && (*s1 != '\0')) { in str_common() 420 s1++; in str_common()
|
Completed in 41 milliseconds