Home
last modified time | relevance | path

Searched refs:wctomb (Results 1 - 25 of 26) sorted by relevance

12

/third_party/musl/libc-test/src/functionalext/supplement/multibyte/
H A Dwctomb.c25 * @tc.desc : Test the wctomb method to copy wide characters into a string
31 int result = wctomb(byte, L'h'); in wctomb_0100()
33 t_error("%s wctomb get result is %d are not want 1\n", __func__, result); in wctomb_0100()
39 * @tc.desc : Test the result of wctomb when the incoming wide character is the terminator
45 int result = wctomb(byte, L'\0'); in wctomb_0200()
47 t_error("%s wctomb get result is %d are not want 1\n", __func__, result); in wctomb_0200()
53 * @tc.desc : wctomb result when test string is NULL
58 int result = wctomb(NULL, L'h'); in wctomb_0300()
60 t_error("%s wctomb get result is %d are not want 0\n", __func__, result); in wctomb_0300()
66 * @tc.desc : wctomb resul
[all...]
/third_party/musl/src/stdio/
H A Dfputwc.c19 l = wctomb((void *)f->wpos, c); in __fputwc_unlocked()
23 l = wctomb(mbc, c); in __fputwc_unlocked()
H A Dvfprintf.c633 for (i=l=0; i<p && *ws && (l=wctomb(mb, *ws++))>=0 && l<=p-i; i+=l); in printf_core()
639 for (i=0; i<0U+p && *ws && i+(l=wctomb(mb, *ws++))<=p; i+=l) in printf_core()
H A Dvfwscanf.c268 int l = wctomb(s?s+i:tmp, c); in vfwscanf()
/third_party/musl/porting/uniproton/kernel/src/multibyte/
H A Dwctomb.c4 int wctomb(char *s, wchar_t wc) in wctomb() function
/third_party/musl/porting/liteos_m/kernel/src/multibyte/
H A Dwctomb.c4 int wctomb(char *s, wchar_t wc) in wctomb() function
/third_party/musl/src/multibyte/
H A Dwctomb.c4 int wctomb(char *s, wchar_t wc) in wctomb() function
/third_party/musl/porting/liteos_a/kernel/src/multibyte/
H A Dwctomb.c4 int wctomb(char *s, wchar_t wc) in wctomb() function
/third_party/bounds_checking_function/src/
H A Dsecurecutil.c26 int wctomb(char *s, wchar_t wc) in wctomb() function
/third_party/musl/porting/liteos_m/kernel/include/
H A Dstdlib.h73 int wctomb (char *, wchar_t);
/third_party/musl/porting/liteos_m/user/include/
H A Dstdlib.h72 int wctomb (char *, wchar_t);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dstdlib.h75 int wctomb (char *, wchar_t);
/third_party/musl/porting/uniproton/kernel/include/
H A Dstdlib.h73 int wctomb (char *, wchar_t);
/third_party/musl/libc-test/src/api/
H A Dstdlib.c65 {int(*p)(char*,wchar_t) = wctomb;} in f()
/third_party/musl/porting/linux/user/include/
H A Dstdlib.h74 int wctomb (char *, wchar_t);
/third_party/musl/include/
H A Dstdlib.h75 int wctomb (char *, wchar_t);
/third_party/musl/porting/liteos_a/kernel/src/stdio/
H A Dvfprintf.c620 for (i=l=0; i<p && *ws && (l=wctomb(mb, *ws++))>=0 && l<=p-i; i+=l); in printf_core()
626 for (i=0; i<0U+p && *ws && i+(l=wctomb(mb, *ws++))<=p; i+=l) in printf_core()
/third_party/musl/porting/linux/user/src/stdio/
H A Dvfprintf.c625 for (i=l=0; i<p && *ws && (l=wctomb(mb, *ws++))>=0 && l<=p-i; i+=l); in printf_core()
631 for (i=0; i<0U+p && *ws && i+(l=wctomb(mb, *ws++))<=p; i+=l) in printf_core()
/third_party/musl/porting/liteos_m/kernel/src/stdio/
H A Dvfprintf.c621 for (i=l=0; i<p && *ws && (l=wctomb(mb, *ws++))>=0 && l<=p-i; i+=l); in printf_core()
627 for (i=0; i<0U+p && *ws && i+(l=wctomb(mb, *ws++))<=p; i+=l) in printf_core()
/third_party/musl/porting/uniproton/kernel/src/stdio/
H A Dvfprintf.c621 for (i=l=0; i<p && *ws && (l=wctomb(mb, *ws++))>=0 && l<=p-i; i+=l); in printf_core()
627 for (i=0; i<0U+p && *ws && i+(l=wctomb(mb, *ws++))<=p; i+=l) in printf_core()
/third_party/ntfs-3g/libntfs-3g/
H A Dunistr.c942 wctomb(NULL, 0); in ntfs_ucstombs()
968 cnt = wctomb(mbs + o, wc); in ntfs_ucstombs()
/third_party/musl/porting/uniproton/kernel/src/locale/
H A Diconv.c198 #define wctomb_utf8 wctomb
/third_party/musl/porting/liteos_m/kernel/src/locale/
H A Diconv.c198 #define wctomb_utf8 wctomb
/third_party/musl/src/locale/
H A Diconv.c198 #define wctomb_utf8 wctomb
/third_party/rust/crates/libc/src/solid/
H A Dmod.rs575 pub fn wctomb(arg1: *mut c_char, arg2: wchar_t) -> c_int; in wctomb() functions

Completed in 16 milliseconds

12