/freebsd/sys/contrib/dev/acpica/compiler/ |
H A D | aslopt.c | 175 char **NewPath); 196 char **NewPath); 225 char **NewPath) in OptSearchToRoot() argument 278 *NewPath = UtLocalCacheCalloc (ACPI_NAMESEG_SIZE + 1); in OptSearchToRoot() 279 strcpy (*NewPath, Path); in OptSearchToRoot() 281 if (strncmp (*NewPath, "_T_", 3)) in OptSearchToRoot() 284 Op, *NewPath); in OptSearchToRoot() 553 char **NewPath) in OptOptimizeNameDeclaration() argument 571 *NewPath = &AmlNameString[1]; in OptOptimizeNameDeclaration() 575 Status = AcpiNsExternalizeName (ACPI_UINT32_MAX, *NewPath, in OptOptimizeNameDeclaration() [all …]
|
/freebsd/sys/contrib/dev/acpica/components/namespace/ |
H A D | nsnames.c | 619 char *NewPath; in AcpiNsNormalizePathname() local 626 NewPath = NewPathBuffer; in AcpiNsNormalizePathname() 636 *NewPath = *InputPath; in AcpiNsNormalizePathname() 637 NewPath++; in AcpiNsNormalizePathname() 643 *NewPath = *InputPath; in AcpiNsNormalizePathname() 644 NewPath++; in AcpiNsNormalizePathname() 658 *NewPath = *InputPath; in AcpiNsNormalizePathname() 659 NewPath++; in AcpiNsNormalizePathname() 669 *NewPath = *InputPath; in AcpiNsNormalizePathname() 670 NewPath++; in AcpiNsNormalizePathname() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/ |
H A D | FileMatchTrie.cpp | 59 void insert(StringRef NewPath, unsigned ConsumedLength = 0) { in insert() argument 62 if (llvm::sys::path::is_relative(NewPath)) in insert() 66 Path = std::string(NewPath); in insert() 71 if (NewPath == Path) in insert() 79 StringRef(NewPath).drop_back(ConsumedLength))); in insert() 80 Children[Element].insert(NewPath, ConsumedLength + Element.size() + 1); in insert() 192 void FileMatchTrie::insert(StringRef NewPath) { in insert() argument 193 Root->insert(NewPath); in insert()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerIOPosix.cpp | 126 void RenameFile(const std::string &OldPath, const std::string &NewPath) { in RenameFile() argument 127 rename(OldPath.c_str(), NewPath.c_str()); in RenameFile()
|
H A D | FuzzerFork.cpp | 240 auto NewPath = DirPlusFile(MainCorpusDir, Hash(U)); in RunOneMergeJob() local 241 WriteToFile(U, NewPath); in RunOneMergeJob() 248 Files.insert(Files.begin() + Idx, NewPath); in RunOneMergeJob() 250 Files.push_back(NewPath); in RunOneMergeJob()
|
H A D | FuzzerIOWindows.cpp | 233 void RenameFile(const std::string &OldPath, const std::string &NewPath) { in RenameFile() argument 234 rename(OldPath.c_str(), NewPath.c_str()); in RenameFile()
|
H A D | FuzzerIO.h | 107 void RenameFile(const std::string &OldPath, const std::string &NewPath);
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | DFAJumpThreading.cpp | 374 void setPath(const PathType &NewPath) { Path = NewPath; } in setPath() 632 PathType NewPath(Path); in paths() local 633 NewPath.push_front(BB); in paths() 634 Res.push_back(NewPath); in paths() 908 PathType NewPath(TPath.getPath()); in createAllExitPaths() local 909 NewPath.push_back(SwitchBlock); in createAllExitPaths() 910 TPath.setPath(NewPath); in createAllExitPaths()
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/ |
H A D | FileMatchTrie.h | 68 void insert(StringRef NewPath);
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | FileManager.cpp | 503 SmallString<128> NewPath(FileSystemOpts.WorkingDir); in FixupRelativePath() local 504 llvm::sys::path::append(NewPath, pathRef); in FixupRelativePath() 505 path = NewPath; in FixupRelativePath()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto/ |
H A D | llvm-lto.cpp | 530 SmallString<128> NewPath(Path); in getThinLTOOutputFile() local 531 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix); in getThinLTOOutputFile() 532 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str()); in getThinLTOOutputFile() 538 return std::string(NewPath); in getThinLTOOutputFile()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | PathDiagnostic.cpp | 95 PathPieces NewPath; in flattenTo() local 96 Macro.subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros); in flattenTo() 98 Macro.subPieces = NewPath; in flattenTo()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | Path.cpp | 535 SmallString<256> NewPath; in replace_path_prefix() local 536 (Twine(NewPrefix) + RelPath).toVector(NewPath); in replace_path_prefix() 537 Path.swap(NewPath); in replace_path_prefix()
|
H A D | VirtualFileSystem.cpp | 1322 SmallString<128> NewPath(Dir); in setCurrentEntry() local 1323 llvm::sys::path::append(NewPath, DirStyle, File); in setCurrentEntry() 1325 CurrentEntry = directory_entry(std::string(NewPath), ExternalIter->type()); in setCurrentEntry()
|
/freebsd/contrib/llvm-project/llvm/lib/LTO/ |
H A D | LTO.cpp | 1599 SmallString<128> NewPath(Path); in getThinLTOOutputFile() local 1600 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix); in getThinLTOOutputFile() 1601 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str()); in getThinLTOOutputFile() 1608 return std::string(NewPath); in getThinLTOOutputFile()
|