Home
last modified time | relevance | path

Searched refs:wcsncmp (Results 1 - 21 of 21) sorted by relevance

/third_party/musl/libc-test/src/functionalext/supplement/string/
H A Dwcsncmp.c23 * @tc.desc : Test the wcsncmp function to compare the first n bits of two wide strings
28 int result = wcsncmp(L"aaaa", L"aaab", 3); in wcsncmp_0100()
30 t_error("%s wcsncmp get result is %d are not 0", __func__, result); in wcsncmp_0100()
36 * @tc.desc : Test the wcsncmp result when comparing the top 0 bits
41 int result = wcsncmp(L"foo", L"bar", 0); in wcsncmp_0200()
43 t_error("%s wcsncmp get result is %d are not 0", __func__, result); in wcsncmp_0200()
49 * @tc.desc : Test wcsncmp result when first wide string is lexicographically lower than second wide string
54 int result = wcsncmp(L"aaaa", L"aaab", 4); in wcsncmp_0300()
56 t_error("%s wcsncmp get result is %d are not less 0", __func__, result); in wcsncmp_0300()
62 * @tc.desc : Test wcsncmp resul
[all...]
H A Dwmemcpy.c32 if (wcsncmp(dest, src, n)) { in wmemcpy_0100()
48 if (wcsncmp(dest, src, n)) { in wmemcpy_0200()
H A Dwmemmove.c34 if (wcsncmp(dest, tmp, count)) { in wmemmove_0100()
52 if (wcsncmp(dest, tmp, count)) { in wmemmove_0200()
/third_party/musl/src/string/
H A Dwcsncmp.c3 int wcsncmp(const wchar_t *l, const wchar_t *r, size_t n) in wcsncmp() function
/third_party/musl/libc-test/src/functionalext/supplement/stdio/
H A Dvswprintf.c59 if (wcsncmp(buffer, L"3.0", 3)) { in vswprintf_0200()
/third_party/musl/libc-test/src/api/
H A Dwchar.c56 {int(*p)(const wchar_t*,const wchar_t*,size_t) = wcsncmp;} in f()
/third_party/python/PC/
H A Dlauncher.c556 if ((wcsncmp(ip->version, wanted_ver, n) == 0) && in find_python_by_version()
1069 if (wcsncmp(shebang_line, vpp->shebang, plen) == 0) { in parse_shebang()
1443 if (wcsncmp(command, L"python", 6)) in maybe_handle_shebang()
1971 (!wcsncmp(p, L"-0", wcslen(L"-0")) || in process()
1972 !wcsncmp(p, L"--list", wcslen(L"--list")))) in process()
H A Dlauncher2.c1132 } else if (0 == wcsncmp(search->tag, L"3", search->tagLength)) { in checkDefaults()
1135 } else if (0 == wcsncmp(search->tag, L"2", search->tagLength)) { in checkDefaults()
/third_party/musl/porting/liteos_m/kernel/include/
H A Dwchar.h59 int wcsncmp (const wchar_t *, const wchar_t *, size_t);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dwchar.h59 int wcsncmp (const wchar_t *, const wchar_t *, size_t);
/third_party/musl/porting/uniproton/kernel/include/
H A Dwchar.h59 int wcsncmp (const wchar_t *, const wchar_t *, size_t);
/third_party/musl/include/
H A Dwchar.h59 int wcsncmp (const wchar_t *, const wchar_t *, size_t);
/third_party/python/Python/
H A Dpreconfig.c581 if (wcsncmp(option, name, len) == 0 && name[len] == L'\0') { in _Py_get_xoption()
/third_party/libuv/src/win/
H A Dfs.c1189 if (len < num_x || wcsncmp(ep - num_x, L"XXXXXX", num_x)) { in fs__mktemp()
2374 is_long_path = wcsncmp(path, LONG_PATH_PREFIX, LONG_PATH_PREFIX_LEN) == 0; in fs__create_junction()
2630 if (wcsncmp(w_realpath_ptr, in fs__realpath_handle()
2636 } else if (wcsncmp(w_realpath_ptr, in fs__realpath_handle()
H A Dutil.c1576 if (wcsncmp(product_name_w, L"Windows 10", ARRAY_SIZE(L"Windows 10") - 1) == 0) { in uv_os_uname()
/third_party/node/deps/uv/src/win/
H A Dfs.c1255 if (len < num_x || wcsncmp(ep - num_x, L"XXXXXX", num_x)) { in fs__mktemp()
2393 is_long_path = wcsncmp(path, LONG_PATH_PREFIX, LONG_PATH_PREFIX_LEN) == 0; in fs__create_junction()
2645 if (wcsncmp(w_realpath_ptr, in fs__realpath_handle()
2651 } else if (wcsncmp(w_realpath_ptr, in fs__realpath_handle()
/third_party/python/Modules/
H A D_winapi.c559 if (wcsncmp(src_path, L"\\??\\", prefix_len) == 0) in _winapi_CreateJunction_impl()
H A Dposixmodule.c1818 int is_unc_like_path = (wcsncmp(new_path, L"\\\\", 2) == 0 || in win32_wchdir()
1819 wcsncmp(new_path, L"//", 2) == 0); in win32_wchdir()
8800 if (nameLen > 4 && wcsncmp(name, L"\\??\\", 4) == 0) { in os_readlink_impl()
/third_party/googletest/googletest/test/
H A Dgtest_unittest.cc1103 EXPECT_EQ(0, wcsncmp(L"str", utf16, 3)); in TEST()
1112 EXPECT_EQ(0, wcsncmp(L".:\\ \"*?", utf16, 3)); in TEST()
/third_party/skia/third_party/externals/expat/expat/tests/
H A Druntests.c83 # define xcstrncmp(s, t, n) wcsncmp((s), (t), (n))
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp284 extern int wcsncmp (const wchar_t *__s1, const wchar_t *__s2, size_t __n)
14054 using ::wcsncmp;
[all...]

Completed in 85 milliseconds