/openbsd-src/sys/dev/microcode/siop/ |
H A D | osiop.ss | 87 JUMP REL(msgin), WHEN MSG_IN 97 MOVE FROM ds_MsgIn, WHEN MSG_IN 115 MOVE FROM ds_ExtMsg, WHEN MSG_IN 121 MOVE FROM ds_SyncMsg, WHEN MSG_IN 137 JUMP REL(switch), WHEN NOT MSG_IN 138 MOVE FROM ds_ExtMsg, WHEN MSG_IN 151 INT int_identify, WHEN NOT MSG_IN 152 MOVE FROM ds_Msg, WHEN MSG_IN 164 MOVE FROM ds_MsgOut, WHEN MSG_OUT 169 MOVE FROM ds_Cmd, WHEN CMD [all …]
|
H A D | oosiop.ss | 69 INT int_err, WHEN NOT MSG_IN 71 MOVE 0, 0, WHEN MSG_IN 81 JUMP REL(msgin), WHEN MSG_IN 82 JUMP REL(msgout), WHEN MSG_OUT 83 JUMP REL(status), WHEN STATUS 84 JUMP REL(cmdout), WHEN CMD 86 JUMP 0, WHEN DATA_IN 88 JUMP 0, WHEN DATA_OUT 94 MOVE 0, 0, WHEN MSG_IN 111 MOVE 0, 0, WHEN MSG_OUT [all …]
|
H A D | siop.ss | 125 JUMP REL(msgout), WHEN MSG_OUT; 126 JUMP REL(msgin), WHEN MSG_IN; 127 JUMP REL(dataout), WHEN DATA_OUT; 128 JUMP REL(datain), WHEN DATA_IN; 129 JUMP REL(cmdout), WHEN CMD; 130 JUMP REL(status), WHEN STATUS; 234 MOVE 1, abs_msgin, WHEN MSG_IN; 237 RETURN, WHEN NOT MSG_IN; If no more message, jump to lun sw 238 MOVE 1, abs_msgin, WHEN MSG_IN; 242 MOVE 1, abs_msgin, WHEN MSG_IN; get tag [all …]
|
/openbsd-src/gnu/usr.bin/perl/t/op/ |
H A D | switch.t | 22 CORE::when(3) { pass "CORE::given and CORE::when"; continue } 48 when(be_true(my $x = "bar")) { 63 when(2) { $ok = 'two'; } 64 when(3) { $ok = 'three'; } 65 when(4) { $ok = 'four'; } 75 when(2) { $ok = 'two'; } 76 when(3) { $ok = 'three'; } 77 when(4) { $ok = 'four'; } 86 when(3.1) { $ok1 = 'n'; } 87 when(3.0) { $ok1 = 'y'; continue } [all …]
|
/openbsd-src/gnu/usr.bin/perl/t/lib/feature/ |
H A D | switch | 12 # No switch; when should be a bareword. 14 print STDOUT when; 16 Unquoted string "when" may clash with future reserved word at - line 3. 17 when 36 Can't "continue" outside a when block at - line 2. 44 # Use switch; so when is a keyword 46 given(1) { when(1) { print "okay" } } 73 # switch out of scope; when should be a bareword. 76 given (1) { when(1) {print "Okay here\n";} } 78 print STDOUT when; [all …]
|
/openbsd-src/gnu/llvm/libcxx/utils/libcxx/test/ |
H A D | features.py | 39 when=lambda cfg: hasCompileFlag(cfg, '-fcoroutines-ts') and 44 when=lambda cfg: hasCompileFlag(cfg, '-Werror=thread-safety'), 48 when=lambda cfg: hasCompileFlag(cfg, '-Wuser-defined-warnings'), 58 when=lambda cfg: hasCompileFlag(cfg, '-fconstexpr-steps=1')), 61 when=lambda cfg: hasCompileFlag(cfg, '-fconstexpr-ops-limit=1')), 63 Feature(name='has-fblocks', when=lambda cfg: hasCompileFlag(cfg, '-fblocks')), 64 …Feature(name='-fsized-deallocation', when=lambda cfg: hasCompileFlag(cfg, '-fsized-deallo… 65 …Feature(name='-faligned-allocation', when=lambda cfg: hasCompileFlag(cfg, '-faligned-allo… 66 …Feature(name='fdelayed-template-parsing', when=lambda cfg: hasCompileFlag(cfg, '-fdelayed-temp… 67 …Feature(name='libcpp-no-coroutines', when=lambda cfg: featureTestMacros(cfg).get('__cpp_i… [all …]
|
/openbsd-src/gnu/llvm/lldb/docs/use/ |
H A D | ondemand.rst | 8 increase debug session load times and can slow developer productivity when the 10 be slow when types from all of the binaries have full debug info as each module 17 When should I consider enabling this feature? 21 binaries that are not all required when you want to focus on debugging a few of 46 having to set any other settings and will try and determine when to enable 60 by file and line are always enabled when on demand symbols is being used. Line 81 tradeoffs of this feature. When setting a breakpoint by function name, if the 86 functions don't exist in symbol tables. When using on demand symbol loading it 91 symbol tables. This can cause breakpoint setting by function name to fail when 107 within debug inforamtion. As such, some lookups by name might fail when they [all …]
|
/openbsd-src/gnu/usr.bin/clang/llvm-objdump/ |
H A D | llvm-objdump.1 | 69 Disassemble only the specified symbols. Takes demangled symbol names when 168 Specify the target architecture when disassembling. Use \fI\%\-\-version\fP 219 When disassembling, display source line numbers. Implies 256 When disassembling, do not print leading addresses for instructions or inline 267 When disassembling, do not print the raw bytes of each instruction. 277 When disassembling with the \fI\%\-\-source\fP option, prepend \fBprefix\fP to 283 When disassembling with the \fI\%\-\-source\fP option, strip out \fBlevel\fP 290 Use hex format when printing immediate values in disassembly output (default). 295 When disassembling, display source interleaved with the disassembly. Implies 307 Display the LMA column when dumping ELF section headers. Defaults to off [all …]
|
/openbsd-src/gnu/llvm/clang/include/clang/AST/ |
H A D | PrettyPrinter.h | 42 /// When printing type to be inserted into code in specific context, this 44 /// qualifier. For example, when inserting code inside namespace foo, we 97 /// This flag is only used when we are printing declarators beyond 104 /// SuppressSpecifiers will be false when printing the 106 /// \c true when we print "y", so that we suppress printing the 112 /// This is used when printing the inner type of elaborated types, 120 /// When true, include the body of a tag definition. 144 /// This flag is used when printing the loop variable in a for-range 151 /// SuppressInitializers will be true when printing "auto x", so that the 173 /// When printing an anonymous tag name, also print the location of that [all …]
|
/openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
H A D | CodeGenOptions.def | 48 ///< aliases to base ctors when possible. 49 CODEGENOPT(DataSections , 1, 0) ///< Set when -fdata-sections is enabled. 70 CODEGENOPT(DisableRedZone , 1, 0) ///< Set when -mno-red-zone is enabled. 77 CODEGENOPT(IndirectTlsSegRefs, 1, 0) ///< Set when -mno-tls-direct-seg-refs 84 ///< Only useful when running CodeGen as a 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 102 CODEGENOPT(InstrumentFunctionEntryBare , 1, 0) ///< Set when 112 CODEGENOPT(XRayInstrumentFunctions , 1, 0) ///< Set when -fxray-instrument is [all …]
|
/openbsd-src/gnu/llvm/clang/docs/ |
H A D | Tooling.rst | 13 level C interface to clang. When in doubt LibClang is probably the interface 14 you want to use. Consider the other interfaces only when you have a good 17 Canonical examples of when to use LibClang: 22 Use LibClang when you...: 29 Do not use LibClang when you...: 41 Canonical examples of when to use Clang Plugins: 46 Use Clang Plugins when you...: 52 Do not use Clang Plugins when you...: 65 examples of when to use LibTooling: 70 Use LibTooling when you...: [all …]
|
/openbsd-src/usr.sbin/smtpd/ |
H A D | runq.c | 26 time_t when; member 52 if (job->when <= now) in runq_reset() 55 tv.tv_sec = job->when - now; in runq_reset() 71 if (job->when > now) in runq_timeout() 110 runq_schedule_at(struct runq *runq, time_t when, void *arg) in runq_schedule_at() argument 119 job->when = when; in runq_schedule_at() 122 if (tmpjob->when > job->when) { in runq_schedule_at() 159 runq_pending(struct runq *runq, void *arg, time_t *when) in runq_pending() argument 165 if (when) in runq_pending() 166 *when = job->when; in runq_pending()
|
/openbsd-src/usr.sbin/pppd/pppstats/ |
H A D | pppstats.8 | 103 The following fields are printed on the input side when the 115 Not reported when the 120 Not reported when the 126 Only reported when the 131 Only reported when the 138 Only reported when the 144 Only reported when the 161 Not reported when the 166 Not reported when the 172 Only reported when the [all …]
|
/openbsd-src/gnu/llvm/llvm/docs/CommandGuide/ |
H A D | llvm-objdump.rst | 42 Disassemble only the specified symbols. Takes demangled symbol names when 125 Specify the target architecture when disassembling. Use :option:`--version` 168 When disassembling, display source line numbers. Implies 194 When disassembling, do not print leading addresses for instructions or inline 203 When disassembling, do not print the raw bytes of each instruction. 211 When disassembling with the :option:`--source` option, prepend ``prefix`` to 216 When disassembling with the :option:`--source` option, strip out ``level`` 222 Use hex format when printing immediate values in disassembly output (default). 226 When disassembling, display source interleaved with the disassembly. Implies 236 Display the LMA column when dumping ELF section headers. Defaults to off [all …]
|
/openbsd-src/sys/dev/ic/ |
H A D | ufshci.c | 570 /* 7.2.1 Basic Steps when Building a UTP Transfer Request: 1) */ in ufshci_utr_cmd_nop() 576 /* 7.2.1 Basic Steps when Building a UTP Transfer Request: 2a) */ in ufshci_utr_cmd_nop() 579 /* 7.2.1 Basic Steps when Building a UTP Transfer Request: 2b) */ in ufshci_utr_cmd_nop() 582 /* 7.2.1 Basic Steps when Building a UTP Transfer Request: 2c) */ in ufshci_utr_cmd_nop() 588 /* 7.2.1 Basic Steps when Building a UTP Transfer Request: 2d) */ in ufshci_utr_cmd_nop() 591 /* 7.2.1 Basic Steps when Building a UTP Transfer Request: 2e) */ in ufshci_utr_cmd_nop() 596 /* 7.2.1 Basic Steps when Building a UTP Transfer Request: 2f) */ in ufshci_utr_cmd_nop() 609 /* 7.2.1 Basic Steps when Building a UTP Transfer Request: 2g) */ in ufshci_utr_cmd_nop() 612 /* 7.2.1 Basic Steps when Building a UTP Transfer Request: 3) */ in ufshci_utr_cmd_nop() 617 /* 7.2.1 Basic Steps when Buildin in ufshci_utr_cmd_nop() [all...] |
/openbsd-src/lib/libpcap/ |
H A D | pcap_open_live.3 | 244 is used to return error text and is only set when 264 is used to return error text and is only set when 334 or the read times out (when doing live reads and a non-zero 348 Zero is returned when EOF is reached in a savefile. 410 when that BPF program is no longer needed, for example after it has 422 return when live read timeouts occur. 427 allows the reception and processing of any packets that arrive when the 450 the packet and \-2 is returned when there are no more packets to read in a 457 returns the snapshot length specified when 552 When readin [all...] |
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/ |
H A D | Wsignprom.c | 7 #if -1 > 0U /* { dg-warning "changes sign when promoted" } */ 10 #if 0U + -1 /* { dg-warning "changes sign when promoted" } */ 13 #if 0U * -1 /* { dg-warning "changes sign when promoted" } */ 16 #if 1U / -2 /* { dg-warning "changes sign when promoted" } */ 19 #if -1 % 1U /* { dg-warning "changes sign when promoted" } */ 22 #if 1 ? 0U : -1 /* { dg-warning "changes sign when promoted" } */ 25 #if 1 ? -1 : 0U /* { dg-warning "changes sign when promoted" } */
|
/openbsd-src/gnu/usr.bin/perl/pod/ |
H A D | perlsyn.pod | 37 value, which is anything other than C<undef>. When used as a number, 38 C<undef> is treated as C<0>; when used as a string, it is treated as 39 the empty string, C<"">; and when used as a reference that isn't being 116 TERMs in an expression--and thus need an explicit termination when used 121 X<until> X<when> X<foreach> X<for> 133 when EXPR 164 semantics (conditional evaluated first), except when applied to a 219 The C<when> modifier is an experimental feature that first appeared in Perl 228 anywhere within the C<when> modifier's dynamic scope, but must be 250 liberally, not only when Per 1343 Breaking outDESCRIPTION""Experimental Details on given and when global() argument 1349 Fall-throughDESCRIPTION""Experimental Details on given and when global() argument 1360 Return valueDESCRIPTION""Experimental Details on given and when global() argument 1402 Switching in a loopDESCRIPTION""Experimental Details on given and when global() argument 1431 Differences from RakuDESCRIPTION""Experimental Details on given and when global() argument [all...] |
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/ |
H A D | README.md | 68 This is handy if you want to debug and develope the `lldb-vscode` executable when adding features o… 80 When you launch a program with Visual Studio Code you will need to create a [launch.json](https://c… 91 |**env** |dictionary| | Environment variables to set when launching the program. The for… 93 …DB target. Commands and command output will be sent to the debugger console when they are executed. 94 …n created. Commands and command output will be sent to the debugger console when they are executed. 95 …each stop. Commands and command output will be sent to the debugger console when they are executed. 96 …ng]| | LLDB commands executed when the program exits. Commands and command output will be sent to … 97 …| LLDB commands executed when the debugging session ends. Commands and command output will be sent… 99 |**debuggerRoot** | string| |Specify a working directory to use when launching lldb-vscode. If th… 103 When attaching to a process using LLDB you can attach in a few ways [all …]
|
/openbsd-src/usr.bin/ssh/ |
H A D | ssh-add.1 | 66 When run without arguments, it adds the files 97 When loading keys into or deleting keys from the agent, process 128 Specifies the hash algorithm used when displaying key fingerprints. 139 Specifies a known hosts file to look up hostkeys when using 156 When adding keys, constrain them to be usable only through specific hosts or to 175 Multiple destination constraints may be added when loading keys. 176 When attempting authentication with a key that has destination constraints, 201 Support in both the remote SSH client and server is required when using 209 when a key is used, or when it is forwarded by a 219 When loading keys into or deleting keys from the agent, process plain private [all …]
|
H A D | ssh-keygen.1 | 251 when the key is created, but can be changed using the 260 This may be used when generating new keys, and existing new-format 285 When saving a private key, this option specifies the number of KDF 316 When used in combination with 322 Specifies the hash algorithm used when displaying key fingerprints. 352 Use generic DNS format when printing fingerprint resource records using the 371 When signing a key, create a host certificate instead of a user 377 Specify the key identity when signing a public key. 460 format, but when converting public keys for export the default format is 464 when generatin [all...] |
/openbsd-src/gnu/llvm/llvm/include/llvm/Target/ |
H A D | TargetOptions.h | 68 // is useful when associating profile counts from virtual addresses 105 /// Enable abort calls when global instruction selection fails to lower/select 113 /// Indicates when and how the Swift async frame pointer bit should be set. 158 /// UnsafeFPMath - This flag is enabled when the 159 /// -enable-unsafe-fp-math flag is specified on the command line. When 165 /// NoInfsFPMath - This flag is enabled when the 166 /// -enable-no-infs-fp-math flag is specified on the command line. When 171 /// NoNaNsFPMath - This flag is enabled when the 172 /// -enable-no-nans-fp-math flag is specified on the command line. When 177 /// NoTrappingFPMath - This flag is enabled when the [all …]
|
/openbsd-src/gnu/llvm/lldb/source/Core/ |
H A D | CoreProperties.td | 39 …Desc<"The expiration time in days for a file. When a file hasn't been accessed for the specified a… 54 Desc<"The default disassembly format string to use when disassembling instruction sequences.">; 58 …Desc<"The default frame format string to use when displaying stack frame information for threads."… 80 Desc<"The number of disassembly lines to show when displaying a stopped context.">; 85 Desc<"Control when to display disassembly when displaying a stopped context.">; 89 Desc<"The size limit to use when disassembling large functions (default: 32KB).">; 93 …Desc<"The number of sources lines to display that come after the current source line when displayi… 97 …Desc<"The number of sources lines to display that come before the current source line when display… 105 …e the column information from the debug info to mark the current position when displaying a stoppe… 109 …Desc<"When displaying the column marker in a color-enabled terminal, use the ANSI terminal code sp… [all …]
|
/openbsd-src/gnu/llvm/compiler-rt/include/xray/ |
H A D | xray_log_interface.h | 42 /// // When the log implementation has had the chance to initialize, we can 89 /// implementation first. Some implementations might stay in an "off" state when 114 /// When an implementation is done initializing, it MUST return 115 /// XRAY_LOG_INITIALIZED. When users call `__xray_patch()`, they are 127 /// When an implementation is done finalizing, it MUST return 143 /// This enum indicates the installation state of a logging implementation, when 154 /// pointers in XRayLogImpl when being installed through `__xray_set_log_impl`. 166 /// when called. 177 /// when called. 189 /// The log implementation provided routine for when __xray_log_flushLog() is [all …]
|
/openbsd-src/share/man/man4/ |
H A D | tcp.4 | 128 sends data when it is presented; 129 when outstanding data has not yet been acknowledged, it gathers 152 When this option is set to a non-zero value, 170 When more than one segment has been dropped per window, the transmission can 178 When a listening socket has 212 when trying to establish a connection on a socket which 215 when the system runs out of memory for 218 when a connection was dropped 221 when the remote peer 224 when th [all...] |