Lines Matching refs:pcwc
306 * @param pcwc Where to store the length of the UTF-16 string as a number of RTUTF16 characters.
308 static int rtLatin1CalcUtf16Length(const char *psz, size_t cch, size_t *pcwc)
310 *pcwc = RTStrNLen(psz, cch);
401 PRTUTF16 *ppwsz, size_t cwc, size_t *pcwc, const char *pszTag)
408 Assert(!pcwc || VALID_PTR(pcwc));
417 if (pcwc)
418 *pcwc = cwcResult;
470 RTDECL(int) RTLatin1CalcUtf16LenEx(const char *psz, size_t cch, size_t *pcwc)
474 if (pcwc)
475 *pcwc = RT_SUCCESS(rc) ? cwc : ~(size_t)0;