Searched refs:wcsncasecmp (Results 1 - 10 of 10) sorted by relevance
/third_party/musl/libc-test/src/functionalext/supplement/string/ |
H A D | wcsncasecmp.c | 23 * @tc.desc : Test wcsncasecmp ignore case compares the first n digits of two wide strings 28 int result = wcsncasecmp(L"hello1", L"HELLO2", 5); in wcsncasecmp_0100() 30 t_error("%s wcsncasecmp get result is %d are not want 0\n", __func__, result); in wcsncasecmp_0100() 36 * @tc.desc : Test that wcsncasecmp returns the result when ws1 is greater than ws2 in the dictionary 41 int result = wcsncasecmp(L"hello1", L"HELLO2", 6); in wcsncasecmp_0200() 43 t_error("%s wcsncasecmp get result is %d are not want less 0\n", __func__, result); in wcsncasecmp_0200() 49 * @tc.desc : Test that wcsncasecmp returns the result when ws1 is less than ws2 in the dictionary 54 int result = wcsncasecmp(L"hello2", L"HELLO1", 6); in wcsncasecmp_0300() 56 t_error("%s wcsncasecmp get result is %d are not want gress 0\n", __func__, result); in wcsncasecmp_0300() 62 * @tc.desc : Test that wcsncasecmp return [all...] |
/third_party/musl/src/string/ |
H A D | wcsncasecmp_l.c | 5 return wcsncasecmp(l, r, n); in wcsncasecmp_l()
|
H A D | wcscasecmp.c | 6 return wcsncasecmp(l, r, -1); in wcscasecmp()
|
H A D | wcsncasecmp.c | 4 int wcsncasecmp(const wchar_t *l, const wchar_t *r, size_t n) in wcsncasecmp() function
|
/third_party/musl/libc-test/src/api/ |
H A D | wchar.c | 87 {int(*p)(const wchar_t*,const wchar_t*,size_t) = wcsncasecmp;} in f()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | wchar.h | 171 int wcsncasecmp(const wchar_t *, const wchar_t *, size_t);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | wchar.h | 171 int wcsncasecmp(const wchar_t *, const wchar_t *, size_t);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | wchar.h | 171 int wcsncasecmp(const wchar_t *, const wchar_t *, size_t);
|
/third_party/musl/include/ |
H A D | wchar.h | 172 int wcsncasecmp(const wchar_t *, const wchar_t *, size_t);
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 293 extern int wcsncasecmp (const wchar_t *__s1, const wchar_t *__s2, [all...] |
Completed in 27 milliseconds