Searched refs:List (Results 76 - 100 of 152) sorted by relevance

1234567

/freebsd-12-stable/sys/contrib/dev/acpica/compiler/
H A Ddtcompile.c774 * PARAMETERS: List - Current field list pointer
787 void **List,
794 DT_FIELD **PFieldList = (DT_FIELD **) List;
786 DtCompileTwoSubtables( void **List, ACPI_DMTABLE_INFO *TableInfo1, ACPI_DMTABLE_INFO *TableInfo2) argument
H A Ddtcompiler.h250 /* List of all field names and values from the input source */
254 /* List of all compiled tables and subtables */
262 /* List for defined labels */
297 void **List,
/freebsd-12-stable/share/mk/
H A Dplain.test.mk13 # List of C, C++ and shell test programs to build.
H A Datf.test.mk12 # List of C, C++ and shell test programs to build.
H A Dtap.test.mk15 # List of C, C++ and shell test programs to build.
H A Dbsd.doc.mk30 # SRCS List of source files. [not set]
H A Dbsd.dep.mk23 # SRCS List of source files (c, c++, assembler)
25 # DPSRCS List of source files which are needed for generating
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp725 PriorityQueue<NodeId, std::vector<NodeId>, HeightLess> List; member in class:clang::diff::__anon3492::PriorityList
729 : Tree(Tree), Cmp(Tree), List(Cmp, Container) {}
731 void push(NodeId id) { List.push(id); }
739 Result.push_back(List.top());
740 List.pop();
747 if (List.empty())
749 return Tree.getNode(List.top()).Height;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp488 auto &List = *IndexAndList.second; local
502 addSectionDelta(ScopeDIE, dwarf::DW_AT_ranges, List.Label,
505 addSectionLabel(ScopeDIE, dwarf::DW_AT_ranges, List.Label,
522 SmallVector<RangeSpan, 2> List; local
523 List.reserve(Ranges.size());
525 List.push_back(
527 attachRangesOrLowHighPC(Die, std::move(List));
H A DDebugLocEntry.h178 DebugLocStream::ListBuilder &List,
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp3290 void Sema::addMethodToGlobalList(ObjCMethodList *List, argument
3296 if (!CD->IsClassExtension() && List->getBits() < 2)
3297 List->setBits(List->getBits() + 1);
3300 if (List->getMethod() == nullptr) {
3301 List->setMethod(Method);
3302 List->setNext(nullptr);
3308 ObjCMethodList *Previous = List;
3310 for (; List; Previous = List, Lis
3383 auto *List = new (Mem) ObjCMethodList(*ListWithSameDeclaration); local
4391 ObjCMethodList &List = local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp677 List.push_back(Res);
678 return List.size()-1;
687 bool empty() const { return List.empty(); }
688 unsigned size() const { return List.size(); }
690 const NodeTemplate &operator[](unsigned I) const { return List[I]; }
692 List.resize(NewTop+1);
697 BaseType::iterator begin() { return List.begin(); }
698 BaseType::iterator end() { return List.end(); }
699 BaseType::const_iterator begin() const { return List.begin(); }
700 BaseType::const_iterator end() const { return List
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclBase.cpp1354 StoredDeclsList &List = (*Map)[Name]; local
1358 List.removeExternalDecls();
1360 if (!List.isNull()) {
1366 if (List.HandleRedeclaration(Decls[I], /*IsKnownNewer*/false))
1376 List.AddSubsequentDecl(Decls[I]);
1381 if (List.isNull())
1382 List.setOnlyValue(D);
1384 List.AddSubsequentDecl(D);
1388 return List.getLookupResult();
H A DODRHash.cpp647 const TemplateArgumentList &List = Specialization->getTemplateArgs(); local
648 ID.AddInteger(List.size());
649 for (const TemplateArgument &TA : List.asArray())
/freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp638 assert(i < NumValues && "List element index out of range!");
1298 Init *Start, Init *List, Init *Expr,
1301 ID.AddPointer(List);
1308 FoldOpInit *FoldOpInit::get(Init *Start, Init *List, Init *A, Init *B,
1313 ProfileFoldOpInit(ID, Start, List, A, B, Expr, Type);
1319 FoldOpInit *I = new (Allocator) FoldOpInit(Start, List, A, B, Expr, Type);
1325 ProfileFoldOpInit(ID, Start, List, A, B, Expr, getType());
1329 if (ListInit *LI = dyn_cast<ListInit>(List)) {
1344 Init *NewList = List->resolveReferences(R);
1350 if (Start == NewStart && List
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp158 std::vector<CacheEntry> List; local
159 List.emplace_back(WriteBuffer, Size);
160 CacheMap.insert(std::make_pair(Offset, List));
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h260 StringMap(std::initializer_list<std::pair<StringRef, ValueTy>> List) argument
261 : StringMapImpl(List.size(), static_cast<unsigned>(sizeof(MapEntryTy))) {
262 for (const auto &P : List) {
/freebsd-12-stable/contrib/bmake/mk/
H A Ddpadd.mk24 # List of LIB* that we will actually link with
29 # DPADD List of LIB* that should already be built.
32 # List of LIB* that we want headers from, we do *not*
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h61 /// List is an array of pointers to objects that are not owned by this object.
62 void **List = nullptr; member in class:clang::ObjCListBase
90 iterator begin() const { return (iterator)List; }
91 iterator end() const { return (iterator)List+NumElts; }
95 return (T*)List[Idx];
157 /// List of attributes for this method declaration.
1208 /// List of categories and class extensions defined for this class.
1215 /// IvarList - List of all ivars defined by this class; including class
1506 void setProtocolList(ObjCProtocolDecl *const* List, unsigned Num, argument
1508 data().ReferencedProtocols.set(List, Nu
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp514 BlockVector &List = BlockLists[index];
515 if (find(List, V) == List.end()) {
516 List.push_back(V);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64LegalizerInfo.cpp736 Register List = MRI.createGenericVirtualRegister(PtrTy); local
738 List, ListPtr,
747 auto ListTmp = MIRBuilder.buildPtrAdd(PtrTy, List, AlignMinus1.getReg(0));
752 DstPtr = List;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp64 std::vector<unsigned> List; member in struct:__anon5376::WebAssemblyOperand::BrLOp
136 for (auto Br : BrL.List)
155 OS << "BrList:" << BrL.List.size();
586 Op->BrL.List.push_back(Lexer.getTok().getIntVal());
/freebsd-12-stable/sys/contrib/dev/acpica/include/
H A Dacmacros.h558 #define GET_CURRENT_ARG_TYPE(List) (List & ((UINT32) 0x1F))
559 #define INCREMENT_ARG_LIST(List) (List >>= ((UINT32) ARG_TYPE_WIDTH))
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h658 void merge(const ProfileSymbolList &List) { argument
659 for (auto Sym : List.Syms)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp155 const std::initializer_list<StringRef> List) {
156 for (StringRef Name : List) {
154 declaresIntrinsics(const Module &M, const std::initializer_list<StringRef> List) argument

Completed in 393 milliseconds

1234567