| /NextBSD/contrib/llvm/lib/TableGen/ |
| HD | SetTheory.cpp | 70 virtual void apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, 78 RecSet Set; in apply() local 79 ST.evaluate(Expr->arg_begin()[0], Set, Loc); in apply() 84 apply2(ST, Expr, Set, II->getValue(), Elts, Loc); in apply() 90 void apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, in apply2() 95 if (unsigned(N) < Set.size()) in apply2() 96 Elts.insert(Set.begin() + N, Set.end()); in apply2() 102 void apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, in apply2() 107 if (unsigned(N) > Set.size()) in apply2() 108 N = Set.size(); in apply2() [all …]
|
| /NextBSD/contrib/llvm/include/llvm/ADT/ |
| HD | SmallSet.h | 37 std::set<T, C> Set; variable 45 return Vector.empty() && Set.empty(); in empty() 49 return isSmall() ? Vector.size() : Set.size(); in size() 58 return Set.count(V); in count() 71 return std::make_pair(None, Set.insert(V).second); in insert() 83 Set.insert(Vector.back()); in insert() 86 Set.insert(V); in insert() 98 return Set.erase(V); in erase() 109 Set.clear(); in clear() 112 bool isSmall() const { return Set.empty(); } in isSmall()
|
| HD | FoldingSet.h | 542 FoldingSet<T> Set; variable 547 : Set(Log2InitSize) { in Set() function 559 void clear() { Set.clear(); Vector.clear(); } in clear() 565 return Set.FindNodeOrInsertPos(ID, InsertPos); in FindNodeOrInsertPos() 572 T *Result = Set.GetOrInsertNode(N); in GetOrInsertNode() 581 Set.InsertNode(N, InsertPos); in InsertNode() 588 Set.InsertNode(N); in InsertNode() 593 unsigned size() const { return Set.size(); } in size() 596 bool empty() const { return Set.empty(); } in empty()
|
| /NextBSD/sys/boot/pc98/btx/btx/ |
| HD | btx.S | 130 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 task [all …]
|
| /NextBSD/sys/boot/i386/btx/btx/ |
| HD | btx.S | 134 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 task [all …]
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Frontend/ |
| HD | CodeGenOptions.def | 42 CODEGENOPT(DataSections , 1, 0) ///< Set when -fdata-sections is enabled. 43 CODEGENOPT(UniqueSectionNames, 1, 1) ///< Set for -funique-section-names. 44 CODEGENOPT(DisableFPElim , 1, 0) ///< Set when -fomit-frame-pointer is enabled. 51 CODEGENOPT(DisableRedZone , 1, 0) ///< Set when -mno-red-zone is enabled. 64 CODEGENOPT(FunctionSections , 1, 0) ///< Set when -ffunction-sections is enabled. 65 CODEGENOPT(InstrumentFunctions , 1, 0) ///< Set when -finstrument-functions is 67 CODEGENOPT(InstrumentForProfiling , 1, 0) ///< Set when -pg is enabled. 70 CODEGENOPT(PrepareForLTO , 1, 0) ///< Set when -flto is enabled on the 73 CODEGENOPT(MergeFunctions , 1, 0) ///< Set when -fmerge-functions is enabled. 74 CODEGENOPT(MSVolatile , 1, 0) ///< Set when /volatile:ms is enabled. [all …]
|
| /NextBSD/contrib/llvm/lib/Transforms/Scalar/ |
| HD | LoopDistribute.cpp | 68 Set.insert(I); in InstPartition() 75 void add(Instruction *I) { Set.insert(I); } in add() 78 InstructionSet::iterator begin() { return Set.begin(); } in begin() 79 InstructionSet::iterator end() { return Set.end(); } in end() 80 InstructionSet::const_iterator begin() const { return Set.begin(); } in begin() 81 InstructionSet::const_iterator end() const { return Set.end(); } in end() 82 bool empty() const { return Set.empty(); } in empty() 87 Other.Set.insert(Set.begin(), Set.end()); in moveTo() 88 Set.clear(); in moveTo() 99 Set.insert(B->getTerminator()); in populateUsedSet() [all …]
|
| /NextBSD/contrib/libstdc++/include/ext/pb_ds/detail/pat_trie_/ |
| 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>
|
| /NextBSD/contrib/llvm/tools/lldb/source/Symbol/ |
| HD | CompileUnit.cpp | 33 m_flags.Set(flagsParsedLanguage); in CompileUnit() 50 m_flags.Set(flagsParsedLanguage); in CompileUnit() 224 m_flags.Set(flagsParsedLanguage); in GetLanguage() 244 m_flags.Set(flagsParsedLineTable); in GetLineTable() 263 m_flags.Set(flagsParsedLineTable); in SetLineTable() 445 m_flags.Set(flagsParsedImportedModules); in GetImportedModules() 463 m_flags.Set(flagsParsedSupportFiles); in GetSupportFiles()
|
| /NextBSD/crypto/openssh/ |
| HD | README.hpn | 22 Conditions: HPNBufferSize NOT Set, TCPRcvBufPoll enabled, TCPRcvBuf NOT Set 28 Conditions: HPNBufferSize NOT Set, TCPRcvBufPoll disabled, TCPRcvBuf NOT Set 33 Conditions: HPNBufferSize SET, TCPRcvBufPoll disabled, TCPRcvBuf NOT Set 41 Conditions: HPNBufferSize SET, TCPRcvBufPoll enabled, TCPRcvBuf NOT Set 51 Conditions: HPNBufferSize NOT Set, TCPRcvBufPoll enabled, TCPRcvBuf SET 79 Set the TCP socket receive buffer to n Kilobytes. It can be set up to the
|
| /NextBSD/contrib/llvm/lib/DebugInfo/DWARF/ |
| HD | DWARFDebugAranges.cpp | 25 DWARFDebugArangeSet Set; in extract() local 27 while (Set.extract(DebugArangesData, &Offset)) { in extract() 28 uint32_t CUOffset = Set.getCompileUnitDIEOffset(); in extract() 29 for (const auto &Desc : Set.descriptors()) { in extract()
|
| /NextBSD/sys/boot/fdt/dts/arm/ |
| HD | rpi2.dts | 35 memreserve = <0x08000000 0x08000000>; /* Set by VideoCore */ 68 reg = <0 0x8000000>; /* 128MB, Set by VideoCore */ 73 revision = <0>; /* Set by VideoCore */ 74 serial = <0 0>; /* Set by VideoCore */ 335 broadcom,width = <0>; /* Set by VideoCore */ 336 broadcom,height = <0>; /* Set by VideoCore */ 337 broadcom,depth = <0>; /* Set by VideoCore */ 398 bootargs = ""; /* Set by VideoCore */
|
| HD | rpi.dts | 36 memreserve = <0x08000000 0x08000000>; /* Set by VideoCore */ 51 reg = <0 0x8000000>; /* 128MB, Set by VideoCore */ 56 revision = <0>; /* Set by VideoCore */ 57 serial = <0 0>; /* Set by VideoCore */ 320 broadcom,width = <0>; /* Set by VideoCore */ 321 broadcom,height = <0>; /* Set by VideoCore */ 322 broadcom,depth = <0>; /* Set by VideoCore */ 387 bootargs = ""; /* Set by VideoCore */
|
| /NextBSD/usr.sbin/pc-sysinstall/examples/ |
| HD | pcinstall.cfg.netinstall | 8 # Set the disk parameters 38 # Set if we are installing via optical, USB, or FTP 52 # Set the root pass
|
| HD | pcinstall.cfg.fbsd-netinstall | 8 # Set the disk parameters 38 # Set if we are installing via optical, USB, or FTP 55 # Set the root pass
|
| HD | pcinstall.cfg.restore | 8 # Set the disk parameters 25 # Set if we are installing via optical, USB, or FTP 39 # Set the root pass
|
| HD | pcinstall.cfg.upgrade | 8 # Set the disk parameters 13 # Set if we are installing via optical, USB, or FTP
|
| /NextBSD/contrib/llvm/tools/lldb/source/Target/ |
| HD | StackFrame.cpp | 85 m_flags.Set(m_sc.GetResolvedMask ()); in StackFrame() 118 m_flags.Set(m_sc.GetResolvedMask ()); in StackFrame() 125 m_flags.Set (eSymbolContextTarget); in StackFrame() 158 m_flags.Set(m_sc.GetResolvedMask ()); in StackFrame() 165 m_flags.Set (eSymbolContextTarget); in StackFrame() 174 m_flags.Set (eSymbolContextModule); in StackFrame() 204 m_flags.Set (RESOLVED_FRAME_ID_SYMBOL_SCOPE); in GetStackID() 242 m_flags.Set (RESOLVED_FRAME_ID_SYMBOL_SCOPE); in SetSymbolContextScope() 252 m_flags.Set (RESOLVED_FRAME_CODE_ADDR); in GetFrameCodeAddress() 268 m_flags.Set(eSymbolContextModule); in GetFrameCodeAddress() [all …]
|
| /NextBSD/contrib/libstdc++/ |
| D | configure.host | 76 # Set any CPU-dependent bits. 119 # Set specific CPU overrides for cpu_defines_dir. Most can just use generic. 128 # Set specific CPU overrides for atomic_word_dir. Most can just use generic. 149 # Set specific CPU overrides for atomicity_dir. 162 # Set any OS-dependent bits. 163 # Set the os_include_dir. 164 # Set c_model, c_compatibility here. 274 # Set any OS-dependent and CPU-dependent bits.
|
| /NextBSD/sys/dev/etherswitch/ |
| HD | etherswitch_if.m | 106 # Set port configuration 122 # Set VLAN group configuration 138 # Set the Switch configuration
|
| /NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| HD | CoreEngine.cpp | 591 void CoreEngine::enqueue(ExplodedNodeSet &Set) { in enqueue() argument 592 for (ExplodedNodeSet::iterator I = Set.begin(), in enqueue() 593 E = Set.end(); I != E; ++I) { in enqueue() 598 void CoreEngine::enqueue(ExplodedNodeSet &Set, in enqueue() argument 600 for (ExplodedNodeSet::iterator I = Set.begin(), in enqueue() 601 E = Set.end(); I != E; ++I) { in enqueue() 606 void CoreEngine::enqueueEndOfFunction(ExplodedNodeSet &Set) { in enqueueEndOfFunction() argument 607 for (ExplodedNodeSet::iterator I = Set.begin(), E = Set.end(); I != E; ++I) { in enqueueEndOfFunction()
|
| /NextBSD/sys/teken/ |
| HD | sequences | 66 DECSM Set DEC mode ^[ [ ? h r 67 DECSTBM Set top and bottom margins ^[ [ r r r 86 HTS Horizontal Tab Set ^[ H 96 SGR Set Graphic Rendition ^[ [ m v 97 SM Set Mode ^[ [ h r
|
| /NextBSD/share/examples/bootforth/ |
| HD | screen.4th | 26 : fg ( x -- ) \ Set foreground color 30 : bg ( x -- ) \ Set background color
|
| /NextBSD/contrib/binutils/ld/po/ |
| HD | ld.pot | 26 msgid " --thumb-entry=<sym> Set the entry point to be Thumb symbol <sym>\n" 52 " --dll Set image base to the default for DLLs\n" 57 msgid " --file-alignment <size> Set file alignment\n" 62 msgid " --heap <size> Set initial size of the heap\n" 68 " --image-base <address> Set start address of the executable\n" 74 " --major-image-version <number> Set version number of the executable\n" 79 msgid " --major-os-version <number> Set minimum required OS version\n" 85 " --major-subsystem-version <number> Set minimum required OS subsystem " 92 " --minor-image-version <number> Set revision number of the executable\n" 97 msgid " --minor-os-version <number> Set minimum required OS revision\n" [all …]
|
| /NextBSD/contrib/llvm/lib/Target/Sparc/ |
| HD | Sparc.td | 31 "Enable UltraSPARC Visual Instruction Set extensions">; 34 "Enable Visual Instruction Set extensions II">; 37 "Enable Visual Instruction Set extensions III">;
|