Home
last modified time | relevance | path

Searched refs:Names (Results 1 – 25 of 229) sorted by relevance

12345678910

/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DFormula.cpp57 void Formula::print(llvm::raw_ostream &OS, const AtomNames *Names) const { in print()
58 if (Names && kind() == AtomRef) in print()
59 if (auto It = Names->find(getAtom()); It != Names->end()) { in print()
79 operands()[0]->print(OS, Names); in print()
83 operands()[0]->print(OS, Names); in print()
85 operands()[1]->print(OS, Names); in print()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSDNodeInfo.h78 StringTable Names; variable
83 StringTable Names, const SDTypeConstraint *Constraints) in SDNodeInfo() argument
84 : NumOpcodes(NumOpcodes), Descs(Descs), Names(Names), in SDNodeInfo()
109 return Names[getDesc(Opcode).NameOffset]; in getName()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeTableCollection.cpp20 Names.resize(Records.size()); in TypeTableCollection()
47 if (Names[I].data() == nullptr) { in getTypeName()
49 Names[I] = Result; in getTypeName()
51 return Names[I]; in getTypeName()
/freebsd/contrib/netbsd-tests/usr.bin/xlint/lint1/
H A Dt_integration.sh30 Names=
58 Names="${Names} ${name}"
129 for name in ${Names}; do
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DConstraintSystem.cpp166 SmallVector<std::string> Names(Value2Index.size(), ""); in getVarNamesList() local
174 Names[Index - 1] = OperandName; in getVarNamesList()
177 return Names; in getVarNamesList()
184 SmallVector<std::string> Names = getVarNamesList(); in dump() local
195 Parts.push_back(Coefficient + Names[E.Id - 1]); in dump()
H A DStackLifetime.cpp361 SmallVector<StringRef, 16> Names; in printInstrAlive() local
364 Names.push_back(KV.getFirst()->getName()); in printInstrAlive()
366 llvm::sort(Names); in printInstrAlive()
367 OS << " ; Alive: <" << llvm::join(Names, " ") << ">\n"; in printInstrAlive()
383 SmallVector<StringRef, 16> Names; in printInfoComment() local
386 Names.push_back(KV.getFirst()->getName()); in printInfoComment()
388 llvm::sort(Names); in printInfoComment()
389 OS << "\n ; Alive: <" << llvm::join(Names, " ") << ">\n"; in printInfoComment()
/freebsd/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/
H A DDlltoolDriver.cpp221 std::vector<StringRef> &Names, bool IsMsStyleImplib) { in identifyImportName() argument
247 Names.push_back(Contents); in identifyImportName()
276 std::vector<StringRef> Names; in doIdentify() local
279 return identifyImportName(Obj, ObjName, Names, in doIdentify()
284 if (Names.empty()) { in doIdentify()
288 if (Names.size() > 1 && IdentifyStrict) { in doIdentify()
293 for (StringRef S : Names) in doIdentify()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp677 ArrayRef<const char *> Names = getGCCRegNames(); in isValidGCCRegisterName() local
683 return n < Names.size(); in isValidGCCRegisterName()
687 if (llvm::is_contained(Names, Name)) in isValidGCCRegisterName()
692 for (const char *AN : ARN.Names) { in isValidGCCRegisterName()
697 if (AN == Name && ARN.RegNum < Names.size()) in isValidGCCRegisterName()
720 ArrayRef<const char *> Names = getGCCRegNames(); in getNormalizedGCCRegisterName() local
726 assert(n < Names.size() && "Out of bounds register number!"); in getNormalizedGCCRegisterName()
727 return Names[n]; in getNormalizedGCCRegisterName()
733 for (const char *AN : ARN.Names) { in getNormalizedGCCRegisterName()
738 if (AN == Name && ARN.RegNum < Names.size()) in getNormalizedGCCRegisterName()
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DSubtargetFeatureInfo.cpp84 std::vector<std::string> Names; in emitNameTable() local
86 Names.resize(IndexUB); in emitNameTable()
88 Names[SF.second.Index] = SF.second.getEnumName(); in emitNameTable()
92 OS << " \"" << Names[I] << "\",\n"; in emitNameTable()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/
H A Dtst.TestTransStability1.ksh.out5 Identifier Names: Unstable
10 Identifier Names: Stable
H A Dtst.TestTransStability2.ksh.out5 Identifier Names: Unstable
10 Identifier Names: Private
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp408 const StringSet<> &Names, DWARFDie Die, StringRef NameRef, raw_ostream &OS, in filterByName() argument
416 for (auto Pattern : Names.keys()) { in filterByName()
428 } else if (Names.count(Name)) { in filterByName()
438 const StringSet<> &Names, DWARFContext::unit_iterator_range CUs, in filterByName() argument
445 if (filterByName(Names, Die, Name, OS, GetNameForDWARFReg)) in filterByName()
448 filterByName(Names, Die, Name, OS, GetNameForDWARFReg); in filterByName()
505 ArrayRef<std::string> Names, DWARFContext &DICtx, raw_ostream &OS, in filterByAccelName() argument
508 for (const auto &Name : Names) { in filterByAccelName()
714 StringSet<> Names; in dumpObjectFile() local
716 Names.insert((IgnoreCase && !UseRegex) ? StringRef(name).lower() : name); in dumpObjectFile()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmtAsm.cpp707 SmallVector<IdentifierInfo *, 4> Names; in ParseAsmStatement() local
728 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs)) in ParseAsmStatement()
732 unsigned NumOutputs = Names.size(); in ParseAsmStatement()
744 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs)) in ParseAsmStatement()
748 assert(Names.size() == Constraints.size() && in ParseAsmStatement()
751 unsigned NumInputs = Names.size() - NumOutputs; in ParseAsmStatement()
796 Names.push_back(Tok.getIdentifierInfo()); in ParseAsmStatement()
816 NumInputs, Names.data(), Constraints, Exprs, in ParseAsmStatement()
821 bool Parser::ParseAsmOperandsOpt(SmallVectorImpl<IdentifierInfo *> &Names, in ParseAsmOperandsOpt() argument
843 Names.push_back(II); in ParseAsmOperandsOpt()
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherGen.cpp124 bool recordUniqueNode(ArrayRef<std::string> Names);
456 bool MatcherGen::recordUniqueNode(ArrayRef<std::string> Names) { in recordUniqueNode() argument
458 for (const std::string &Name : Names) { in recordUniqueNode()
469 for (const std::string &Name : Names) { in recordUniqueNode()
485 for (const std::string &Name : Names) in recordUniqueNode()
508 SmallVector<std::string, 4> Names; in EmitMatchCode() local
510 Names.push_back(N.getName().str()); in EmitMatchCode()
513 Names.push_back( in EmitMatchCode()
517 if (!Names.empty()) { in EmitMatchCode()
518 if (!recordUniqueNode(Names)) in EmitMatchCode()
/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A Dhi6421.txt11 Device IRQ Names Supply Names Description
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInterfaceStubFunctionsConsumer.cpp31 std::vector<std::string> Names; member
35 std::vector<std::string> Names) in MangledSymbol()
37 Names(std::move(Names)) {} in MangledSymbol()
299 for (const auto &Name : Symbol.Names) { in HandleTranslationUnit()
/freebsd/contrib/ntp/scripts/monitoring/
H A Dntploopwatch720 local(%Names);
721 grep($Names{$_} = 1,@newfiles);
724 next if defined($Names{$_});
728 %Names = ();
730 grep($Names{$_} = 1,values(%F_key));
733 next if defined($Names{$_});
739 next if defined($Names{$_});
745 next if defined($Names{$_});
751 next if defined($Names{$_});
757 next if defined($Names{$_});
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h2751 PODSmallVector<Node *, 32> Names; member
2832 Names.clear(); in reset()
2856 DEMANGLE_ASSERT(FromPosition <= Names.size(), ""); in popTrailingNodeArray()
2858 makeNodeArray(Names.begin() + (long)FromPosition, Names.end()); in popTrailingNodeArray()
2859 Names.shrinkToSize(FromPosition); in popTrailingNodeArray()
3195 size_t BindingsBegin = Names.size(); in parseUnqualifiedName()
3200 Names.push_back(Binding); in parseUnqualifiedName()
3271 size_t ParamsBegin = Names.size(); in parseUnnamedTypeName()
3277 Names.push_back(T); in parseUnnamedTypeName()
3318 Names.push_back(P); in parseUnnamedTypeName()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiModuleList.cpp271 BinaryStreamReader Names(NamesBuffer); in getFileName() local
276 Names.setOffset(FileOffset); in getFileName()
278 if (auto EC = Names.readCString(Name)) in getFileName()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfCorrelator.h59 const char *getNamesPointer() const { return Names.c_str(); } in getNamesPointer()
62 size_t getNamesSize() const { return Names.size(); } in getNamesSize()
100 std::string Names; variable
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp444 std::vector<std::string> Names; in vectorFromRefs() local
445 Names.reserve(NameRefs.size()); in vectorFromRefs()
447 Names.emplace_back(*Name); in vectorFromRefs()
448 return Names; in vectorFromRefs()
473 Names(std::move(N)) {
475 for (StringRef Name : Names)
529 PatternSet(ArrayRef<std::string> Names) { in PatternSet() argument
530 Patterns.reserve(Names.size()); in PatternSet()
531 for (StringRef Name : Names) in PatternSet()
585 return llvm::any_of(Names, [&](StringRef Name) { in matchesNodeUnqualified()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCore.h217 std::initializer_list<SymbolStringPtr> Names,
219 Symbols.reserve(Names.size());
220 for (const auto &Name : Names)
227 const SymbolNameSet &Names,
229 Symbols.reserve(Names.size());
230 for (const auto &Name : Names)
239 ArrayRef<SymbolStringPtr> Names,
241 Symbols.reserve(Names.size());
242 for (const auto &Name : Names)
357 SymbolNameVector Names; in getSymbolNames() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CGData/
H A DStableFunctionMapRecord.cpp91 ArrayRef<std::string> Names = FunctionMap->getNames(); in serialize() local
92 Writer.write<uint32_t>(Names.size()); in serialize()
97 for (auto &Name : Names) in serialize()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp271 unsigned NumInputs, IdentifierInfo **Names, in ActOnGCCAsmStmt() argument
287 Names, constraints.data(), Exprs.data(), asmString, in ActOnGCCAsmStmt()
303 if (Names[i]) in ActOnGCCAsmStmt()
304 OutputName = Names[i]->getName(); in ActOnGCCAsmStmt()
393 if (Names[i]) in ActOnGCCAsmStmt()
394 InputName = Names[i]->getName(); in ActOnGCCAsmStmt()
511 Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs, Names, in ActOnGCCAsmStmt()
763 if (Names[i]) in ActOnGCCAsmStmt()
765 std::make_pair(Names[i]->getName(), Exprs[i])); in ActOnGCCAsmStmt()
/freebsd/contrib/sendmail/vacation/
H A Dvacation.c83 ALIAS *Names = NULL; variable
205 cur->next = Names;
206 Names = cur;
442 cur->next = Names;
443 Names = cur;
684 for (cur = Names;

12345678910