Lines Matching refs:off
63 size_t off = rtPathRootSpecLen(pszSrc);
64 size_t c = off != 0;
65 while (c < cComponents && pszSrc[off])
68 while (!RTPATH_IS_SLASH(pszSrc[off]) && pszSrc[off])
69 off++;
70 while (RTPATH_IS_SLASH(pszSrc[off]))
71 off++;
75 * Copy up to but not including 'off'.
77 if (off >= cbDst)
80 memcpy(pszDst, pszSrc, off);
81 pszDst[off] = '\0';