/third_party/musl/libc-test/src/functionalext/supplement/multibyte/ |
H A D | wctomb.c | 25 * @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 D | fputwc.c | 19 l = wctomb((void *)f->wpos, c); in __fputwc_unlocked() 23 l = wctomb(mbc, c); in __fputwc_unlocked()
|
H A D | vfprintf.c | 633 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 D | vfwscanf.c | 268 int l = wctomb(s?s+i:tmp, c); in vfwscanf()
|
/third_party/musl/porting/uniproton/kernel/src/multibyte/ |
H A D | wctomb.c | 4 int wctomb(char *s, wchar_t wc) in wctomb() function
|
/third_party/musl/porting/liteos_m/kernel/src/multibyte/ |
H A D | wctomb.c | 4 int wctomb(char *s, wchar_t wc) in wctomb() function
|
/third_party/musl/src/multibyte/ |
H A D | wctomb.c | 4 int wctomb(char *s, wchar_t wc) in wctomb() function
|
/third_party/musl/porting/liteos_a/kernel/src/multibyte/ |
H A D | wctomb.c | 4 int wctomb(char *s, wchar_t wc) in wctomb() function
|
/third_party/bounds_checking_function/src/ |
H A D | securecutil.c | 26 int wctomb(char *s, wchar_t wc) in wctomb() function
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | stdlib.h | 73 int wctomb (char *, wchar_t);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | stdlib.h | 72 int wctomb (char *, wchar_t);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | stdlib.h | 75 int wctomb (char *, wchar_t);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | stdlib.h | 73 int wctomb (char *, wchar_t);
|
/third_party/musl/libc-test/src/api/ |
H A D | stdlib.c | 65 {int(*p)(char*,wchar_t) = wctomb;} in f()
|
/third_party/musl/porting/linux/user/include/ |
H A D | stdlib.h | 74 int wctomb (char *, wchar_t);
|
/third_party/musl/include/ |
H A D | stdlib.h | 75 int wctomb (char *, wchar_t);
|
/third_party/musl/porting/liteos_a/kernel/src/stdio/ |
H A D | vfprintf.c | 620 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 D | vfprintf.c | 625 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 D | vfprintf.c | 621 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 D | vfprintf.c | 621 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 D | unistr.c | 942 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 D | iconv.c | 198 #define wctomb_utf8 wctomb
|
/third_party/musl/porting/liteos_m/kernel/src/locale/ |
H A D | iconv.c | 198 #define wctomb_utf8 wctomb
|
/third_party/musl/src/locale/ |
H A D | iconv.c | 198 #define wctomb_utf8 wctomb
|
/third_party/rust/crates/libc/src/solid/ |
H A D | mod.rs | 575 pub fn wctomb(arg1: *mut c_char, arg2: wchar_t) -> c_int; in wctomb() functions
|