Searched defs:cchComp (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Runtime/common/path/
H A DRTPathParsedReassemble.cpp82 uint32_t cchComp; local
86 cchComp = pParsed->aComps[0].cch;
87 cchDstPath += cchComp;
89 memcpy(pszDst, &pszSrcPath[pParsed->aComps[0].off], cchComp);
93 while (cchComp-- > 0)
104 cchComp = pParsed->aComps[idxComp].cch;
105 cchDstPath += cchComp;
107 memcpy(pszDst, &pszSrcPath[pParsed->aComps[idxComp].off], cchComp);
108 pszDst += cchComp;
H A DRTPathSplitReassemble.cpp80 size_t cchComp; local
84 cchComp = strlen(pSplit->apszComps[0]);
85 cchDstPath += cchComp;
87 memcpy(pszDst, pSplit->apszComps[0], cchComp);
91 while (cchComp-- > 0)
102 cchComp = strlen(pSplit->apszComps[idxComp]);
103 cchDstPath += cchComp;
105 memcpy(pszDst, pSplit->apszComps[idxComp], cchComp);
106 pszDst += cchComp;
H A DRTPathSplit.cpp95 uint16_t cchComp = pParsedVolatile->aComps[idxComp].cch; local
98 psz -= cchComp;
99 memcpy(psz, &pszPath[offComp], cchComp);
103 if (offSuffix >= offComp + cchComp)
104 pszSuffix = &psz[cchComp];
112 cchComp = pParsedVolatile->aComps[idxComp].cch;
114 psz -= cchComp;
115 memcpy(psz, &pszPath[offComp], cchComp);
/vbox/src/VBox/VMM/VMMR3/
H A DSTAM.cpp632 uint32_t cchComp = RT_MIN(pNode->cch, cchName); local
633 int iDiff = memcmp(pNode->szName, pchName, cchComp);

Completed in 49 milliseconds