Searched refs:u16_strncmp (Results 1 – 3 of 3) sorted by relevance
/external/u-boot/include/ |
D | charset.h | 183 int u16_strncmp(const u16 *s1, const u16 *s2, size_t n); 184 #define u16_strcmp(s1, s2) u16_strncmp((s1), (s2), SIZE_MAX)
|
/external/u-boot/test/ |
D | unicode_ut.c | 572 ut_assert(u16_strncmp(L"abc", L"abc", 3) == 0); in unicode_test_u16_strncmp() 573 ut_assert(u16_strncmp(L"abcdef", L"abcghi", 3) == 0); in unicode_test_u16_strncmp() 574 ut_assert(u16_strncmp(L"abcdef", L"abcghi", 6) < 0); in unicode_test_u16_strncmp() 575 ut_assert(u16_strncmp(L"abcghi", L"abcdef", 6) > 0); in unicode_test_u16_strncmp()
|
/external/u-boot/lib/ |
D | charset.c | 350 int u16_strncmp(const u16 *s1, const u16 *s2, size_t n) in u16_strncmp() function
|