Searched refs:vector (Results 226 - 250 of 2151) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Option/
H A DOptTable.h18 #include <vector>
60 std::vector<Info> OptionInfos;
132 /// \return The vector of possible values.
133 std::vector<std::string> suggestValueCompletions(StringRef Option,
141 /// \return The vector of flags which start with Cur.
142 std::vector<std::string> findByPrefix(StringRef Cur,
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.h36 std::vector<SourceRange> SkippedRanges;
53 std::vector<llvm::Constant *> FunctionRecords;
54 std::vector<llvm::Constant *> FunctionNames;
56 std::vector<std::string> CoverageMappings;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionHelper.h14 #include <vector>
H A DClangExpressionParser.h20 #include <vector>
62 std::vector<std::string> include_directories = {},
176 std::vector<std::string> m_include_directories;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/
H A DPrintSCC.cpp77 const std::vector<BasicBlock *> &nextSCC = *SCCI;
79 for (std::vector<BasicBlock*>::const_iterator I = nextSCC.begin(),
98 const std::vector<CallGraphNode*> &nextSCC = *SCCI;
100 for (std::vector<CallGraphNode*>::const_iterator I = nextSCC.begin(),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DUnwindLLDB.h12 #include <vector>
90 // Iterate over the RegisterContextLLDB's in our m_frames vector, look for the
107 const std::vector<ConstString> &GetUserSpecifiedTrapHandlerFunctionNames() {
130 std::vector<CursorSP> m_frames;
138 std::vector<ConstString> m_user_supplied_trap_handler_functions;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugMacro.h45 std::vector<MacroList> MacroLists;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFMIChecking.cpp109 std::vector<unsigned> GPR32LiveDefs;
110 std::vector<unsigned> GPR64DeadDefs;
124 // no sub-register liveness tracking. Push it to vector for deferred
146 std::vector<unsigned>::iterator search_begin = GPR64DeadDefs.begin();
147 std::vector<unsigned>::iterator search_end = GPR64DeadDefs.end();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DInstrProfiling.h25 #include <vector>
60 std::vector<GlobalValue *> UsedVars;
61 std::vector<GlobalVariable *> ReferencedNames;
68 // vector of counter load/store pairs to be register promoted.
69 std::vector<LoadStorePair> PromotionCandidates;
/freebsd-11-stable/contrib/llvm-project/lld/Common/
H A DTargetOptionsCommandFlags.cpp39 std::vector<std::string> lld::getMAttrs() { return ::MAttrs; }
/freebsd-11-stable/sys/xen/
H A Dxen_intr.h41 /** If non-zero, the hypervisor has been configured to use a direct vector */
159 * Register a physical interrupt vector and setup the interrupt source.
161 * \param vector The global vector to use.
167 int xen_register_pirq(int vector, enum intr_trigger trig,
225 * Setup MSI vector interrupt(s).
229 * \param vector Requested initial vector to bind the MSI interrupt(s) to.
235 int xen_register_msi(device_t dev, int vector, int count);
238 * Teardown a MSI vector interrup
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Testing/Support/
H A DAnnotations.h15 #include <vector>
29 /// std::vector<size_t> PP = Example.points(); // all unnamed points
71 std::vector<size_t> points(llvm::StringRef Name = "") const;
77 std::vector<Range> ranges(llvm::StringRef Name = "") const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/
H A DBlockIndexer.h19 #include <vector>
32 std::vector<Record *> Records;
36 using Index = DenseMap<std::pair<uint64_t, int32_t>, std::vector<Block>>;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DAntiDepBreaker.h25 #include <vector>
34 std::vector<std::pair<MachineInstr *, MachineInstr *>>;
43 virtual unsigned BreakAntiDependencies(const std::vector<SUnit> &SUnits,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DSystemRuntime.h12 #include <vector>
105 /// A vector of ConstStrings with names like "pthread" or "libdispatch".
106 /// An empty vector may be returned if no thread origin extended
108 virtual const std::vector<ConstString> &GetExtendedBacktraceTypes();
300 std::vector<ConstString> m_types;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DOpDescriptor.cpp15 void fuzzerop::makeConstantsWithType(Type *T, std::vector<Constant *> &Cs) {
33 std::vector<Constant *> fuzzerop::makeConstantsWithType(Type *T) {
34 std::vector<Constant *> Result;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DRegistry.h26 #include <vector>
83 static std::vector<ArgKind> getAcceptedCompletionTypes(
95 static std::vector<MatcherCompletion>
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DTextDiagnosticBuffer.h21 #include <vector>
27 using DiagList = std::vector<std::pair<SourceLocation, std::string>>;
36 /// keeps notes in the right places. Each pair in the vector is a diagnostic
38 std::vector<std::pair<DiagnosticsEngine::Level, size_t>> All;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreMachineFunctionInfo.h21 #include <vector>
38 std::vector<std::pair<MachineBasicBlock::iterator, CalleeSavedInfo>>
87 std::vector<std::pair<MachineBasicBlock::iterator, CalleeSavedInfo>> &
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCWinEH.h13 #include <vector>
46 std::vector<Instruction> Instructions;
47 MapVector<MCSymbol*, std::vector<Instruction>> EpilogMap;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/
H A DPassInfo.h18 #include <vector>
41 std::vector<const PassInfo *> ItfImpl; // Interfaces implemented by this pass
113 const std::vector<const PassInfo*> &getInterfacesImplemented() const {
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-account.h18 #include <vector>
30 typedef std::map<int32_t, std::vector<uint64_t>> FunctionLatencyMap;
34 typedef std::vector<std::pair<int32_t, uint64_t>> FunctionStack;
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86DisassemblerTables.h23 #include <vector>
47 typedef std::map<std::vector<unsigned>, unsigned> ModRMMapTy;
51 std::vector<InstructionSpecifier> InstructionSpecifiers;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeWriter.h24 #include <vector>
46 std::vector<Module *> Mods;
158 const std::vector<uint8_t> *CmdArgs);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfo.h13 #include <vector>
60 typedef std::vector<DWARFUnitSP> UnitColl;
68 std::vector<std::pair<uint64_t, uint32_t>> m_type_hash_to_unit_index;

Completed in 140 milliseconds

1234567891011>>