Searched refs:Set (Results 1 - 25 of 107) sorted by relevance

12345

/freebsd-10.1-release/contrib/llvm/lib/Target/R600/
H A DAMDGPUMachineFunction.cpp16 AttributeSet Set = MF.getFunction()->getAttributes(); local
17 Attribute A = Set.getAttribute(AttributeSet::FunctionIndex,
/freebsd-10.1-release/contrib/llvm/include/llvm/ADT/
H A DSmallSet.h36 std::set<T, C> Set; member in class:llvm::SmallSet
42 bool empty() const { return Vector.empty() && Set.empty(); }
44 return isSmall() ? Vector.size() : Set.size();
53 return Set.count(V);
61 return Set.insert(V).second;
73 Set.insert(Vector.back());
76 Set.insert(V);
88 return Set.erase(V);
99 Set.clear();
102 bool isSmall() const { return Set
[all...]
H A DFoldingSet.h1 //===-- llvm/ADT/FoldingSet.h - Uniquing Hash Set ---------------*- C++ -*-===//
577 FoldingSet<T> Set; member in class:llvm::FoldingSetVector
582 : Set(Log2InitSize) {
595 void clear() { Set.clear(); Vector.clear(); }
601 return Set.FindNodeOrInsertPos(ID, InsertPos);
608 T *Result = Set.GetOrInsertNode(N);
617 Set.InsertNode(N, InsertPos);
624 Set.InsertNode(N);
629 unsigned size() const { return Set.size(); }
632 bool empty() const { return Set
[all...]
H A DSetVector.h1 //===- llvm/ADT/SetVector.h - Set with insert order iteration ---*- C++ -*-===//
36 typename Set = SmallSet<T, 16> >
43 typedef Set set_type;
/freebsd-10.1-release/contrib/llvm/utils/TableGen/
H A DSetTheory.cpp36 // (sub Add, Sub, ...) Set difference.
41 PrintFatalError(Loc, "Set difference needs at least two arguments: " +
52 // (and S1, S2) Set intersection.
57 PrintFatalError(Loc, "Set intersection requires two arguments: " +
71 RecSet &Set, int64_t N,
77 PrintFatalError(Loc, "Operator requires (Op Set, Int) arguments: " +
79 RecSet Set; local
80 ST.evaluate(Expr->arg_begin()[0], Set, Loc);
85 apply2(ST, Expr, Set, II->getValue(), Elts, Loc);
92 RecSet &Set, int64_
91 apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, RecSet &Elts, ArrayRef<SMLoc> Loc) argument
104 apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, RecSet &Elts, ArrayRef<SMLoc> Loc) argument
122 apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, RecSet &Elts, ArrayRef<SMLoc> Loc) argument
141 apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, RecSet &Elts, ArrayRef<SMLoc> Loc) argument
303 expand(Record *Set) argument
[all...]
H A DSetTheory.h14 // The user may define named sets as Records of predefined classes. Set
25 // - (sub S1, S2, ...) Set difference. Every element in S1 except for the
28 // - (and S1, S2) Set intersection. Every element in S1 that is also in S2.
114 /// class Set<dag d> {
134 /// pointer to the expanded elements, or NULL if Set cannot be expanded
136 const RecVec *expand(Record *Set);
H A DCodeGenRegisters.h217 typedef std::set<const CodeGenRegister*, Less> Set; typedef in struct:llvm::CodeGenRegister
242 CodeGenRegister::Set Members;
359 const CodeGenRegister::Set &getMembers() const { return Members; }
373 const CodeGenRegister::Set *Members;
382 Key(const CodeGenRegister::Set *M, unsigned S = 0, unsigned A = 0)
499 const CodeGenRegister::Set *Membs,
/freebsd-10.1-release/contrib/llvm/include/llvm/Transforms/Utils/
H A DModuleUtils.h35 /// the initializer elements of that global in Set and return the global itself.
37 SmallPtrSet<GlobalValue *, 8> &Set,
/freebsd-10.1-release/contrib/hyperv/tools/scripts/
H A Dhv_set_ifconfig73 echo "Set IP-Injection Success"
/freebsd-10.1-release/sys/boot/i386/btx/btx/
H A Dbtx.S134 mov %ax,%ss # Set up
176 mov %ax,(%di) # Set handler offset
178 mov %dl,0x5(%di) # Set P:DPL:type
186 init.4: movb $_ESP0H,TSS_ESP0+1(%di) # Set ESP0
187 movb $SEL_SDATA,TSS_SS0(%di) # Set SS0
188 movb $_TSSIO,TSS_MAP(%di) # Set I/O bit map base
192 mov $0x2820,%bx # Set protected mode
194 lidt idtdesc # Set IDT
195 lgdt gdtdesc # Set GDT
207 movb $SEL_TSS,%cl # Set tas
[all...]
/freebsd-10.1-release/sys/boot/pc98/btx/btx/
H A Dbtx.S130 mov %ax,%ss # Set up
172 mov %ax,(%di) # Set handler offset
174 mov %dl,0x5(%di) # Set P:DPL:type
182 init.4: movb $_ESP0H,TSS_ESP0+1(%di) # Set ESP0
183 movb $SEL_SDATA,TSS_SS0(%di) # Set SS0
184 movb $_TSSIO,TSS_MAP(%di) # Set I/O bit map base
188 mov $0x2820,%bx # Set protected mode
190 lidt idtdesc # Set IDT
191 lgdt gdtdesc # Set GDT
203 movb $SEL_TSS,%cl # Set tas
[all...]
/freebsd-10.1-release/contrib/libstdc++/include/ext/pb_ds/detail/pat_trie_/
H A Dsynth_e_access_traits.hpp58 template<typename Type_Traits, bool Set, class E_Access_Traits>
63 Set, \
66 template<typename Type_Traits, bool Set, class E_Access_Traits>
112 static integral_constant<int,Set> s_set_ind;
116 integral_constant<int,Set>
/freebsd-10.1-release/contrib/llvm/lib/DebugInfo/
H A DDWARFDebugAranges.cpp25 DWARFDebugArangeSet Set; local
28 while (Set.extract(DebugArangesData, &Offset)) {
29 Sets.push_back(Set);
30 TotalRanges += Set.getNumDescriptors();
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DStreamGDBRemote.cpp51 m_flags.Set(eBinary);
/freebsd-10.1-release/contrib/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp68 llvm::collectUsedGlobalVariables(Module &M, SmallPtrSet<GlobalValue *, 8> &Set, argument
79 Set.insert(G);
/freebsd-10.1-release/share/mk/
H A Dbsd.kmod.mk12 .error Unable to locate the kernel source tree. Set SYSDIR to override.
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Symbol/
H A DCompileUnit.cpp33 m_flags.Set(flagsParsedLanguage);
50 m_flags.Set(flagsParsedLanguage);
224 m_flags.Set(flagsParsedLanguage);
244 m_flags.Set(flagsParsedLineTable);
263 m_flags.Set(flagsParsedLineTable);
445 m_flags.Set(flagsParsedSupportFiles);
/freebsd-10.1-release/sys/boot/i386/boot2/
H A Dsio.S31 movb $SIO_FMT|0x80,%al # Set format
40 movb $0x3,%al # Set RTS,
/freebsd-10.1-release/usr.sbin/ppp/
H A Dccp.h103 struct fsm_opt opt; /* Set by implementation's OptInit() */
109 struct ccp_opt *opt; /* Set by implementation's OptInit() */
130 int (*Set)(struct bundle *, struct fsm_opt *, const struct ccp_config *); member in struct:ccp_algorithm::__anon12043
141 int (*Set)(struct bundle *, struct fsm_opt *, const struct ccp_config *); member in struct:ccp_algorithm::__anon12044
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DFlags.h94 /// Set accessor for all flags.
123 /// Set one or more flags by logical OR'ing \a mask with the current
133 Set (ValueType mask) function in class:lldb_private::Flags
/freebsd-10.1-release/sys/boot/i386/btx/lib/
H A Dbtxcsu.S40 movl %esp,%eax # Set
/freebsd-10.1-release/sys/boot/pc98/btx/lib/
H A Dbtxcsu.S40 movl %esp,%eax # Set
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DStackFrame.cpp85 m_flags.Set(m_sc.GetResolvedMask ());
117 m_flags.Set(m_sc.GetResolvedMask ());
124 m_flags.Set (eSymbolContextTarget);
156 m_flags.Set(m_sc.GetResolvedMask ());
163 m_flags.Set (eSymbolContextTarget);
172 m_flags.Set (eSymbolContextModule);
201 m_flags.Set (RESOLVED_FRAME_ID_SYMBOL_SCOPE);
217 // Set the symbol context scope (the accessor will set the
238 m_flags.Set (RESOLVED_FRAME_ID_SYMBOL_SCOPE);
247 m_flags.Set (RESOLVED_FRAME_CODE_ADD
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp190 // Set the current block counter to being empty.
216 // Set the current block counter.
569 void CoreEngine::enqueue(ExplodedNodeSet &Set) { argument
570 for (ExplodedNodeSet::iterator I = Set.begin(),
571 E = Set.end(); I != E; ++I) {
576 void CoreEngine::enqueue(ExplodedNodeSet &Set, argument
578 for (ExplodedNodeSet::iterator I = Set.begin(),
579 E = Set.end(); I != E; ++I) {
584 void CoreEngine::enqueueEndOfFunction(ExplodedNodeSet &Set) { argument
585 for (ExplodedNodeSet::iterator I = Set
[all...]
/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestGetAggregate.java51 Set <String> included = new HashSet <String> ();
96 Set <String> cleared = new HashSet <String> ();

Completed in 336 milliseconds

12345