| /freebsd-12.1/contrib/llvm/lib/TableGen/ |
| H A D | SetTheory.cpp | 89 RecSet Set; in apply() local 106 if (unsigned(N) < Set.size()) in apply2() 107 Elts.insert(Set.begin() + N, Set.end()); in apply2() 119 N = Set.size(); in apply2() 120 Elts.insert(Set.begin(), Set.begin() + N); in apply2() 135 if (Set.empty()) in apply2() 138 N = Set.size() - (-N % Set.size()); in apply2() 140 N %= Set.size(); in apply2() 141 Elts.insert(Set.begin() + N, Set.end()); in apply2() 142 Elts.insert(Set.begin(), Set.begin() + N); in apply2() [all …]
|
| /freebsd-12.1/contrib/sendmail/libsm/ |
| H A D | README | 61 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-12.1/stand/i386/btx/btx/ |
| H A D | btx.S | 134 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-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | SmallSet.h | 140 std::set<T, C> Set; variable 157 return Vector.empty() && Set.empty(); in empty() 161 return isSmall() ? Vector.size() : Set.size(); in size() 170 return Set.count(V); in count() 195 Set.insert(Vector.back()); in insert() 198 Set.insert(V); in insert() 210 return Set.erase(V); in erase() 221 Set.clear(); in clear() 227 return {Set.begin()}; in begin() 233 return {Set.end()}; in end() [all …]
|
| H A D | FoldingSet.h | 560 FoldingSet<T> Set; variable 564 explicit FoldingSetVector(unsigned Log2InitSize = 6) : Set(Log2InitSize) {} in Set() function 577 void clear() { Set.clear(); Vector.clear(); } in clear() 583 return Set.FindNodeOrInsertPos(ID, InsertPos); in FindNodeOrInsertPos() 590 T *Result = Set.GetOrInsertNode(N); in GetOrInsertNode() 599 Set.InsertNode(N, InsertPos); in InsertNode() 606 Set.InsertNode(N); in InsertNode() 611 unsigned size() const { return Set.size(); } in size() 614 bool empty() const { return Set.empty(); } in empty()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | CodeGenOptions.def | 50 CODEGENOPT(UniqueSectionNames, 1, 1) ///< Set for -funique-section-names. 65 CODEGENOPT(IndirectTlsSegRefs, 1, 0) ///< Set when -mno-tls-direct-seg-refs 87 CODEGENOPT(InstrumentFunctionsAfterInlining , 1, 0) ///< Set when 89 CODEGENOPT(InstrumentFunctionEntryBare , 1, 0) ///< Set when 99 ///< Set when -fxray-always-emit-customevents is enabled. 102 ///< Set when -fxray-always-emit-typedevents is enabled. 109 CODEGENOPT(InstrumentForProfiling , 1, 0) ///< Set when -pg is enabled. 110 CODEGENOPT(CallFEntry , 1, 0) ///< Set when -mfentry is enabled. 113 CODEGENOPT(PrepareForLTO , 1, 0) ///< Set when -flto is enabled on the 133 CODEGENOPT(FatalWarnings , 1, 0) ///< Set when -Wa,--fatal-warnings is [all …]
|
| /freebsd-12.1/sys/gnu/dts/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 */ 248 /* Set maximum frequency as 900MHz */ [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/ |
| H A D | BreakpointOptions.cpp | 194 m_set_flags.Set(eEnabled); in CopyOverSetOptions() 199 m_set_flags.Set(eOneShot); in CopyOverSetOptions() 207 m_set_flags.Set(eCallback); in CopyOverSetOptions() 266 set_options.Set(eEnabled); in CreateFromStructuredData() 277 set_options.Set(eOneShot); in CreateFromStructuredData() 310 set_options.Set(eCondition); in CreateFromStructuredData() 437 m_set_flags.Set(eCallback); in SetCallback() 448 m_set_flags.Set(eCallback); in SetCallback() 540 m_set_flags.Set(eThreadSpec); in SetThreadID() 546 m_set_flags.Set(eThreadSpec); in SetThreadSpec() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | Threading.cpp | 78 cpu_set_t Set; in hardware_concurrency() local 79 if (sched_getaffinity(0, sizeof(Set), &Set)) in hardware_concurrency() 80 return CPU_COUNT(&Set); in hardware_concurrency()
|
| /freebsd-12.1/contrib/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerMerge.h | 68 Set<uint32_t> ParseSummary(std::istream &IS); 69 size_t Merge(const Set<uint32_t> &InitialFeatures, 72 return Merge(Set<uint32_t>{}, NewFiles); in Merge() 75 Set<uint32_t> AllFeatures() const;
|
| H A D | FuzzerMerge.cpp | 126 size_t Merger::Merge(const Set<uint32_t> &InitialFeatures, in Merge() 130 Set<uint32_t> AllFeatures(InitialFeatures); in Merge() 182 Set<uint32_t> Merger::AllFeatures() const { in AllFeatures() 183 Set<uint32_t> S; in AllFeatures() 189 Set<uint32_t> Merger::ParseSummary(std::istream &IS) { in ParseSummary() 191 Set<uint32_t> Res; in ParseSummary() 225 Set<size_t> AllFeatures; in CrashResistantMergeInternalStep() 245 Set<size_t> UniqFeatures; in CrashResistantMergeInternalStep() 373 Set<uint32_t> InitialFeatures; in CrashResistantMerge()
|
| /freebsd-12.1/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(NULL); in TEST()
|
| H A D | sample2.h | 57 Set(a_c_string); in MyString() 62 Set(string.c_string_); in MyString() 79 void Set(const char* c_string);
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | LoopDistribute.cpp | 134 Set.insert(I); in InstPartition() 141 void add(Instruction *I) { Set.insert(I); } in add() 145 InstructionSet::iterator end() { return Set.end(); } in end() 148 bool empty() const { return Set.empty(); } in empty() 153 Other.Set.insert(Set.begin(), Set.end()); in moveTo() 154 Set.clear(); in moveTo() 165 Set.insert(B->getTerminator()); in populateUsedSet() 169 SmallVector<Instruction *, 8> Worklist(Set.begin(), Set.end()); in populateUsedSet() 221 if (!Set.count(&Inst)) { in removeUnusedInsts() 243 for (auto *I : Set) in print() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | CompileUnit.cpp | 29 m_flags.Set(flagsParsedLanguage); in CompileUnit() 42 m_flags.Set(flagsParsedLanguage); in CompileUnit() 182 m_flags.Set(flagsParsedLanguage); in GetLanguage() 195 m_flags.Set(flagsParsedLineTable); in GetLineTable() 208 m_flags.Set(flagsParsedLineTable); in SetLineTable() 215 m_flags.Set(flagsParsedDebugMacros); in GetDebugMacros() 230 m_flags.Set(flagsParsedDebugMacros); in SetDebugMacros() 397 m_flags.Set(flagsParsedImportedModules); in GetImportedModules() 410 m_flags.Set(flagsParsedSupportFiles); in GetSupportFiles()
|
| /freebsd-12.1/contrib/libstdc++/include/ext/pb_ds/detail/pat_trie_/ |
| H A D | synth_e_access_traits.hpp | 58 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-12.1/contrib/compiler-rt/lib/esan/ |
| H A D | working_set_posix.cpp | 58 bool processWorkingSetSigprocmask(int How, void *Set, void *OldSet) { in processWorkingSetSigprocmask() argument 64 if (Set && (How == SIG_BLOCK || How == SIG_SETMASK)) { in processWorkingSetSigprocmask() 65 if (internal_sigismember((__sanitizer_sigset_t *)Set, SIGSEGV)) { in processWorkingSetSigprocmask() 67 internal_sigdelset((__sanitizer_sigset_t *)Set, SIGSEGV); in processWorkingSetSigprocmask()
|
| /freebsd-12.1/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-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDebugPubTable.h | 43 struct Set { struct 64 std::vector<Set> Sets; argument 76 ArrayRef<Set> getData() { return Sets; } in getData()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | GCNMinRegStrategy.cpp | 185 SmallPtrSet<const SUnit*, 32> Set; in bumpPredsPriority() local 194 Set.insert(PSU); in bumpPredsPriority() 198 SmallVector<const SUnit*, 32> Worklist(Set.begin(), Set.end()); in bumpPredsPriority() 204 Set.insert(P.getSUnit()).second) in bumpPredsPriority() 211 const auto SetEnd = Set.end(); in bumpPredsPriority() 213 if (Set.find(C.SU) != SetEnd) { in bumpPredsPriority()
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugAranges.cpp | 28 DWARFDebugArangeSet Set; in extract() local 30 while (Set.extract(DebugArangesData, &Offset)) { in extract() 31 uint32_t CUOffset = Set.getCompileUnitDIEOffset(); in extract() 32 for (const auto &Desc : Set.descriptors()) { in extract()
|
| /freebsd-12.1/lib/libomp/ |
| H A D | kmp_i18n_id.inc | 10 // Set #1, meta. 19 // Set #2, strings. 78 // Set #3, formats. 88 // Set #4, messages. 361 // Set #5, hints.
|
| /freebsd-12.1/contrib/llvm/lib/TextAPI/ELF/ |
| H A D | TBEHandler.cpp | 118 static void inputOne(IO &IO, StringRef Key, std::set<ELFSymbol> &Set) { in inputOne() 121 Set.insert(Sym); in inputOne() 124 static void output(IO &IO, std::set<ELFSymbol> &Set) { in output() 125 for (auto &Sym : Set) in output()
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/ |
| H A D | SystemZInstrSystem.td | 35 // Set PSW key from address. 39 // Set system mask. 99 // Set prefix. 119 // Set storage key extended. 304 // Set clock. 312 // Set clock comparator. 316 // Set CPU timer. 456 // Set CPU counter. 460 // Set peripheral counter. 504 // Set channel monitor. [all …]
|
| /freebsd-12.1/usr.sbin/pc-sysinstall/examples/ |
| H A D | pcinstall.cfg.netinstall | 8 # Set the disk parameters 38 # Set if we are installing via optical, USB, or FTP 52 # Set the root pass
|