Searched refs:newName (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/sys/fs/udf/
H A Dosta.c317 unicode_t *newName, /* (Output)Translated name. Must be of length
369 newName[newIndex++] = current;
428 newName[newIndex++] = CRC_MARK; /* Add mark for CRC. */
433 newName[newIndex++] = hexChar[(valueCRC & 0xf000) >> 12];
434 newName[newIndex++] = hexChar[(valueCRC & 0x0f00) >> 8];
435 newName[newIndex++] = hexChar[(valueCRC & 0x00f0) >> 4];
436 newName[newIndex++] = hexChar[(valueCRC & 0x000f)];
440 newName[newIndex++] = PERIOD;
442 newName[newIndex++] = ext[index];
316 UDFTransName( unicode_t *newName, unicode_t *udfName, int udfLen) argument
/freebsd-13-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangTypeNodesEmitter.cpp147 auto setMacroName = [&](StringRef newName) {
152 + macroName + "\" and \"" + newName + "\"");
153 macroName = newName;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMetaRenamer.cpp65 const char *newName() { function in struct:__anon4751::Renamer
121 renamer.newName()).toStringRef(NameStorage));
138 F.setName(renamer.newName());
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DRelocations.cpp755 auto suggest = [&](StringRef newName) -> const Symbol * {
757 if (const Symbol *s = map.lookup(newName))
761 if (const Symbol *s = symtab->find(newName))
774 std::string newName = (name.substr(0, i) + "0" + name.substr(i)).str(); local
776 newName[i] = c;
777 if (const Symbol *s = suggest(newName))
784 newName = std::string(name);
786 newName[i] = c;
787 if (const Symbol *s = suggest(newName))
794 newName[
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/lib/ReaderWriter/YAML/
H A DReaderWriterYAML.cpp91 StringRef newName = copyString(buffer.str()); local
92 _refNames[target] = std::string(newName);
95 << newName << "' ("
96 << (const void *)newName.data() << ", "
97 << newName.size() << ")\n");
121 StringRef newName = copyString(buffer.str()); local
122 _refNames[&atom] = std::string(newName);
125 << newName << "' ("
126 << (const void *)newName.data()
127 << ", " << newName
[all...]
/freebsd-13-stable/contrib/bmake/
H A Dparse.c2126 char *newName; local
2156 newName = str_concat3(incdir, "/", file + i);
2157 fullname = Dir_FindFile(newName, parseIncPath);
2159 fullname = Dir_FindFile(newName,
2161 free(newName);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp780 StringRef newName = CI->first; local
781 if (newName != lastName) {
785 lastName = newName;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h426 void setName(const Twine &newName) { Name = newName.str(); }
1617 void setName(const Twine &newName) { Name = newName.str(); }
/freebsd-13-stable/contrib/bsnmp/tests/
H A Dcatch.hpp9241 auto set( std::string const& newName ) -> ParserResult {
9243 auto lastSlash = newName.find_last_of( "\\/" );
9245 ? newName
9246 : newName.substr( lastSlash+1 );

Completed in 269 milliseconds