| /openbsd-src/gnu/usr.bin/binutils/bfd/ |
| H A D | mpw-config.in | 5 Set selarchs "&bfd_{target_cpu}_arch" 6 Set defvec "" 7 Set selvecs "" 8 Set havevecs "" 11 Set BFD_BACKENDS '"{o}"coff-m68k.c.o "{o}"cofflink.c.o' 12 Set defvec m68kcoff_vec 13 Set selvecs '&m68kcoff_vec' 14 Set havevecs '-d HAVE_m68kcoff_vec' 17 Set BFD_BACKENDS '"{o}"coff-pmac.c.o "{o}"xcofflink.c.o' 18 Set defvec pmac_xcoff_vec [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/gas/ |
| H A D | mpw-config.in | 3 Set target_arch `echo {target_canonical} | sed -e 's/-.*-.*//'` 6 Set short_arch_name "ppc" 7 Set target_cpu "powerpc" 9 Set short_arch_name "{target_arch}" 14 Set obj_format `echo {target_canonical} | sed -e 's/.*-.*-//'` 15 Set target_os `echo {target_canonical} | sed -e 's/.*-.*-//'` 17 Set bfd_gas no 19 Set TDEFINES "" 21 Set EXTRA_OBJECTS "" 25 Set em generic [all …]
|
| /openbsd-src/gnu/llvm/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 …]
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/libcxx/benchmarks/ |
| H A D | ordered_set.bench.cpp | 92 for (auto& Set : Sets) { in run() local 93 benchmark::DoNotOptimize(Set.insert(K)); in run() 113 for (auto& Set : Data.Sets) { in run() local 114 benchmark::DoNotOptimize(Set.find(K)); in run() 134 for (auto& Set : Data.Sets) { in run() local 135 benchmark::DoNotOptimize(Set.find(K) != Set.end()); in run() 155 for (auto& Set : Data.Sets) { in run() local 156 benchmark::DoNotOptimize(Set.insert(K)); in run() 176 for (auto& Set : Data.Sets) { in run() local 177 benchmark::DoNotOptimize(Set.erase(Set.insert(K).first)); in run() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/ld/ |
| H A D | mpw-config.in | 4 Set emulname m68kcoff 6 Set emulation_ofiles "{o}"em68kcoff.c.o 9 Set emulname ppcmacos 11 Set emulation_ofiles "{o}"eppcmacos.c.o 14 Set emulname i386go32 16 Set emulation_ofiles "{o}"ei386go32.c.o 19 Set emulname mipsidt 21 Set emulation_ofiles "{o}"emipsidt.c.o 24 Set emulname elf32ebmip 26 Set emulation_ofiles "{o}"eelf32ebmip.c.o [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Host/windows/ |
| H A D | ConnectionGenericFileWindows.cpp | 30 void Set(size_t bytes, ConnectionStatus status, DWORD error_code) { in Set() function in __anon6acae5c30111::ReturnInfo 36 void Set(size_t bytes, ConnectionStatus status, llvm::StringRef error_msg) { in Set() function in __anon6acae5c30111::ReturnInfo 175 return_info.Set(0, eConnectionStatusNoConnection, ERROR_INVALID_HANDLE); in Read() 199 return_info.Set(0, eConnectionStatusInterrupted, 0); in Read() 202 return_info.Set(0, eConnectionStatusTimedOut, 0); in Read() 205 return_info.Set(0, eConnectionStatusError, ::GetLastError()); in Read() 218 return_info.Set(bytes_read, eConnectionStatusEndOfFile, 0); in Read() 220 return_info.Set(bytes_read, eConnectionStatusError, result_error); in Read() 222 return_info.Set(bytes_read, eConnectionStatusEndOfFile, 0); in Read() 224 return_info.Set(bytes_read, eConnectionStatusSuccess, 0); in Read() [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | SmallSet.h | 140 std::set<T, C> Set; variable 157 [[nodiscard]] bool empty() const { return Vector.empty() && Set.empty(); } in empty() 160 return isSmall() ? Vector.size() : Set.size(); in size() 169 return Set.count(V); in count() 179 auto [I, Inserted] = Set.insert(V); in insert() 193 Set.insert(Vector.back()); in insert() 196 return std::make_pair(const_iterator(Set.insert(V).first), true); in insert() 207 return Set.erase(V); in erase() 218 Set.clear(); in clear() 224 return {Set.begin()}; in begin() [all …]
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | CodeGenOptions.def | 49 CODEGENOPT(DataSections , 1, 0) ///< Set when -fdata-sections is enabled. 50 CODEGENOPT(UniqueSectionNames, 1, 1) ///< Set for -funique-section-names. 51 CODEGENOPT(UniqueBasicBlockSectionNames, 1, 1) ///< Set for -funique-basic-block-section-names, 54 CODEGENOPT(EnableAIXExtendedAltivecABI, 1, 0) ///< Set for -mabi=vec-extabi. Enables the extended A… 70 CODEGENOPT(DisableRedZone , 1, 0) ///< Set when -mno-red-zone is enabled. 77 CODEGENOPT(IndirectTlsSegRefs, 1, 0) ///< Set when -mno-tls-direct-seg-refs 90 CODEGENOPT(EmulatedTLS , 1, 0) ///< Set by default or -f[no-]emulated-tls. 97 CODEGENOPT(FunctionSections , 1, 0) ///< Set when -ffunction-sections is enabled. 98 CODEGENOPT(InstrumentFunctions , 1, 0) ///< Set when -finstrument-functions is 100 CODEGENOPT(InstrumentFunctionsAfterInlining , 1, 0) ///< Set when [all …]
|
| /openbsd-src/gnu/llvm/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 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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/usr.bin/binutils/opcodes/ |
| H A D | mpw-config.in | 3 Set target_arch `echo {target_canonical} | sed -e 's/-.*-.*//'` 5 Set archname ARCH_{target_arch} 8 Set BFD_MACHINES '"{o}"m68k-dis.c.o "{o}"m68k-opc.c.o' 10 Set BFD_MACHINES '"{o}"ppc-dis.c.o "{o}"ppc-opc.c.o' 12 Set BFD_MACHINES '"{o}"i386-dis.c.o' 14 Set BFD_MACHINES '"{o}"mips-dis.c.o "{o}"mips-opc.c.o' 16 Set BFD_MACHINES '"{o}"sh-dis.c.o'
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/DataFormatters/ |
| H A D | FormatCache.h | 44 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);
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/ |
| H A D | virtual4.C | 9 void Set() { SetProp(); } in Set() function 26 a.Set(); in main() 27 b.Set(); in main() 28 c->Set(); in main() 29 d->Set(); in main()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/ |
| H A D | template34.C | 2 class Set { 17 typename Set<T>::Compare Set<T>::cmp1 = &gen_cmp; 20 int (*Set<T>::cmp2)(const T&, const T&) = &gen_cmp; variable 23 Set<int> s; in main()
|
| /openbsd-src/gnu/llvm/lldb/source/Breakpoint/ |
| H A D | BreakpointOptions.cpp | 121 m_set_flags.Set(~((Flags::ValueType)0)); in BreakpointOptions() 131 m_set_flags.Set(eEnabled | eIgnoreCount | eOneShot | eAutoContinue); in BreakpointOptions() 176 m_set_flags.Set(eEnabled); in CopyOverSetOptions() 181 m_set_flags.Set(eOneShot); in CopyOverSetOptions() 189 m_set_flags.Set(eCallback); in CopyOverSetOptions() 194 m_set_flags.Set(eIgnoreCount); in CopyOverSetOptions() 206 m_set_flags.Set(eCondition); in CopyOverSetOptions() 212 m_set_flags.Set(eAutoContinue); in CopyOverSetOptions() 220 m_set_flags.Set(eThreadSpec); in CopyOverSetOptions() 245 set_options.Set(eEnabled); in CreateFromStructuredData() [all …]
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/tsan/tests/unit/ |
| H A D | tsan_vector_clock_test.cpp | 25 vc->Set(static_cast<Sid>(i), static_cast<Epoch>(i)); in TEST() 49 vc1->Set(static_cast<Sid>(i), static_cast<Epoch>(i)); in TEST() 50 vc2->Set(static_cast<Sid>(i), static_cast<Epoch>(kThreadSlotCount - i)); in TEST() 71 vc1->Set(static_cast<Sid>(i), static_cast<Epoch>(i)); in TEST() 72 vc2->Set(static_cast<Sid>(i), static_cast<Epoch>(kThreadSlotCount - i)); in TEST() 85 vc1->Set(static_cast<Sid>(i), static_cast<Epoch>(i)); in TEST() 86 vc2->Set(static_cast<Sid>(i), static_cast<Epoch>(kThreadSlotCount - i)); in TEST()
|
| /openbsd-src/gnu/llvm/clang/tools/libclang/ |
| H A D | CXString.cpp | 123 CXStringSet *Set = new CXStringSet; in createSet() local 124 Set->Count = Strings.size(); in createSet() 125 Set->Strings = new CXString[Set->Count]; in createSet() 126 for (unsigned SI = 0, SE = Set->Count; SI < SE; ++SI) in createSet() 127 Set->Strings[SI] = createDup(Strings[SI]); in createSet() 128 return Set; in createSet()
|
| /openbsd-src/gnu/llvm/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 …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Frontend/OpenMP/ |
| H A D | OMPContext.cpp | 441 TraitSet Set, TraitSelector Selector, StringRef S) { in getOpenMPContextTraitPropertyKind() argument 444 if (Set == TraitSet::device && Selector == TraitSelector::device_isa) in getOpenMPContextTraitPropertyKind() 447 if (Set == TraitSet::TraitSetEnum && Str == S) \ in getOpenMPContextTraitPropertyKind() 486 TraitSet Set, in isValidTraitSelectorForTraitSet() argument 489 AllowsTraitScore = Set != TraitSet::construct && Set != TraitSet::device; in isValidTraitSelectorForTraitSet() 494 return Set == TraitSet::TraitSetEnum; in isValidTraitSelectorForTraitSet() 501 TraitProperty Property, TraitSelector Selector, TraitSet Set) { in isValidTraitPropertyForTraitSetAndSelector() argument 505 return Set == TraitSet::TraitSetEnum && \ in isValidTraitPropertyForTraitSetAndSelector() 522 std::string llvm::omp::listOpenMPContextTraitSelectors(TraitSet Set) { in listOpenMPContextTraitSelectors() argument 525 if (TraitSet::TraitSetEnum == Set && StringRef(Str) != "Invalid") \ in listOpenMPContextTraitSelectors() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | LoopDistribute.cpp | 131 Set.insert(I); in InstPartition() 138 void add(Instruction *I) { Set.insert(I); } in add() 141 InstructionSet::iterator begin() { return Set.begin(); } in begin() 142 InstructionSet::iterator end() { return Set.end(); } in end() 143 InstructionSet::const_iterator begin() const { return Set.begin(); } in begin() 144 InstructionSet::const_iterator end() const { return Set.end(); } in end() 145 bool empty() const { return Set.empty(); } in empty() 150 Other.Set.insert(Set.begin(), Set.end()); in moveTo() 151 Set.clear(); in moveTo() 162 Set.insert(B->getTerminator()); in populateUsedSet() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/binutils/ |
| H A D | mpw-config.in | 3 Set target_arch `echo {target_canonical} | sed -e 's/-.*-.*//'` 7 Set archname ARCH_{target_arch} 9 Set underscore 0 12 Set underscore 1
|
| /openbsd-src/gnu/usr.bin/perl/cpan/HTTP-Tiny/corpus/ |
| H A D | cookies-03.txt | 12 Set-Cookie: cname=cvalue01; domain=example.com; path=/ 30 Set-Cookie: cname=cvalue02; domain=example.com; path=/ 47 Set-Cookie: cname=cvalue03; domain=example.com; path=/ 65 Set-Cookie: cname=cvalue02; domain=example.com; path=/ 83 Set-Cookie: cname=cvalue03; domain=example.com; path=/
|
| /openbsd-src/gnu/llvm/lld/MinGW/ |
| H A D | Options.td | 72 defm file_alignment: Eq<"file-alignment", "Set file alignment">; 76 defm heap: Eq<"heap", "Set size of the initial heap">; 79 "Set the 'high entropy VA' flag", "Don't set the 'high entropy VA' flag">; 88 def m: JoinedOrSeparate<["-"], "m">, HelpText<"Set target emulation">; 90 "Set the OS and subsystem major version">; 92 "Set the OS and subsystem major version">; 95 "Set the OS and subsystem minor version">; 97 "Set the OS and subsystem minor version">; 99 "Set the 'no SEH' flag in the executable", "Don't set the 'no SEH' flag">; 101 "Set the 'nxcompat' flag in the executable", "Don't set the 'nxcompat' flag">; [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SPIRV/MCTargetDesc/ |
| H A D | SPIRVBaseInfo.cpp | 177 std::string getExtInstSetName(SPIRV::InstructionSet::InstructionSet Set) { in getExtInstSetName() argument 178 switch (Set) { in getExtInstSetName() 191 for (auto Set : {SPIRV::InstructionSet::GLSL_std_450, in getExtInstSetFromString() 193 if (SetName == getExtInstSetName(Set)) in getExtInstSetFromString() 194 return Set; in getExtInstSetFromString() 199 std::string getExtInstName(SPIRV::InstructionSet::InstructionSet Set, in getExtInstName() argument
|