Searched defs:__wc (Results 1 - 2 of 2) sorted by relevance

/external/stlport/stlport/stl/
H A D_cwchar.h311 inline wchar_t* _STLP_wmemset(wchar_t* __wdst, wchar_t __wc, size_t __n) argument
312 { return __STATIC_CAST(wchar_t*, _STLP_VENDOR_CSTD::memset(__wdst, __wc, __n)); }
317 inline wchar_t* wmemset(wchar_t* __wdst, wchar_t __wc, size_t __n) argument
318 { return _STLP_wmemset(__wdst, __wc, __n); }
322 inline wchar_t* wmemmove(wchar_t* __RESTRICT __wdst, const wchar_t * __RESTRICT __wc, size_t __n)
323 { return __STATIC_CAST(wchar_t*, memmove(__wdst, __wc, __n * sizeof(wchar_t))); }
324 inline wchar_t* wmemset(wchar_t* __wdst, wchar_t __wc, size_t __n)
325 { for (size_t i = 0; i < __n; i++) __wdst[i] = __wc; return __wdst; }
/external/libcxx/src/support/solaris/
H A Dxlocale.c44 size_t wcrtomb_l(char *__s, wchar_t __wc, mbstate_t *__ps, locale_t __l) { argument
47 __s, __wc, __ps);

Completed in 73 milliseconds