Searched refs:NewPath (Results 1 - 13 of 13) sorted by relevance

/freebsd-12-stable/sys/contrib/dev/acpica/compiler/
H A Daslopt.c175 char **NewPath);
196 char **NewPath);
208 * NewPath - Where the optimized path is returned
225 char **NewPath)
278 *NewPath = UtLocalCacheCalloc (ACPI_NAMESEG_SIZE + 1);
279 strcpy (*NewPath, Path);
281 if (strncmp (*NewPath, "_T_", 3))
284 Op, *NewPath);
537 * NewPath - Where the optimized path is returned
553 char **NewPath)
219 OptSearchToRoot( ACPI_PARSE_OBJECT *Op, ACPI_WALK_STATE *WalkState, ACPI_NAMESPACE_NODE *CurrentNode, ACPI_NAMESPACE_NODE *TargetNode, ACPI_BUFFER *TargetPath, char **NewPath) argument
547 OptOptimizeNameDeclaration( ACPI_PARSE_OBJECT *Op, ACPI_WALK_STATE *WalkState, ACPI_NAMESPACE_NODE *CurrentNode, ACPI_NAMESPACE_NODE *TargetNode, char *AmlNameString, char **NewPath) argument
671 char *NewPath = NULL; local
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/
H A DFileMatchTrie.cpp45 /// Inserts 'NewPath' into this trie. \c ConsumedLength denotes
46 /// the number of \c NewPath's trailing characters already consumed during
59 void insert(StringRef NewPath, unsigned ConsumedLength = 0) { argument
62 if (llvm::sys::path::is_relative(NewPath))
65 // This is an empty leaf. Store NewPath and return.
66 Path = NewPath;
70 // This is a leaf, ignore duplicate entry if 'Path' equals 'NewPath'.
71 if (NewPath == Path)
79 StringRef(NewPath).drop_back(ConsumedLength)));
80 Children[Element].insert(NewPath, ConsumedLengt
180 insert(StringRef NewPath) argument
[all...]
/freebsd-12-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c619 char *NewPath; local
626 NewPath = NewPathBuffer;
636 *NewPath = *InputPath;
637 NewPath++;
643 *NewPath = *InputPath;
644 NewPath++;
658 *NewPath = *InputPath;
659 NewPath++;
669 *NewPath = *InputPath;
670 NewPath
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DFileMatchTrie.h68 void insert(StringRef NewPath);
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIO.h95 void RenameFile(const std::string &OldPath, const std::string &NewPath);
H A DFuzzerIOPosix.cpp123 void RenameFile(const std::string &OldPath, const std::string &NewPath) { argument
124 rename(OldPath.c_str(), NewPath.c_str());
H A DFuzzerFork.cpp218 auto NewPath = DirPlusFile(MainCorpusDir, Hash(U)); local
219 WriteToFile(U, NewPath);
220 Files.push_back(NewPath);
H A DFuzzerIOWindows.cpp222 void RenameFile(const std::string &OldPath, const std::string &NewPath) { argument
223 rename(OldPath.c_str(), NewPath.c_str());
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
H A DFileManager.cpp432 SmallString<128> NewPath(FileSystemOpts.WorkingDir);
433 llvm::sys::path::append(NewPath, pathRef);
434 path = NewPath;
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp449 SmallString<128> NewPath(Path);
450 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
451 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str());
457 return NewPath.str();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp531 SmallString<256> NewPath;
532 path::append(NewPath, style, NewPrefix);
535 path::append(NewPath, style, RelPath);
537 path::append(NewPath, style, relative_path(RelPath, style));
540 Path.swap(NewPath);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/
H A DPathDiagnostic.cpp100 PathPieces NewPath; local
101 Macro.subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros);
103 Macro.subPieces = NewPath;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp1200 SmallString<128> NewPath(Path);
1201 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
1202 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str());
1209 return NewPath.str();

Completed in 207 milliseconds