| /freebsd/sys/dev/iscsi/ |
| H A D | iscsi.c | 189 static void iscsi_session_reconnect(struct iscsi_session *is); 190 static void iscsi_session_terminate(struct iscsi_session *is); 192 static struct iscsi_outstanding *iscsi_outstanding_find(struct iscsi_session *is, 194 static struct iscsi_outstanding *iscsi_outstanding_add(struct iscsi_session *is, 197 static void iscsi_outstanding_remove(struct iscsi_session *is, 203 struct iscsi_session *is; in iscsi_pdu_prepare() local 206 is = PDU_SESSION(request); in iscsi_pdu_prepare() 208 ISCSI_SESSION_LOCK_ASSERT(is); in iscsi_pdu_prepare() 220 if (ISCSI_SNGT(is->is_cmdsn, is->is_maxcmdsn) && in iscsi_pdu_prepare() 229 ISCSI_SESSION_DEBUG(is, "postponing send, CmdSN %u, " in iscsi_pdu_prepare() [all …]
|
| /freebsd/sys/netpfil/ipfilter/netinet/ |
| H A D | ip_state.c | 419 ipstate_t *is; in ipf_state_soft_fini() local 421 while ((is = softs->ipf_state_list) != NULL) in ipf_state_soft_fini() 422 ipf_state_del(softc, is, ISL_UNLOAD); in ipf_state_soft_fini() 824 ipstate_t *is, *isn; in ipf_state_getent() local 850 for (is = softs->ipf_state_list; is; is = is->is_next) in ipf_state_getent() 851 if (is == isn) in ipf_state_getent() 853 if (!is) { in ipf_state_getent() 887 ipstate_t *is, *isn; in ipf_state_putent() local 990 for (is = softs->ipf_state_list; is; is = is->is_next) in ipf_state_putent() 991 if (is->is_rule == fr) { in ipf_state_putent() [all …]
|
| H A D | ip_scan.c | 222 ipf_scan_attachis(struct ipstate *is) in ipf_scan_attachis() argument 228 fr = is->is_rule; in ipf_scan_attachis() 232 is->is_isc = i; in ipf_scan_attachis() 235 is->is_flags |= IS_SC_CLIENT; in ipf_scan_attachis() 237 is->is_flags |= IS_SC_MATCHC; in ipf_scan_attachis() 239 is->is_flags |= IS_SC_SERVER; in ipf_scan_attachis() 241 is->is_flags |= IS_SC_MATCHS; in ipf_scan_attachis() 263 ipf_scan_detachis(is) in ipf_scan_detachis() argument 264 struct ipstate *is; in ipf_scan_detachis() 269 if ((i = is->is_isc) && (i != (ipscan_t *)-1)) { [all …]
|
| /freebsd/usr.bin/m4/tests/ |
| H A D | regress.comments.out | 2 # this is a comment 3 >> this is a COMMENT 4 'XXX' this is a COMMENT 5 'XXX' this is a COMMENT q COMMENT too 8 # this is a COMMENT 9 >> this is a comment 10 'XXX' this is a COMMENT 11 'XXX' this is a COMMENT q COMMENT too 14 # this is a COMMENT 15 >> this is a COMMENT [all …]
|
| H A D | comments.m4 | 6 # this is a comment 7 >> this is a comment 8 p this is a comment 9 p this is a comment q comment too 13 # this is a comment 14 >> this is a comment 15 p this is a comment 16 p this is a comment q comment too 20 # this is a comment 21 >> this is a comment [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | TokenAnnotator.cpp | 67 if (Left->Previous && Left->Previous->is(tok::greater) && in isLambdaParameterList() 69 Left->Previous->MatchingParen->is(TT_TemplateOpener)) { in isLambdaParameterList() 74 return Left->Previous && Left->Previous->is(tok::r_square) && in isLambdaParameterList() 76 Left->Previous->MatchingParen->is(TT_LambdaLSquare); in isLambdaParameterList() 91 if (Tok.Previous && Tok.Previous->is(tok::at)) in isCppAttribute() 106 if (AttrTok->is(tok::colon) || in isCppAttribute() 111 if (AttrTok->is(tok::ellipsis)) in isCppAttribute() 161 if (Previous.Previous->is(tok::r_brace)) in parseAngle() 163 if (Previous.Previous->is(tok::r_paren) && Contexts.size() > 1 && in parseAngle() 169 if (Previous.Previous->is(tok::kw_operator) && in parseAngle() [all …]
|
| H A D | UnwrappedLineParser.cpp | 283 // LK_TextProto is special since its top-level is parsed as the body of a in parseFile() 305 if (FormatTok->is(Keywords.kw_where)) { in parseCSharpGenericTypeConstraint() 345 return Previous && Previous->is(tok::comment) && in precededByCommentOrPPDirective() 349 /// \brief Parses a level, that is ???. 359 OpeningBrace && OpeningBrace->is(TT_RequiresExpressionLBrace); in parseLevel() 371 if (FormatTok->is(tok::l_paren)) in parseLevel() 376 if (FormatTok->is(TT_MacroBlockBegin)) in parseLevel() 378 else if (FormatTok->is(TT_MacroBlockEnd)) in parseLevel() 427 if (Next->is(to in parseLevel() [all...] |
| /freebsd/contrib/kyua/integration/ |
| H A D | cmd_report_junit_test.sh | 92 <system-out>This is the stdout of pass 97 allowed_architectures is empty 98 allowed_platforms is empty 99 description is empty 100 execenv is empty 101 execenv_jail_params is empty 104 required_configs is empty 106 required_files is empty 107 required_kmods is empty 109 required_programs is empty [all …]
|
| /freebsd/contrib/one-true-awk/testdir/ |
| H A D | T.int-expr | 12 printf("%s ~ /%s/ -> should be %d, is %d\n", $1, pattern, $2, check) 82 ac ~ /ab{0}c/ -> should be 1, is 1 83 abc ~ /ab{0}c/ -> should be 0, is 0 84 ac ~ /a(b{0})c/ -> should be 1, is 1 85 abc ~ /a(b{0})c/ -> should be 0, is 0 86 ac ~ /ab{0}*c/ -> should be 1, is 1 87 abc ~ /ab{0}*c/ -> should be 0, is 0 88 ac ~ /a(b{0})*c/ -> should be 1, is 1 89 abc ~ /a(b{0})*c/ -> should be 0, is 0 90 ac ~ /ab{0,}c/ -> should be 1, is 1 [all …]
|
| /freebsd/crypto/openssl/Configurations/ |
| H A D | INTERNALS.Configure | 9 This is a collection of notes that are hopefully of interest to those 10 who decide to dive into Configure and what it does. This is a living 11 document and anyone is encouraged to add to it and submit changes. 21 Processing conditions in build.info files is done with the help of a 33 Ground rule is that non-condition lines are skipped over if the 34 stack top is > 0. Condition lines (IF, ELSIF, ELSE and ENDIF 39 the skip stack should look like after each line is processed: 44 | ... whatever ... | | this line is processed | 46 | ... whatever ... | | this line is processed | 48 | ... whatever ... | | this line is skipped over | [all …]
|
| /freebsd/contrib/bmake/unit-tests/ |
| H A D | directive-elif.mk | 19 . info This branch is not taken. 25 . info XXX: This misspelling is not detected. 26 . info This branch is not taken. 34 . info This branch is not taken. 39 . info XXX: This misspelling is not detected. 54 . info This branch is taken. 66 . info This branch is taken. 73 . info This branch is taken. 75 . info This branch is not taken. 77 . info XXX: This misspelling is not detected. [all …]
|
| H A D | directive-include-guard.exp | 2 Skipping 'variable-ifndef.tmp' because 'VARIABLE_IFNDEF' is defined 4 Skipping 'variable-ifndef-reuse.tmp' because 'VARIABLE_IFNDEF' is defined 10 Skipping 'comments.tmp' because 'COMMENTS' is defined 12 Skipping 'variable-if.tmp' because 'VARIABLE_IF' is defined 14 Skipping 'variable-if-reuse.tmp' because 'VARIABLE_IF' is defined 42 Skipping 'variable-assign-indirect.tmp' because 'VARIABLE_ASSIGN_INDIRECT' is defined 44 Skipping 'variable-assign-late.tmp' because 'VARIABLE_ASSIGN_LATE' is defined 47 Skipping 'variable-assign-nested.tmp' because 'VARIABLE_ASSIGN_NESTED' is defined 49 Skipping 'variable-already-defined.tmp' because 'VARIABLE_ALREADY_DEFINED' is defined 55 Skipping 'variable-clash.tmp' because 'VARIABLE_IF' is defined [all …]
|
| /freebsd/sys/contrib/openzfs/module/zfs/ |
| H A D | vdev_indirect.c | 297 indirect_split_t *is; in vdev_indirect_map_free() local 298 while ((is = list_remove_head(&iv->iv_splits)) != NULL) { in vdev_indirect_map_free() 299 for (int c = 0; c < is->is_children; c++) { in vdev_indirect_map_free() 300 indirect_child_t *ic = &is->is_child[c]; in vdev_indirect_map_free() 306 while ((ic = list_remove_head(&is->is_unique_child)) != NULL) in vdev_indirect_map_free() 309 list_destroy(&is->is_unique_child); in vdev_indirect_map_free() 311 kmem_free(is, in vdev_indirect_map_free() 312 offsetof(indirect_split_t, is_child[is->is_children])); in vdev_indirect_map_free() 1212 indirect_split_t *is = in vdev_indirect_gather_splits() local 1215 is->is_children = n; in vdev_indirect_gather_splits() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseTentative.cpp | 95 if (NextToken().is(tok::identifier)) in isCXXDeclarationStatement() 244 if (Tok.is(tok::annot_cxxscope)) in TryConsumeDeclarationSpecifier() 246 if (Tok.is(tok::identifier)) in TryConsumeDeclarationSpecifier() 248 else if (Tok.is(tok::annot_template_id)) in TryConsumeDeclarationSpecifier() 260 if (getLangOpts().ObjC && Tok.is(tok::less)) in TryConsumeDeclarationSpecifier() 277 bool DeclSpecifierIsAuto = Tok.is(tok::kw_auto); in TryParseSimpleDeclaration() 348 if (Tok.is(tok::l_paren)) { in TryParseInitDeclaratorList() 353 } else if (Tok.is(tok::l_brace)) { in TryParseInitDeclaratorList() 357 } else if (Tok.is(tok::equal) || isTokIdentifier_in()) { in TryParseInitDeclaratorList() 417 if (P.Tok.is(tok::question)) in markNotExpression() [all …]
|
| /freebsd/contrib/libcbor/ |
| H A D | Doxyfile | 6 # All text after a double hash (##) is considered a comment and is placed in 7 # front of the TAG it is preceding. 9 # All text after a single hash (#) is considered a comment and will be ignored. 10 # The format is: 31 # file that follow. The default is UTF-8 which is also the encoding used for all 35 # The default value is: UTF-8. 39 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by 41 # project for which the documentation is generated. This name is used in the 43 # The default value is: My Project. 49 # control system is used. [all …]
|
| /freebsd/contrib/ldns/ |
| H A D | libdns.doxygen.in | 6 # All text after a double hash (##) is considered a comment and is placed in 7 # front of the TAG it is preceding. 9 # All text after a single hash (#) is considered a comment and will be ignored. 10 # The format is: 21 # file that follow. The default is UTF-8 which is also the encoding used for all 25 # The default value is: UTF-8. 29 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by 31 # project for which the documentation is generated. This name is used in the 33 # The default value is: My Project. 39 # control system is used. [all …]
|
| /freebsd/contrib/bearssl/ |
| H A D | Doxyfile | 6 # All text after a double hash (##) is considered a comment and is placed in 7 # front of the TAG it is preceding. 9 # All text after a single hash (#) is considered a comment and will be ignored. 10 # The format is: 21 # that follow. The default is UTF-8 which is also the encoding used for all text 25 # The default value is: UTF-8. 29 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by 31 # project for which the documentation is generated. This name is used in the 33 # The default value is: My Project. 39 # control system is used. [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/devfreq/ |
| H A D | rk3399_dmc.txt | 22 a DCF interrupt is triggered. 36 placed into power-down mode if bus is idle 41 placed into self-refresh mode if bus is idle 43 clocks freq is half of DRAM clock), default 44 value is "0". 49 clock arg gating started if bus is idle for 54 self-refresh power down mode if bus is idle 56 This parameter is for LPDDR4 only. 61 be gated if bus is idle for standby_idle * DFI 65 When DDR frequency is less than DRAM_DLL_DISB_FREQ, [all …]
|
| /freebsd/contrib/netbsd-tests/lib/libc/regex/ |
| H A D | README | 3 for an empty field. First field is an RE. Second field is flags. If 4 C flag given, regcomp() is expected to fail, and the third field is the 7 Otherwise it is expected to succeed, and the third field is the string to 8 try matching it against. If there is no fourth field, the match is 9 expected to fail. If there is a fourth field, it is the substring that 10 the RE is expected to match. If there is a fifth field, it is a comma- 13 starting with @ indicates that the (sub)expression is expected to match 16 is newline, `S' is space, `T' is tab, `Z' is NUL. 20 b RE is a BRE, not an ERE 22 C regcomp() error expected, third field is error name
|
| /freebsd/contrib/unbound/doc/ |
| H A D | unbound.doxygen | 6 # All text after a double hash (##) is considered a comment and is placed in 7 # front of the TAG it is preceding. 9 # All text after a single hash (#) is considered a comment and will be ignored. 10 # The format is: 31 # file that follow. The default is UTF-8 which is also the encoding used for all 35 # The default value is: UTF-8. 39 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by 41 # project for which the documentation is generated. This name is used in the 43 # The default value is: My Project. 49 # control system is used. [all …]
|
| /freebsd/sys/contrib/device-tree/src/arm64/rockchip/ |
| H A D | rk3588-jaguar-pre-ict-tester.dtso | 15 * This adapter is used during manufacturing for validating proper soldering of 80 * If VCC_IN_2 is properly routed, GPIO3_A3 should be 83 * issue. Therefore, let's enforce a pull-up (which is 88 * GPIO3_A4 is directly routed to VCC_1V8_S0_2 power 89 * rail. It should be HIGH if all is properly soldered. 90 * To guarantee that, a pull-down is enforced (which is 91 * the SoC default for this pin) so that LOW is read if 102 * If VCC_IN_1 is properly routed, GPIO3_B2 should be 103 * LOW. This is an issue if GPIO3_B2 isn't properly 105 * default bias is pull-down therefore being LOW. So [all …]
|
| /freebsd/contrib/bc/manuals/ |
| H A D | algorithms.md | 7 This `bc` uses brute force addition, which is linear (`O(n)`) in the number of 12 This `bc` uses brute force subtraction, which is linear (`O(n)`) in the number 19 Karatsuba is used for "large" numbers. ("Large" numbers are defined as any 22 this `bc`, is superlinear but subpolynomial (bounded by `O(n^log_2(3))`). 24 Brute force multiplication is used below `BC_NUM_KARATSUBA_LEN` digits. It is 27 is a "break even" point in the number of digits where brute force multiplication 28 is faster than Karatsuba. There is a script (`$ROOT/scripts/karatsuba.py`) that 35 This `bc` uses Algorithm D ([long division][2]). Long division is polynomial 49 this `bc` is small code). 58 a complexity of `O((n*log(n))^log_2(3))` which is favorable to the [all …]
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | ASN1_STRING_print_ex.pod | 20 These functions output an B<ASN1_STRING> structure. B<ASN1_STRING> is used to 23 ASN1_STRING_print_ex() outputs I<str> to I<out>, the format is determined by 24 the options I<flags>. ASN1_STRING_print_ex_fp() is identical except it outputs 35 ASN1_STRING_print() is a deprecated function which should be avoided; use 38 Although there are a large number of options frequently B<ASN1_STRFLGS_RFC2253> is 41 The complete set of supported options for I<flags> is listed below. 43 Various characters can be escaped. If B<ASN1_STRFLGS_ESC_2253> is set the characters 44 determined by RFC2253 are escaped. If B<ASN1_STRFLGS_ESC_CTRL> is set control 45 characters are escaped. If B<ASN1_STRFLGS_ESC_MSB> is set characters with the 51 If the character being escaped is a 16 bit character then the form "\UXXXX" is used [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CommentLexer.h | 92 bool is(tok::TokenKind K) const LLVM_READONLY { return Kind == K; } in is() function 99 assert(is(tok::text)); in getText() 104 assert(is(tok::text)); in setText() 110 assert(is(tok::unknown_command)); in getUnknownCommandName() 115 assert(is(tok::unknown_command)); in setUnknownCommandName() 121 assert(is(tok::backslash_command) || is(tok::at_command)); in getCommandID() 126 assert(is(tok::backslash_command) || is(tok::at_command)); in setCommandID() 131 assert(is(tok::verbatim_block_begin) || is(tok::verbatim_block_end)); in getVerbatimBlockID() 136 assert(is(tok::verbatim_block_begin) || is(tok::verbatim_block_end)); in setVerbatimBlockID() 141 assert(is(tok::verbatim_block_line)); in getVerbatimBlockText() [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/input/ |
| H A D | pxa27x-keypad.txt | 8 recognized when it is pressed. It is a u32 value, and bit[31:16] 9 is debounce interval for direct key and bit[15:0] is debounce 10 interval for matrix key. The value is in binary number of 2ms 18 are used. If bit[X] of the mask is set, the direct key X 19 is used. 22 When this property is set, it means that when the pin level 23 is low, the key is pressed(active). 24 - marvell,direct-key-map : It is a u16 array. Each item indicates 28 - marvell,rotary0 : It is a u32 value. Bit[31:16] is the 29 linux key-code for rotary up. Bit[15:0] is the linux key-code [all …]
|