Searched defs:iDepth (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/r3/
H A Ddir.cpp52 static bool rtDirFilterWinNtMatchDosStar(unsigned iDepth, RTUNICP uc, const char *pszNext, PCRTUNICP puszFilter);
53 static bool rtDirFilterWinNtMatchStar(unsigned iDepth, RTUNICP uc, const char *pszNext, PCRTUNICP puszFilter);
54 static bool rtDirFilterWinNtMatchBase(unsigned iDepth, const char *pszName, PCRTUNICP puszFilter);
163 static bool rtDirFilterWinNtMatchDosStar(unsigned iDepth, RTUNICP uc, const char *pszNext, PCRTUNICP puszFilter) argument
165 AssertReturn(iDepth++ < 256, false);
175 return rtDirFilterWinNtMatchStar(iDepth, uc, pszNext, puszFilter);
203 if (rtDirFilterWinNtMatchBase(iDepth, pszNext, puszFilter))
210 return rtDirFilterWinNtMatchBase(iDepth, pszNext, puszFilter);
220 && rtDirFilterWinNtMatchBase(iDepth, pszNext, puszFilter))
226 && rtDirFilterWinNtMatchBase(iDepth, pszNex
242 rtDirFilterWinNtMatchStar(unsigned iDepth, RTUNICP uc, const char *pszNext, PCRTUNICP puszFilter) argument
375 rtDirFilterWinNtMatchBase(unsigned iDepth, const char *pszName, PCRTUNICP puszFilter) argument
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DPGMPhys.cpp628 static PPGMRAMRANGE pgmR3PhysRebuildRamRangeSearchTreesRecursively(PPGMRAMRANGE *ppRam, int iDepth) argument
631 if (iDepth <= 0)
649 PPGMRAMRANGE pLeft = pgmR3PhysRebuildRamRangeSearchTreesRecursively(ppRam, iDepth - 1);
658 PPGMRAMRANGE pRight = pgmR3PhysRebuildRamRangeSearchTreesRecursively(ppRam, iDepth - 1);
678 int iDepth = 0; local
690 PPGMRAMRANGE pRight = pgmR3PhysRebuildRamRangeSearchTreesRecursively(&pRam, iDepth);
695 iDepth++;

Completed in 43 milliseconds