/freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
H A D | SetTheory.cpp | 79 virtual void apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, 87 RecSet Set; in apply() local 88 ST.evaluate(Expr->arg_begin()[0], Set, Loc); in apply() 93 apply2(ST, Expr, Set, II->getValue(), Elts, Loc); in apply() 99 void apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, in apply2() 104 if (unsigned(N) < Set.size()) in apply2() 105 Elts.insert(Set.begin() + N, Set.end()); in apply2() 111 void apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, in apply2() 116 if (unsigned(N) > Set.size()) in apply2() 117 N = Set.size(); in apply2() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | XRayInstr.cpp | 34 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/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/ |
H A D | tst.lib_base.lua | 217 local function Set(x) function 233 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})) 237 assert((Set{1,3} <= Set{3,5})) -- wrong!! model needs a `le' method ;-) 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} [all …]
|
/freebsd/contrib/sendmail/libsm/ |
H A D | README | 62 Set to 1 if the header file <stdbool.h> exists, 66 Set to 1 if the header file <sys/cdefs.h> exists, 71 Set to 0 if the header file <stddef.h> does not exist. 74 Set to 0 if the setitimer function is not available. 77 Set to 1 if <sysexits.h> exists, and sets the EX_* macros 81 Set to 0 if <sys/types.h> does not define uid_t and gid_t. 84 Set to 0 if <sys/types.h> does not define ssize_t. 87 Set to 1 if size_t is not unsigned. 90 Set to 1 if your C compiler supports the 'long long' type. 95 Set to 1 if your C compiler does not support 'long long', [all …]
|
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
H A D | FormatCache.cpp | 39 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 94 void FormatCache::Set(ConstString type, lldb::TypeFormatImplSP &format_sp) { in Set() function in FormatCache 96 m_entries[type].Set(format_sp); in Set() 99 void FormatCache::Set(ConstString type, lldb::TypeSummaryImplSP &summary_sp) { in Set() function in FormatCache 101 m_entries[type].Set(summary_sp); in Set() 104 void FormatCache::Set(ConstString type, in Set() function in FormatCache 107 m_entries[type].Set(synthetic_sp); in Set()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | CodeGenOptions.def | 57 CODEGENOPT(DataSections , 1, 0) ///< Set when -fdata-sections is enabled. 58 CODEGENOPT(UniqueSectionNames, 1, 1) ///< Set for -funique-section-names. 59 CODEGENOPT(UniqueBasicBlockSectionNames, 1, 1) ///< Set for -funique-basic-block-section-names, 62 CODEGENOPT(SeparateNamedSections, 1, 0) ///< Set for -fseparate-named-sections. 63 CODEGENOPT(EnableAIXExtendedAltivecABI, 1, 0) ///< Set for -mabi=vec-extabi. Enables the extended A… 64 CODEGENOPT(XCOFFReadOnlyPointers, 1, 0) ///< Set for -mxcoff-roptr. 81 CODEGENOPT(DisableRedZone , 1, 0) ///< Set when -mno-red-zone is enabled. 84 CODEGENOPT(IndirectTlsSegRefs, 1, 0) ///< Set when -mno-tls-direct-seg-refs 95 CODEGENOPT(EmulatedTLS , 1, 0) ///< Set by default or -f[no-]emulated-tls. 102 CODEGENOPT(FunctionSections , 1, 0) ///< Set when -ffunction-sections is enabled. [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | SmallSet.h | 140 std::set<T, C> Set; variable 159 [[nodiscard]] bool empty() const { return Vector.empty() && Set.empty(); } in empty() 162 return isSmall() ? Vector.size() : Set.size(); in size() 171 return Set.count(V); in count() 181 auto [I, Inserted] = Set.insert(V); in insert() 195 Set.insert(Vector.back()); in insert() 198 return std::make_pair(const_iterator(Set.insert(V).first), true); in insert() 209 return Set.erase(V); in erase() 220 Set.clear(); in clear() 226 return {Set.begin()}; in begin() [all …]
|
H A D | SetOperations.h | 23 template <typename Set, typename Fn> 25 decltype(std::declval<Set>().remove_if(std::declval<Fn>())); 27 template <typename Set, typename Fn> 29 is_detected<check_has_member_remove_if_t, Set, Fn>::value; 31 template <typename Set> 33 decltype(std::declval<Set>().erase(std::declval<Set>().begin())); 35 template <typename Set> 37 is_detected<check_has_member_erase_iter_t, Set>::value;
|
/freebsd/stand/i386/btx/btx/ |
H A D | btx.S | 132 mov %ax,%ss # Set up 174 mov %ax,(%di) # Set handler offset 176 mov %dl,0x5(%di) # Set P:DPL:type 184 init.4: movb $_ESP0H,TSS_ESP0+1(%di) # Set ESP0 185 movb $SEL_SDATA,TSS_SS0(%di) # Set SS0 186 movb $_TSSIO,TSS_MAP(%di) # Set I/O bit map base 190 mov $0x2820,%bx # Set protected mode 192 lidt idtdesc # Set IDT 193 lgdt gdtdesc # Set GDT 205 movb $SEL_TSS,%cl # Set task [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMPContext.h | 75 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/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
H A D | FormatCache.h | 44 void Set(lldb::TypeFormatImplSP); 45 void Set(lldb::TypeSummaryImplSP); 46 void Set(lldb::SyntheticChildrenSP); 58 void Set(ConstString type, lldb::TypeFormatImplSP &format_sp); 59 void Set(ConstString type, lldb::TypeSummaryImplSP &summary_sp); 60 void Set(ConstString type, lldb::SyntheticChildrenSP &synthetic_sp);
|
/freebsd/sys/contrib/device-tree/src/arm64/exynos/ |
H A D | exynos5433-tmu.dtsi | 56 /* 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 */ 242 /* Set maximum frequency as 1000MHz */ [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | BreakpointOptions.cpp | 112 m_set_flags.Set(~((Flags::ValueType)0)); in BreakpointOptions() 122 m_set_flags.Set(eEnabled | eIgnoreCount | eOneShot | eAutoContinue); in BreakpointOptions() 167 m_set_flags.Set(eEnabled); in CopyOverSetOptions() 172 m_set_flags.Set(eOneShot); in CopyOverSetOptions() 180 m_set_flags.Set(eCallback); in CopyOverSetOptions() 185 m_set_flags.Set(eIgnoreCount); in CopyOverSetOptions() 197 m_set_flags.Set(eCondition); in CopyOverSetOptions() 203 m_set_flags.Set(eAutoContinue); in CopyOverSetOptions() 211 m_set_flags.Set(eThreadSpec); in CopyOverSetOptions() 236 set_options.Set(eEnabled); in CreateFromStructuredData() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopDistribute.cpp | 128 Set.insert(I); in InstPartition() 135 void add(Instruction *I) { Set.insert(I); } in add() 138 InstructionSet::iterator begin() { return Set.begin(); } in begin() 139 InstructionSet::iterator end() { return Set.end(); } in end() 140 InstructionSet::const_iterator begin() const { return Set.begin(); } in begin() 141 InstructionSet::const_iterator end() const { return Set.end(); } in end() 142 bool empty() const { return Set.empty(); } in empty() 147 Other.Set.insert(Set.begin(), Set.end()); in moveTo() 148 Set.clear(); in moveTo() 159 Set.insert(B->getTerminator()); in populateUsedSet() [all …]
|
/freebsd/contrib/googletest/googletest/samples/ |
H A D | sample2_unittest.cc | 92 TEST(MyString, Set) { in TEST() argument 95 s.Set(kHelloString); in TEST() 100 s.Set(s.c_string()); in TEST() 104 s.Set(nullptr); in TEST()
|
H A D | sample2.h | 56 Set(a_c_string); in MyString() 61 Set(string.c_string_); in MyString() 76 void Set(const char* c_string);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | ImmutableGraph.h | 164 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() 261 iterator(const EdgeSet &Set, size_type Begin) in iterator() argument 262 : Set{Set}, Current{Begin} {} in iterator() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
H A D | OMPContext.cpp | 442 TraitSet Set, TraitSelector Selector, StringRef S) { in getOpenMPContextTraitPropertyKind() argument 445 if (Set == TraitSet::device && Selector == TraitSelector::device_isa) in getOpenMPContextTraitPropertyKind() 448 if (Set == TraitSet::TraitSetEnum && Str == S) \ in getOpenMPContextTraitPropertyKind() 487 TraitSet Set, in isValidTraitSelectorForTraitSet() argument 490 AllowsTraitScore = Set != TraitSet::construct && Set != TraitSet::device; in isValidTraitSelectorForTraitSet() 495 return Set == TraitSet::TraitSetEnum; in isValidTraitSelectorForTraitSet() 502 TraitProperty Property, TraitSelector Selector, TraitSet Set) { in isValidTraitPropertyForTraitSetAndSelector() argument 506 return Set == TraitSet::TraitSetEnum && \ in isValidTraitPropertyForTraitSetAndSelector() 523 std::string llvm::omp::listOpenMPContextTraitSelectors(TraitSet Set) { in listOpenMPContextTraitSelectors() argument 526 if (TraitSet::TraitSetEnum == Set && StringRef(Str) != "Invalid") \ in listOpenMPContextTraitSelectors() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/MCTargetDesc/ |
H A D | SPIRVBaseInfo.cpp | 195 std::string getExtInstSetName(SPIRV::InstructionSet::InstructionSet Set) { in getExtInstSetName() argument 196 switch (Set) { in getExtInstSetName() 211 for (auto Set : in getExtInstSetFromString() 214 if (SetName == getExtInstSetName(Set)) in getExtInstSetFromString() 215 return Set; in getExtInstSetFromString() 220 std::string getExtInstName(SPIRV::InstructionSet::InstructionSet Set, in getExtInstName() argument 223 SPIRV::lookupExtendedBuiltinBySetAndNumber(Set, InstructionNumber); in getExtInstName()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | OptionsBase.td | 7 // 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/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | WasmEHFuncInfo.h | 45 const auto &Set = UnwindDestToSrcs.lookup(BB); in getUnwindSrcs() local 47 for (const auto P : Set) in getUnwindSrcs() 69 const auto &Set = UnwindDestToSrcs.lookup(MBB); in getUnwindSrcs() local 71 for (const auto P : Set) in getUnwindSrcs()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFDebugPubTable.h | 44 struct Set { struct 68 std::vector<Set> Sets; argument 82 ArrayRef<Set> getData() { return Sets; } in getData()
|
/freebsd/contrib/sendmail/contrib/ |
H A D | rmail.oldsys.patch | 53 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/contrib/llvm-project/lldb/source/Symbol/ |
H A D | CompileUnit.cpp | 40 m_flags.Set(flagsParsedLanguage); in CompileUnit() 158 m_flags.Set(flagsParsedLanguage); in GetLanguage() 169 m_flags.Set(flagsParsedLineTable); in GetLineTable() 181 m_flags.Set(flagsParsedLineTable); in SetLineTable() 188 m_flags.Set(flagsParsedDebugMacros); in GetDebugMacros() 201 m_flags.Set(flagsParsedDebugMacros); in SetDebugMacros() 396 m_flags.Set(flagsParsedImportedModules); in GetImportedModules() 417 m_flags.Set(flagsParsedSupportFiles); in GetSupportFiles()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugAranges.cpp | 30 DWARFDebugArangeSet Set; in extract() local 33 if (Error E = Set.extract(DebugArangesData, &Offset, WarningHandler)) { in extract() 37 uint64_t CUOffset = Set.getCompileUnitDIEOffset(); in extract() 38 for (const auto &Desc : Set.descriptors()) { in extract()
|