Home
last modified time | relevance | path

Searched refs:dst_size (Results 1 – 2 of 2) sorted by relevance

/ndk/sources/cxx-stl/stlport/src/c_locale_win32/
Dc_wlocale_win32.c222 wchar_t* dst, size_t dst_size, in _WLocale_strxfrm() argument
229 _STLP_WCSNCPY(dst, dst_size, src, src_size); in _WLocale_strxfrm()
233 if (dst_size > INT_MAX) { in _WLocale_strxfrm()
234 dst_size = INT_MAX; in _WLocale_strxfrm()
236 result = LCMapStringW(lcol->lc.id, LCMAP_SORTKEY, src, (int)src_size, dst, (int)dst_size); in _WLocale_strxfrm()
Dc_locale_win32.c1123 char* dst, size_t dst_size, in _Locale_strxfrm() argument
1132 _STLP_STRNCPY(dst, dst_size, src, src_size); in _Locale_strxfrm()
1136 if (dst_size > INT_MAX) { in _Locale_strxfrm()
1138 dst_size = INT_MAX; in _Locale_strxfrm()
1142 result = LCMapStringA(lcol->lc.id, LCMAP_SORTKEY, src, (int)src_size, dst, (int)dst_size); in _Locale_strxfrm()
1148 result = LCMapStringA(lcol->lc.id, LCMAP_SORTKEY, buf, (int)size, dst, (int)dst_size); in _Locale_strxfrm()