Searched refs:List (Results 1 - 25 of 94) sorted by relevance

1234

/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DMachineModuleInfoImpls.cpp39 MachineModuleInfoImpl::SymbolListTy List(Map.begin(), Map.end());
41 if (!List.empty())
42 qsort(&List[0], List.size(), sizeof(List[0]), SortSymbolPair);
43 return List;
H A DMachinePassRegistry.cpp37 Node->setNext(List);
38 List = Node;
48 for (MachinePassRegistryNode **I = &List; *I; I = (*I)->getNextAddress()) {
/freebsd-10.0-release/sys/contrib/dev/acpica/components/debugger/
H A Ddbstats.c75 ACPI_MEMORY_LIST *List);
108 * PARAMETERS: List - Memory list/cache to be displayed
118 ACPI_MEMORY_LIST *List)
124 AcpiOsPrintf ("\n%s\n", List->ListName);
128 if (List->MaxDepth > 0)
132 List->CurrentDepth,
133 List->MaxDepth,
134 List->MaxDepth - List->CurrentDepth,
135 (List
117 AcpiDbListInfo( ACPI_MEMORY_LIST *List) argument
[all...]
/freebsd-10.0-release/contrib/bmake/lst.lib/
H A DlstInit.c74 List nList;
76 PAlloc (nList, List);
H A DlstInt.h59 #define LN_DELETED 0x0001 /* List node should be removed when done */
65 typedef struct List { struct
79 } *List; typedef in typeref:struct:List
103 #define LstIsEmpty(l) (((List)(l))->firstPtr == NULL)
H A DlstClose.c79 List list = l;
H A DlstIsAtEnd.c82 List list = l;
H A DlstMember.c58 List list = l;
H A DlstDupl.c78 List list = l;
H A DlstForEachFrom.c77 List list = l;
H A DlstNext.c79 List list = l;
H A DlstConcat.c85 List list1 = l1;
86 List list2 = l2;
/freebsd-10.0-release/sys/contrib/dev/acpica/compiler/
H A Ddttable.c80 void **List,
89 * PARAMETERS: List - Current field list pointer
102 void **List,
109 DT_FIELD **PFieldList = (DT_FIELD **) List;
240 * PARAMETERS: List - Current field list pointer
250 void **List)
260 DT_FIELD **PFieldList = (DT_FIELD **) List;
412 * PARAMETERS: List - Current field list pointer
422 void **List)
427 Status = DtCompileTwoSubtables (List,
101 DtCompileTwoSubtables( void **List, ACPI_DMTABLE_INFO *TableInfo1, ACPI_DMTABLE_INFO *TableInfo2) argument
249 DtCompileAsf( void **List) argument
421 DtCompileCpep( void **List) argument
446 DtCompileCsrt( void **List) argument
534 DtCompileDmar( void **List) argument
679 DtCompileEinj( void **List) argument
704 DtCompileErst( void **List) argument
729 DtCompileFadt( void **List) argument
805 DtCompileFpdt( void **List) argument
880 DtCompileHest( void **List) argument
1017 DtCompileIvrs( void **List) argument
1168 DtCompileMadt( void **List) argument
1307 DtCompileMcfg( void **List) argument
1332 DtCompileMpst( void **List) argument
1469 DtCompileMsct( void **List) argument
1494 DtCompileMtmr( void **List) argument
1519 DtCompilePmtt( void **List) argument
1660 DtCompileRsdt( void **List) argument
1779 DtCompileSlic( void **List) argument
1853 DtCompileSlit( void **List) argument
1909 DtCompileSrat( void **List) argument
2046 DtCompileUefi( void **List) argument
2096 DtCompileVrtc( void **List) argument
2121 DtCompileWdat( void **List) argument
2146 DtCompileXsdt( void **List) argument
2182 DtCompileGeneric( void **List) argument
[all...]
/freebsd-10.0-release/usr.bin/make/
H A Dvar.h47 struct List;
/freebsd-10.0-release/contrib/ntp/include/
H A Dntpsim.h42 typedef struct List { struct
44 struct List *next;
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestMultiAggPrinta.java31 import java.util.List;
74 List <Record> records = data.getRecords();
115 List <Record> records = data.getRecords();
H A DTestProbeData.java85 final List <ProbeData> list = new ArrayList <ProbeData> ();
/freebsd-10.0-release/contrib/llvm/include/llvm/IR/
H A DUse.h135 void addToList(Use **List) { argument
136 Next = *List;
138 setPrev(List);
139 *List = this;
/freebsd-10.0-release/usr.sbin/ctm/ctm/
H A Dctm_pass1.c98 for(i=0;(j = sp->List[i]);i++) {
99 if (sp->List[i+1] && (sp->List[i+1] & CTM_F_MASK) != CTM_F_Bytes)
105 fprintf(stderr," %x(%d)",sp->List[i],sep);
197 fprintf(stderr,"List = 0x%x\n",j);
213 fprintf(stderr,"List = 0x%x\n",j);
214 Fatal("List had garbage.");
H A Dctm_passb.c72 for(i=0;(j = sp->List[i]);i++) {
73 if (sp->List[i+1] && (sp->List[i+1] & CTM_F_MASK) != CTM_F_Bytes)
/freebsd-10.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineWorklist.h53 void AddInitialGroup(Instruction *const *List, unsigned NumEntries) { argument
59 Instruction *I = List[NumEntries-1];
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCRegisterInfo.h185 const MCPhysReg *List; member in class:llvm::MCRegisterInfo::DiffListIterator
189 DiffListIterator() : Val(0), List(0) {}
196 List = DiffList;
204 MCPhysReg D = *List++;
212 bool isValid() const { return List; }
221 List = 0;
417 // Register List Iterators
488 // Initialize the iterator to Reg * Scale, and the List pointer to
/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DMachinePassRegistry.h88 MachinePassRegistryNode *List; // List of registry nodes. member in class:llvm::MachinePassRegistry
99 MachinePassRegistryNode *getList() { return List; }
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DParsedTemplate.h183 /// appends it to List.
185 Allocate(unsigned NumArgs, SmallVectorImpl<TemplateIdAnnotation*> &List) { argument
199 List.push_back(TemplateId);
/freebsd-10.0-release/contrib/bmake/
H A Dlst.h92 typedef struct List *Lst;

Completed in 3901 milliseconds

1234