Searched refs:dst_size (Results 1 – 2 of 2) sorted by relevance
/ndk/sources/cxx-stl/stlport/src/c_locale_win32/ |
D | c_wlocale_win32.c | 222 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()
|
D | c_locale_win32.c | 1123 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()
|