Searched refs:pcwc (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A DRTUtf16NLenEx.cpp34 RTDECL(int) RTUtf16NLenEx(PCRTUTF16 pwszString, size_t cwcMax, size_t *pcwc) argument
39 *pcwc = cwcMax;
42 *pcwc = pwcEnd - pwszString;
H A Dutf-16-latin-1.cpp306 * @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) argument
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) argument
474 if (pcwc)
400 RTLatin1ToUtf16ExTag(const char *pszString, size_t cchString, PRTUTF16 *ppwsz, size_t cwc, size_t *pcwc, const char *pszTag) argument
[all...]
H A Dutf-8.cpp505 * @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) argument
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) argument
833 if (pcwc)
759 RTStrToUtf16ExTag(const char *pszString, size_t cchString, PRTUTF16 *ppwsz, size_t cwc, size_t *pcwc, const char *pszTag) argument
[all...]
/vbox/include/iprt/
H A Dstring.h813 * @param pcwc Where to store the string length. Optional.
816 RTDECL(int) RTStrCalcUtf16LenEx(const char *psz, size_t cch, size_t *pcwc);
855 * @param pcwc Where to store the length of the translated string,
863 #define RTStrToUtf16Ex(pszString, cchString, ppwsz, cwc, pcwc) \
864 RTStrToUtf16ExTag((pszString), (cchString), (ppwsz), (cwc), (pcwc), RTSTR_TAG)
881 * @param pcwc Where to store the length of the translated string,
890 RTDECL(int) RTStrToUtf16ExTag(const char *pszString, size_t cchString, PRTUTF16 *ppwsz, size_t cwc, size_t *pcwc, const char *pszTag);
922 RTDECL(int) RTStrCalcLatin1LenEx(const char *psz, size_t cch, size_t *pcwc);
3355 * @param pcwc Where to store the string length excluding the
3360 RTDECL(int) RTUtf16NLenEx(PCRTUTF16 pwszString, size_t cwcMax, size_t *pcwc);
[all...]
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPR3HardenedMain-win.cpp1560 * @param pcwc Where to return the actual length.
1563 PUNICODE_STRING pOrgName, UINT *pcwc)
1566 *pcwc = cwc = pUniStrResult->Length / sizeof(WCHAR);
1562 supR3HardenedCopyRedirectionResult(WCHAR *pwszPath, size_t cwcPath, PUNICODE_STRING pUniStrResult, PUNICODE_STRING pOrgName, UINT *pcwc) argument

Completed in 69 milliseconds