Home
last modified time | relevance | path

Searched refs:Set (Results 1 – 25 of 725) sorted by relevance

12345678910>>...29

/freebsd-13.1/contrib/llvm-project/llvm/lib/TableGen/
H A DSetTheory.cpp88 RecSet Set; in apply() local
105 if (unsigned(N) < Set.size()) in apply2()
106 Elts.insert(Set.begin() + N, Set.end()); in apply2()
118 N = Set.size(); in apply2()
119 Elts.insert(Set.begin(), Set.begin() + N); in apply2()
134 if (Set.empty()) in apply2()
137 N = Set.size() - (-N % Set.size()); in apply2()
139 N %= Set.size(); in apply2()
140 Elts.insert(Set.begin() + N, Set.end()); in apply2()
141 Elts.insert(Set.begin(), Set.begin() + N); in apply2()
[all …]
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerMerge.h67 size_t Merge(const Set<uint32_t> &InitialFeatures, Set<uint32_t> *NewFeatures,
68 const Set<uint32_t> &InitialCov, Set<uint32_t> *NewCov,
71 Set<uint32_t> AllFeatures() const;
78 const Set<uint32_t> &InitialFeatures,
79 Set<uint32_t> *NewFeatures,
80 const Set<uint32_t> &InitialCov,
81 Set<uint32_t> *NewCov,
H A DFuzzerMerge.cpp81 Set<uint32_t> PCs; in Parse()
136 Set<uint32_t> *NewFeatures, in Merge()
137 const Set<uint32_t> &InitialCov, Set<uint32_t> *NewCov, in Merge()
143 Set<uint32_t> AllFeatures = InitialFeatures; in Merge()
191 Set<uint32_t> Merger::AllFeatures() const { in AllFeatures()
192 Set<uint32_t> S; in AllFeatures()
215 Set<size_t> AllFeatures; in CrashResistantMergeInternalStep()
219 Set<const TracePC::PCTableEntry *> AllPCs; in CrashResistantMergeInternalStep()
239 Set<size_t> UniqFeatures; in CrashResistantMergeInternalStep()
307 Set<uint32_t> *NewFeatures, in CrashResistantMerge()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Basic/
H A DXRayInstr.cpp34 void serializeXRayInstrValue(XRayInstrSet Set, in serializeXRayInstrValue() argument
36 if (Set.Mask == XRayInstrKind::All) { in serializeXRayInstrValue()
41 if (Set.Mask == XRayInstrKind::None) { in serializeXRayInstrValue()
46 if (Set.has(XRayInstrKind::Custom)) in serializeXRayInstrValue()
49 if (Set.has(XRayInstrKind::Typed)) in serializeXRayInstrValue()
52 if (Set.has(XRayInstrKind::FunctionEntry) && in serializeXRayInstrValue()
53 Set.has(XRayInstrKind::FunctionExit)) in serializeXRayInstrValue()
55 else if (Set.has(XRayInstrKind::FunctionEntry)) in serializeXRayInstrValue()
57 else if (Set.has(XRayInstrKind::FunctionExit)) in serializeXRayInstrValue()
/freebsd-13.1/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_base.lua233 assert(Set{1,2,3} < Set{1,2,3,4})
234 assert(not(Set{1,2,3,4} < Set{1,2,3,4}))
235 assert((Set{1,2,3,4} <= Set{1,2,3,4}))
236 assert((Set{1,2,3,4} >= Set{1,2,3,4}))
246 assert(not (Set{1,3} <= Set{3,5})) -- now its OK!
247 assert(not(Set{1,3} <= Set{3,5}))
248 assert(not(Set{1,3} >= Set{3,5}))
258 local s = Set{1,3,5}
262 assert(Set{1,3,5,1} == Set{3,5,1})
263 assert(Set{1,3,5} ~= Set{3,5,1,6})
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def50 CODEGENOPT(UniqueSectionNames, 1, 1) ///< Set for -funique-section-names.
99 CODEGENOPT(InstrumentFunctionsAfterInlining , 1, 0) ///< Set when
101 CODEGENOPT(InstrumentFunctionEntryBare , 1, 0) ///< Set when
113 ///< Set when -fxray-always-emit-customevents is enabled.
116 ///< Set when -fxray-always-emit-typedevents is enabled.
119 ///< Set when -fxray-ignore-loops is enabled.
122 ///< Set with -fno-xray-function-index to omit the index section.
140 CODEGENOPT(CallFEntry , 1, 0) ///< Set when -mfentry is enabled.
141 CODEGENOPT(MNopMCount , 1, 0) ///< Set when -mnop-mcount is enabled.
218 ) ///< Set detection mode for stack-use-after-return.
[all …]
/freebsd-13.1/contrib/sendmail/libsm/
H A DREADME61 Set to 1 if the header file <stdbool.h> exists,
65 Set to 1 if the header file <sys/cdefs.h> exists,
70 Set to 0 if the header file <stddef.h> does not exist.
73 Set to 0 if the setitimer function is not available.
83 Set to 0 if <sys/types.h> does not define ssize_t.
86 Set to 1 if size_t is not unsigned.
98 Set to 1 if System V shared memory APIs are available.
101 Set to 1 if System V message queues are available.
104 Set to 1 if semaphores are available.
107 Set to 1 if your strtod() does not work properly.
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallSet.h139 std::set<T, C> Set; variable
156 return Vector.empty() && Set.empty(); in empty()
169 return Set.count(V); in count()
194 Set.insert(Vector.back()); in insert()
197 Set.insert(V); in insert()
209 return Set.erase(V); in erase()
220 Set.clear(); in clear()
226 return {Set.begin()}; in begin()
232 return {Set.end()}; in end()
239 return Set.find(V) != Set.end(); in contains()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormatCache.cpp39 void FormatCache::Entry::Set(lldb::TypeFormatImplSP format_sp) { in Set() function in FormatCache::Entry
44 void FormatCache::Entry::Set(lldb::TypeSummaryImplSP summary_sp) { in Set() function in FormatCache::Entry
49 void FormatCache::Entry::Set(lldb::SyntheticChildrenSP synthetic_sp) { in Set() function in FormatCache::Entry
102 void FormatCache::Set(ConstString type, lldb::TypeFormatImplSP &format_sp) { in Set() function in FormatCache
104 GetEntry(type).Set(format_sp); in Set()
107 void FormatCache::Set(ConstString type, lldb::TypeSummaryImplSP &summary_sp) { in Set() function in FormatCache
109 GetEntry(type).Set(summary_sp); in Set()
112 void FormatCache::Set(ConstString type, in Set() function in FormatCache
115 GetEntry(type).Set(synthetic_sp); in Set()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPContext.h75 TraitProperty getOpenMPContextTraitPropertyKind(TraitSet Set,
96 std::string listOpenMPContextTraitSelectors(TraitSet Set);
99 std::string listOpenMPContextTraitProperties(TraitSet Set,
107 bool isValidTraitSelectorForTraitSet(TraitSelector Selector, TraitSet Set,
114 TraitSet Set);
133 void addTrait(TraitSet Set, TraitProperty Property, StringRef RawString,
144 if (Set == TraitSet::construct)
164 void addTrait(TraitSet Set, TraitProperty Property) { in addTrait()
166 if (Set == TraitSet::construct) in addTrait()
/freebsd-13.1/stand/i386/btx/btx/
H A Dbtx.S134 mov %ax,%ss # Set up
215 pushl %ecx # Set SS
220 pushl %ecx # Set GS
221 pushl %ecx # Set FS
222 pushl %ecx # Set DS
223 pushl %ecx # Set ES
355 pushl %gs # Set GS
356 pushl %fs # Set FS
357 pushl %ds # Set DS
358 pushl %es # Set ES
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatCache.h44 void Set(lldb::TypeFormatImplSP);
45 void Set(lldb::TypeSummaryImplSP);
46 void Set(lldb::SyntheticChildrenSP);
61 void Set(ConstString type, lldb::TypeFormatImplSP &format_sp);
62 void Set(ConstString type, lldb::TypeSummaryImplSP &summary_sp);
63 void Set(ConstString type, lldb::SyntheticChildrenSP &synthetic_sp);
/freebsd-13.1/sys/contrib/device-tree/src/arm64/exynos/
H A Dexynos5433-tmu.dtsi56 /* Set maximum frequency as 1800MHz */
62 /* Set maximum frequency as 1700MHz */
68 /* Set maximum frequency as 1600MHz */
74 /* Set maximum frequency as 1500MHz */
80 /* Set maximum frequency as 1400MHz */
86 /* Set maximum frequencyas 1200MHz */
92 /* Set maximum frequency as 1000MHz */
230 /* Set maximum frequency as 1200MHz */
236 /* Set maximum frequency as 1100MHz */
248 /* Set maximum frequency as 900MHz */
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp186 m_set_flags.Set(eEnabled); in CopyOverSetOptions()
191 m_set_flags.Set(eOneShot); in CopyOverSetOptions()
199 m_set_flags.Set(eCallback); in CopyOverSetOptions()
255 set_options.Set(eEnabled); in CreateFromStructuredData()
265 set_options.Set(eOneShot); in CreateFromStructuredData()
295 set_options.Set(eCondition); in CreateFromStructuredData()
419 m_set_flags.Set(eCallback); in SetCallback()
430 m_set_flags.Set(eCallback); in SetCallback()
519 m_set_flags.Set(eThreadSpec); in SetThreadID()
525 m_set_flags.Set(eThreadSpec); in SetThreadSpec()
[all …]
/freebsd-13.1/contrib/googletest/googletest/samples/
H A Dsample2_unittest.cc92 TEST(MyString, Set) { in TEST() argument
95 s.Set(kHelloString); in TEST()
100 s.Set(s.c_string()); in TEST()
104 s.Set(NULL); in TEST()
H A Dsample2.h57 Set(a_c_string); in MyString()
62 Set(string.c_string_); in MyString()
79 void Set(const char* c_string);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DImmutableGraph.h164 const NodeSet &Set; variable
169 Current = Set.V.find_next(Current); in advance()
173 iterator(const NodeSet &Set, size_type Begin) in iterator() argument
174 : Set{Set}, Current{Begin} {} in iterator()
186 return Set.G.nodes_begin() + Current;
189 assert(&this->Set == &other.Set);
252 const EdgeSet &Set; variable
257 Current = Set.V.find_next(Current); in advance()
262 : Set{Set}, Current{Begin} {} in iterator()
274 return Set.G.edges_begin() + Current;
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPContext.cpp444 TraitSet Set, TraitSelector Selector, StringRef S) { in getOpenMPContextTraitPropertyKind() argument
447 if (Set == TraitSet::device && Selector == TraitSelector::device_isa) in getOpenMPContextTraitPropertyKind()
450 if (Set == TraitSet::TraitSetEnum && Str == S) \ in getOpenMPContextTraitPropertyKind()
489 TraitSet Set, in isValidTraitSelectorForTraitSet() argument
492 AllowsTraitScore = Set != TraitSet::construct && Set != TraitSet::device; in isValidTraitSelectorForTraitSet()
497 return Set == TraitSet::TraitSetEnum; in isValidTraitSelectorForTraitSet()
504 TraitProperty Property, TraitSelector Selector, TraitSet Set) { in isValidTraitPropertyForTraitSetAndSelector() argument
508 return Set == TraitSet::TraitSetEnum && \ in isValidTraitPropertyForTraitSetAndSelector()
525 std::string llvm::omp::listOpenMPContextTraitSelectors(TraitSet Set) { in listOpenMPContextTraitSelectors() argument
528 if (TraitSet::TraitSetEnum == Set && StringRef(Str) != "Invalid") \ in listOpenMPContextTraitSelectors()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDistribute.cpp133 Set.insert(I); in InstPartition()
140 void add(Instruction *I) { Set.insert(I); } in add()
144 InstructionSet::iterator end() { return Set.end(); } in end()
147 bool empty() const { return Set.empty(); } in empty()
152 Other.Set.insert(Set.begin(), Set.end()); in moveTo()
153 Set.clear(); in moveTo()
164 Set.insert(B->getTerminator()); in populateUsedSet()
168 SmallVector<Instruction *, 8> Worklist(Set.begin(), Set.end()); in populateUsedSet()
220 if (!Set.count(&Inst)) { in removeUnusedInsts()
242 for (auto *I : Set) in print()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DOptionsBase.td7 // Set by:
18 // Set by:
24 // Set by:
32 // Set by:
40 // Set by:
49 // Set by:
55 // Set by:
66 // Set by:
80 // Set by:
100 // Set by:
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugPubTable.h43 struct Set { struct
67 std::vector<Set> Sets; argument
81 ArrayRef<Set> getData() { return Sets; } in getData()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DWasmEHFuncInfo.h45 const auto &Set = UnwindDestToSrcs.lookup(BB); in getUnwindSrcs() local
47 for (const auto P : Set) in getUnwindSrcs()
71 const auto &Set = UnwindDestToSrcs.lookup(MBB); in getUnwindSrcs() local
73 for (const auto P : Set) in getUnwindSrcs()
/freebsd-13.1/sys/contrib/openzfs/.github/
H A Dstale.yml12 # Set to true to ignore issues in a project (defaults to false)
14 # Set to true to ignore issues in a milestone (defaults to false)
16 # Set to true to ignore issues with an assignee (defaults to false)
20 # Comment to post when marking an issue as stale. Set to `false` to disable
/freebsd-13.1/contrib/sendmail/contrib/
H A Drmail.oldsys.patch53 if (from_sys != NULL) { /* Set sender's host name. */
62 /* Set protocol used. */
67 /* Set name of ``from'' person. */
75 if (from_sys != NULL) { /* Set sender's host name. */
91 /* Set protocol used. */
98 /* Set name of ``from'' person. */
/freebsd-13.1/sys/contrib/device-tree/Bindings/usb/
H A Dgeneric-ehci.yaml56 Set this flag for HCDs with big endian descriptors and big
62 Set this flag for HCDs with big endian descriptors.
67 Set this flag for HCDs with big endian registers.
72 Set this flag if EHCI has a Transaction Translator built into
78 Set this flag to force EHCI reset after resume.

12345678910>>...29