Home
last modified time | relevance | path

Searched refs:is (Results 1 – 25 of 5419) sorted by relevance

12345678910>>...217

/freebsd/sys/dev/iscsi/
H A Discsi.c220 if (ISCSI_SNGT(is->is_cmdsn, is->is_maxcmdsn) && in iscsi_pdu_prepare()
231 is->is_cmdsn, is->is_expcmdsn, is->is_maxcmdsn, in iscsi_pdu_prepare()
526 ISCSI_SNGT(is->is_cmdsn, is->is_maxcmdsn))) in iscsi_maintenance_thread()
527 cv_wait(&is->is_maintenance_cv, &is->is_lock); in iscsi_maintenance_thread()
617 if (is->is_login_timeout > 0 && is->is_timeout > is->is_login_timeout) { in iscsi_callout()
635 if (is->is_timeout >= is->is_ping_timeout) { in iscsi_callout()
1679 is, is->is_id /* unit */, &is->is_lock, in iscsi_ioctl_daemon_handoff()
1826 if (is->is_terminating || is->is_reconnecting) in iscsi_ioctl_daemon_send()
1886 if (is->is_terminating || is->is_reconnecting) { in iscsi_ioctl_daemon_receive()
2001 is->is_conf.isc_iser, "iscsi", &is->is_lock); in iscsi_ioctl_session_add()
[all …]
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dip_state.c847 for (is = softs->ipf_state_list; is; is = is->is_next) in ipf_state_getent()
988 for (is = softs->ipf_state_list; is; is = is->is_next) in ipf_state_putent()
1402 bzero((char *)is, sizeof(*is)); in ipf_state_add()
1558 is->is_maxsend = is->is_send; in ipf_state_add()
1617 is != NULL; is = is->is_hnext) { in ipf_state_add()
2552 is->is_maxsend = is->is_send + 1; in ipf_matchsrcdst()
2561 is->is_maxdend = is->is_dend + 1; in ipf_matchsrcdst()
3487 for (is = softs->ipf_state_list; is; is = is->is_next) { in ipf_state_sync()
3526 *is->is_phnext = is->is_hnext; in ipf_state_del()
3609 *is->is_pnext = is->is_next; in ipf_state_del()
[all …]
H A Dip_scan.c228 fr = is->is_rule; in ipf_scan_attachis()
232 is->is_isc = i; in ipf_scan_attachis()
263 ipf_scan_detachis(is) in ipf_scan_detachis() argument
264 struct ipstate *is; in ipf_scan_detachis()
271 is->is_isc = NULL;
319 flags = is->is_flags; in ipf_scan_matchisc()
392 isc = is->is_isc; in ipf_scan_match()
517 if (!is->is_s0[rv]) in ipf_scan_packet()
524 s0 = is->is_s0[rv]; in ipf_scan_packet()
556 bzero(is->is_sbuf[0], sizeof(is->is_sbuf[0])); in ipf_scan_packet()
[all …]
/freebsd/usr.bin/m4/tests/
H A Dregress.comments.out2 # this is a comment
3 >> this is a COMMENT
4 'XXX' this is a COMMENT
8 # this is a COMMENT
9 >> this is a comment
14 # this is a COMMENT
15 >> this is a COMMENT
20 # this is a COMMENT
21 >> this is a COMMENT
26 # this is a COMMENT
[all …]
H A Dcomments.m46 # this is a comment
7 >> this is a comment
8 p this is a comment
13 # this is a comment
14 >> this is a comment
15 p this is a comment
20 # this is a comment
21 >> this is a comment
22 p this is a comment
27 # this is a comment
[all …]
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.cpp3786 if (Left.is(tok::equal) && Right.is(tok::l_brace)) in splitPenalty()
4055 if (Left.is(tok::l_square) && Right.is(tok::amp)) in spaceRequiredBetween()
4153 if (Right.is(tok::star) && Left.is(tok::l_paren)) in spaceRequiredBetween()
4354 if (Left.is(tok::period) || Right.is(tok::period)) in spaceRequiredBetween()
4413 if (Left.is(tok::star) && Right.is(tok::comment)) in spaceRequiredBefore()
4474 if (Left.is(tok::slash) || Right.is(tok::slash)) in spaceRequiredBefore()
4540 if (Left.is(tok::comma) && Right.is(tok::comma)) in spaceRequiredBefore()
4723 if (Left.is(tok::arrow) || Right.is(tok::arrow)) in spaceRequiredBefore()
4957 return Tok.is(tok::l_brace) && Tok.is(BK_Block) && in isAllmanBrace()
4974 return Tok.is(tok::l_brace) && Tok.is(BK_Block) && in isAllmanLambdaBrace()
[all …]
H A DUnwrappedLineParser.cpp491 assert(Tok->is(tok::l_brace)); in calculateBraceTypes()
816 if (FormatTok->is(tok::r_brace) && Tok->is(TT_NamespaceLBrace)) in parseBlock()
820 FormatTok->is(tok::r_brace) && Tok->is(TT_FunctionLBrace); in parseBlock()
843 if (Tok->is(TT_ElseLBrace)) in parseBlock()
2394 if (FormatTok->is(BK_Block)) in tryToParseBracedList()
2523 Prev && Prev->is(tok::l_paren) && Next && Next->is(tok::r_paren); in parseParens()
3829 if (Tok->is(tok::eof)) in tryToParseSimpleAttribute()
3835 if (Tok->is(tok::semi)) in tryToParseSimpleAttribute()
3851 if (Tok->is(tok::r_brace)) in parseJavaEnumBody()
4248 if (FormatTok->is(tok::at)) in parseVerilogSensitivityList()
[all …]
/freebsd/contrib/one-true-awk/testdir/
H A DT.int-expr82 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
86 ac ~ /ab{0}*c/ -> should be 1, is 1
87 abc ~ /ab{0}*c/ -> should be 0, is 0
90 ac ~ /ab{0,}c/ -> should be 1, is 1
91 abc ~ /ab{0,}c/ -> should be 1, is 1
94 ac ~ /ab{0,}*c/ -> should be 1, is 1
98 ac ~ /ab{1}c/ -> should be 0, is 0
99 abc ~ /ab{1}c/ -> should be 1, is 1
[all …]
/freebsd/crypto/openssl/Configurations/
H A DINTERNALS.Configure9 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 Ddirective-elif.mk19 . info This branch is not taken.
26 . info This branch is not taken.
34 . info This branch is not taken.
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.
84 . info This branch is not taken.
104 . info This branch is not taken.
106 . info This branch is not taken.
[all …]
H A Dvardebug.exp16 Pattern for ':M' is "[2]"
18 Result of ${VAR:M[2]} is "2"
21 Pattern for ':N' is "[2]"
23 Result of ${VAR:N[2]} is "1 3"
29 Result of ${VAR:S,2,two,} is "1 two 3"
32 Result of ${VAR:Q} is "1\ 2\ 3"
35 Result of ${VAR:tu} is "1 2 3"
37 Result of ${VAR:tl} is "1 2 3"
39 Result of ${VAR:Q} is "1\ 2\ 3"
45 Pattern for ':M' is "*e"
[all …]
/freebsd/contrib/kyua/integration/
H A Dcmd_report_junit_test.sh99 description is empty
104 required_files is empty
107 required_user is empty
137 description is empty
142 required_files is empty
145 required_user is empty
213 description is empty
218 required_files is empty
221 required_user is empty
251 description is empty
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dvdev_indirect.c1265 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_read_all()
1431 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_repair()
1473 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_all_checksum_errors()
1502 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_splits_checksum_validate()
1529 is != NULL; is = list_next(&iv->iv_splits, is)) in vdev_indirect_splits_enumerate_all()
1540 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_splits_enumerate_all()
1571 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_splits_enumerate_randomly()
1602 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_splits_damage()
1637 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_splits_damage()
1659 is != NULL; is = list_next(&iv->iv_splits, is)) { in vdev_indirect_splits_damage()
[all …]
/freebsd/contrib/libcbor/
H A DDoxyfile6 # All text after a double hash (##) is considered a comment and is placed in
10 # The format is:
31 # file that follow. The default is UTF-8 which is also the encoding used for all
41 # project for which the documentation is generated. This name is used in the
49 # control system is used.
138 # text. Otherwise, the brief description is used as-is. If left blank, the
461 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
788 # tag is left empty.
909 # Note: If this tag is empty the current directory is searched.
1309 # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
[all …]
/freebsd/contrib/xz/doxygen/
H A DDoxyfile6 # All text after a double hash (##) is considered a comment and is placed in
10 # The format is:
31 # file that follow. The default is UTF-8 which is also the encoding used for all
41 # project for which the documentation is generated. This name is used in the
49 # control system is used.
138 # text. Otherwise, the brief description is used as-is. If left blank, the
460 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
787 # tag is left empty.
908 # Note: If this tag is empty the current directory is searched.
1308 # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseTentative.cpp511 if (Tok.is(tok::l_brace) || (AllowSemi && Tok.is(tok::semi))) in isEnumBase()
919 (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::star))) { in TryParsePtrOperatorSeq()
964 if (Tok.is(tok::l_square) && NextToken().is(tok::r_square)) { in TryParseOperatorId()
1097 if (Tok.is(tok::ellipsis)) in TryParseDeclarator()
1101 (Tok.is(tok::annot_cxxscope) && (NextToken().is(tok::identifier) || in TryParseDeclarator()
1125 (Tok.is(tok::ellipsis) && NextToken().is(tok::r_paren)) || in TryParseDeclarator()
1636 if (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier)) { in isCXXDeclarationSpecifier()
1665 if (((Tok.is(tok::amp) || Tok.is(tok::star)) && in isCXXDeclarationSpecifier()
1668 (Tok.is(tok::ampamp) && NextToken().is(tok::greater))) in isCXXDeclarationSpecifier()
2040 if (Tok.is(tok::r_paren)) in TryParseParameterDeclarationClause()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/devfreq/
H A Drk3399_dmc.txt22 a DCF interrupt is triggered.
44 value is "0".
82 value is 40.
86 is 120.
91 Default value is 40.
108 value is 34.
112 is 240.
117 Default value is 40.
134 value is 60.
138 Default value is 40.
[all …]
/freebsd/contrib/ldns/
H A Dlibdns.doxygen.in6 # All text after a double hash (##) is considered a comment and is placed in
10 # The format is:
21 # file that follow. The default is UTF-8 which is also the encoding used for all
31 # project for which the documentation is generated. This name is used in the
39 # control system is used.
124 # text. Otherwise, the brief description is used as-is. If left blank, the
446 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
764 # tag is left empty.
855 # Note: If this tag is empty the current directory is searched.
1253 # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
[all …]
/freebsd/contrib/netbsd-tests/lib/libc/regex/
H A DREADME3 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/bearssl/
H A DDoxyfile6 # All text after a double hash (##) is considered a comment and is placed in
10 # The format is:
21 # that follow. The default is UTF-8 which is also the encoding used for all text
31 # project for which the documentation is generated. This name is used in the
39 # control system is used.
116 # text. Otherwise, the brief description is used as-is. If left blank, the
400 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
685 # tag is left empty.
772 # Note: If this tag is empty the current directory is searched.
1149 # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DASN1_STRING_print_ex.pod35 ASN1_STRING_print() is a deprecated function which should be avoided; use
41 The complete set of supported options for I<flags> is listed below.
51 If the character being escaped is a 16 bit character then the form "\UXXXX" is used
54 will only be used if UTF8 conversion is not set (see below).
57 B<ASN1_STRFLGS_ESC_QUOTE> is set then the whole string is instead surrounded by
66 If B<ASN1_STRFLGS_IGNORE_TYPE> is set then the string type is not interpreted at
67 all: everything is assumed to be one byte per character. This is primarily for
70 If B<ASN1_STRFLGS_SHOW_TYPE> is set then the string type itself is printed out
77 If B<ASN1_STRFLGS_DUMP_ALL> is set then any type is dumped.
83 When a type is dumped normally just the content octets are printed, if
[all …]
H A DCMS_verify.pod29 The content is written to the BIO I<out> unless it is NULL.
52 If CRL checking is enabled in I<store> and B<CMS_NOCRL> is not set,
55 If I<store> is not NULL and any chain verify fails an error code is returned.
57 Finally the signed content is read (and written to I<out> unless it is NULL)
58 and the signature is checked.
69 If B<CMS_NOCRL> is set and CRL checking is enabled in I<store> then any
73 from the content. If the content is not of type B<text/plain> then an error is
79 If B<CMS_NO_ATTR_VERIFY> is set the signed attributes signature is not
82 If B<CMS_CADES> is set, each signer certificate is checked against the
86 If B<CMS_NO_CONTENT_VERIFY> is set then the content digest is not checked.
[all …]
/freebsd/contrib/bc/manuals/
H A Dalgorithms.md24 Brute force multiplication is used below `BC_NUM_KARATSUBA_LEN` digits. It is
28 is faster than Karatsuba. There is a script (`$ROOT/scripts/karatsuba.py`) that
114 is needed.
137 is needed.
157 is needed.
179 is needed.
186 is extremely fast.
199 First, check if the exponent is 0. If it is, return 1 at the appropriate
206 Next, check if the exponent is actually an integer, and if it is, use the
245 Then we check `z`, which, if it is not zero, is the original value of the
[all …]
/freebsd/sys/contrib/device-tree/Bindings/input/
H A Dpxa27x-keypad.txt8 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).
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
30 for rotary down. It is for rotary 0.
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCommentLexer.h99 assert(is(tok::text)); in getText()
104 assert(is(tok::text)); in setText()
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()
173 assert(is(tok::html_start_tag)); in getHTMLTagStartName()
184 assert(is(tok::html_ident)); in getHTMLIdent()
189 assert(is(tok::html_ident)); in setHTMLIdent()
206 assert(is(tok::html_end_tag)); in getHTMLTagEndName()
[all …]

12345678910>>...217