Lines Matching refs:pcwc
505 * @param pcwc Where to store the length of the UTF-16 string as a number of RTUTF16 characters.
507 static int rtUtf8CalcUtf16Length(const char *psz, size_t cch, size_t *pcwc)
628 *pcwc = cwc;
760 PRTUTF16 *ppwsz, size_t cwc, size_t *pcwc, const char *pszTag)
767 Assert(!pcwc || VALID_PTR(pcwc));
776 if (pcwc)
777 *pcwc = cwcResult;
829 RTDECL(int) RTStrCalcUtf16LenEx(const char *psz, size_t cch, size_t *pcwc)
833 if (pcwc)
834 *pcwc = RT_SUCCESS(rc) ? cwc : ~(size_t)0;