Home
last modified time | relevance | path

Searched refs:DirLen (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIOWindows.cpp347 size_t DirLen = 0, Res; in DirName() local
348 while ((Res = ParseDir(FileName, LocationLen + DirLen))) in DirName()
349 DirLen += Res; in DirName()
350 size_t FileLen = ParseFileName(FileName, LocationLen + DirLen); in DirName()
352 if (LocationLen + DirLen + FileLen != FileName.size()) { in DirName()
357 if (DirLen) { in DirName()
358 --DirLen; // Remove trailing separator. in DirName()
360 assert(DirLen); in DirName()
362 while (DirLen && !IsSeparator(FileName[LocationLen + DirLen - 1])) in DirName()
363 --DirLen; in DirName()
[all …]