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

/vbox/src/VBox/Runtime/common/path/
H A DRTPathParse.cpp.h43 uint32_t idxComp = 0; local
124 if (idxComp < cMaxComps)
126 pParsed->aComps[idxComp].off = 0;
127 pParsed->aComps[idxComp].cch = offCur;
129 idxComp++;
160 if (idxComp < cMaxComps)
162 pParsed->aComps[idxComp].off = offStart;
163 pParsed->aComps[idxComp].cch = cchComp;
165 idxComp++;
246 pParsed->cComps = idxComp;
[all...]
H A DRTPathParsedReassemble.cpp80 uint32_t idxComp = 0; local
99 idxComp = 1;
102 while (idxComp < cComps)
104 cchComp = pParsed->aComps[idxComp].cch;
107 memcpy(pszDst, &pszSrcPath[pParsed->aComps[idxComp].off], cchComp);
109 idxComp++;
110 if (idxComp != cComps || (pParsed->fProps & RTPATH_PROP_DIR_SLASH))
H A DRTPathSplitReassemble.cpp78 uint32_t idxComp = 0; local
97 idxComp = 1;
100 while (idxComp < cComps)
102 cchComp = strlen(pSplit->apszComps[idxComp]);
105 memcpy(pszDst, pSplit->apszComps[idxComp], cchComp);
107 idxComp++;
108 if (idxComp != cComps || (pSplit->fProps & RTPATH_PROP_DIR_SLASH))
H A DRTPathSplit.cpp91 uint32_t idxComp = cComps - 1; local
94 uint16_t offComp = pParsedVolatile->aComps[idxComp].off;
95 uint16_t cchComp = pParsedVolatile->aComps[idxComp].cch;
100 pSplitVolatile->apszComps[idxComp] = psz;
109 while (idxComp-- > 0)
111 offComp = pParsedVolatile->aComps[idxComp].off;
112 cchComp = pParsedVolatile->aComps[idxComp].cch;
116 pSplitVolatile->apszComps[idxComp] = psz;

Completed in 32 milliseconds