/freebsd-src/contrib/bmake/unit-tests/ |
H A D | suff-incomplete.exp | 15 deleting incomplete transformation from `.a' to `.b' 32 Wildcard expanding "suff-incomplete.c"...suffix is ".c"... 33 SuffFindDeps "suff-incomplete.c" 34 trying suff-incomplete.a...not there 35 Wildcard expanding "suff-incomplete.c"...suffix is ".c"... 36 : Making suff-incomplete.c from suff-incomplete.c all by default.
|
H A D | suff-incomplete.mk | 1 # $NetBSD: suff-incomplete.mk,v 1.2 2020/11/22 11:05:49 rillig Exp $ 3 # Tests incomplete transformation rules, which are ignored. 5 all: suff-incomplete.c 13 # This rule has no commands and no dependencies, therefore it is incomplete 30 # XXX: The output of this test says "Making suff-incomplete.c from 31 # suff-incomplete.c". It doesn't make sense to make something out of itself.
|
H A D | varmod-match.mk | 286 # [ Incomplete empty character list, never matches. 293 # [^ Incomplete negated empty character list, matches any single 301 # [-x1-3 Incomplete character list, matches those elements that can be 309 # *[-x1-3 Incomplete character list after a wildcard, matches those 318 # Incomplete negated character list, matches any character 326 # [\ Incomplete character list containing a single '\'. 340 # [x- Incomplete character list containing an incomplete character 348 # [^x- Incomplete negated character list containing an incomplete [all...] |
/freebsd-src/share/man/man4/ |
H A D | ng_vlan_rotate.4 | 51 .Va incomplete . 71 .Va incomplete 73 .Va incomplete 98 .Va incomplete 119 .Bl -tag -width incomplete 134 .It Va incomplete 227 mkpeer separate: eiface incomplete ether 228 name separate:incomplete untagged
|
/freebsd-src/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
H A D | XCore.cpp | 34 /// Incomplete: An incomplete TypeString; 35 /// IncompleteUsed: An incomplete TypeString that has been used in a 49 /// An Incomplete entry is always a RecordType and only encodes its 50 /// identifier e.g. "s(S){}". Incomplete 'StubEnc' entries are ephemeral and 63 /// If the member is a RecordType, an Incomplete encoding is placed into the 66 /// Once a member RecordType has been expanded, its temporary incomplete 70 /// If an incomplete entry is used to expand a sub-member, the incomplete 80 enum Status {NonRecursive, Recursive, Incomplete, IncompleteUse enumerator [all...] |
/freebsd-src/sys/netgraph/ |
H A D | ng_vlan_rotate.c | 84 {"incomplete", &ng_parse_uint64_type}, 149 counter_u64_t drops, excessive, incomplete; member 178 vrp->stats.incomplete = counter_u64_alloc(M_WAITOK); in ng_vlanrotate_constructor() 273 p->incomplete = counter_u64_fetch(vrp->stats.incomplete); in ng_vlanrotate_rcvmsg() 285 counter_u64_zero(vrp->stats.incomplete); in ng_vlanrotate_rcvmsg() 432 counter_u64_add(vrp->stats.incomplete, 1); in ng_vlanrotate_rcvdata() 475 counter_u64_free(vrp->stats.incomplete); in ng_vlanrotate_shutdown()
|
H A D | ng_vlan_rotate.h | 40 #define NG_VLANROTATE_HOOK_INCOMPLETE "incomplete" 52 uint64_t drops, excessive, incomplete; member
|
/freebsd-src/tools/tools/shlib-compat/ |
H A D | shlib-compat.py | 441 complete.incomplete = self 531 incomplete = raw.unit.incomplete.get(raw.id) 532 if incomplete == None: 533 incomplete = StructIncompleteDef(raw.id, raw.optname) 534 raw.unit.incomplete.put(raw.id, incomplete) 536 return incomplete 544 incomplete.update(obj, cache=raw.unit.cache) 548 incomplete = raw.unit.incomplete.get(raw.id) 549 if incomplete == None: 550 incomplete = UnionIncompleteDef(raw.id, raw.optname) [all …]
|
/freebsd-src/contrib/ldns/ |
H A D | error.c | 62 { LDNS_STATUS_WIRE_INCOMPLETE_HEADER, "header section incomplete" }, 63 { LDNS_STATUS_WIRE_INCOMPLETE_QUESTION, "question section incomplete" }, 64 { LDNS_STATUS_WIRE_INCOMPLETE_ANSWER, "answer section incomplete" }, 65 { LDNS_STATUS_WIRE_INCOMPLETE_AUTHORITY, "authority section incomplete" }, 66 { LDNS_STATUS_WIRE_INCOMPLETE_ADDITIONAL, "additional section incomplete" },
|
/freebsd-src/lib/libc/tests/locale/ |
H A D | mblen_test.c | 66 /* Incomplete character sequence. */ in ATF_TC_BODY() 90 /* Incomplete character sequence. */ in ATF_TC_BODY() 95 /* Incomplete character sequence (truncated double-byte). */ in ATF_TC_BODY()
|
H A D | mbtowc_test.c | 67 /* Incomplete character sequence. */ in ATF_TC_BODY() 91 /* Incomplete character sequence (zero length). */ in ATF_TC_BODY() 98 /* Incomplete character sequence (truncated double-byte). */ in ATF_TC_BODY()
|
H A D | mbrlen_test.c | 72 /* Incomplete character sequence. */ in ATF_TC_BODY() 100 /* Incomplete character sequence (zero length). */ in ATF_TC_BODY() 104 /* Incomplete character sequence (truncated double-byte). */ in ATF_TC_BODY()
|
H A D | mbrtowc_test.c | 80 /* Incomplete character sequence. */ in ATF_TC_BODY() 123 /* Incomplete character sequence (zero length). */ in ATF_TC_BODY() 129 /* Incomplete character sequence (truncated double-byte). */ in ATF_TC_BODY()
|
H A D | mbrtoc16_test.c | 83 /* Incomplete character sequence. */ in ATF_TC_BODY() 154 /* Incomplete character sequence (zero length). */ in ATF_TC_BODY() 160 /* Incomplete character sequence (truncated double-byte). */ in ATF_TC_BODY()
|
/freebsd-src/sys/contrib/zlib/ |
H A D | inftrees.c | 125 /* check for an over-subscribed or incomplete set of lengths */ in inflate_table() 133 return -1; /* incomplete set */ in inflate_table() 171 routine permits incomplete codes, so another loop after this one fills in inflate_table() 285 /* fill in remaining table entry if code is incomplete (guaranteed to have in inflate_table() 286 at most one remaining entry, since if the code is incomplete, the in inflate_table()
|
H A D | uncompr.c | 25 an incomplete zlib stream. 33 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */ in uncompress2()
|
/freebsd-src/contrib/llvm-project/libcxx/include/__ranges/ |
H A D | access.h | 59 requires(sizeof(_Tp) >= 0) // Disallow incomplete element types. in operator() 66 requires(sizeof(_Tp) >= 0) // Disallow incomplete element types. in operator() 123 requires(sizeof(_Tp) >= 0) // Disallow incomplete element types.
|
/freebsd-src/usr.bin/localedef/ |
H A D | wide.c | 242 werr("incomplete utf8 sequence (%s)", show_mb(mb)); in towide_utf8() 324 werr("incomplete character sequence (%s)", show_mb(mb)); in towide_dbcs() 414 werr("incomplete character sequence (%s)", show_mb(mb)); in towide_gb18030() 424 werr("incomplete 4-byte character sequence (%s)", in towide_gb18030() 458 werr("incomplete character sequence (%s)", show_mb(mb)); in towide_mskanji() 512 werr("incomplete character sequence (%s)", show_mb(mb)); in towide_euc_impl()
|
/freebsd-src/contrib/diff/doc/ |
H A D | diff.7 | 1034 incomplete. 1049 The corresponding lines differ, and only the first line is incomplete. 1052 The corresponding lines differ, and only the second line is incomplete. 1055 Normally, an output line is incomplete if and only if the lines that it contains 1056 are incomplete;See Section 1057 .Dq Incomplete Lines . 1059 incomplete while the other is not. In this case, the output line is complete, 1062 if the first line is incomplete, 1330 format cannot represent an incomplete line, so if the second file ends in 1331 a changed incomplete line, [all …]
|
H A D | diff.texi | 77 * Incomplete Lines:: Lines that lack trailing newlines. 968 or both incomplete. 983 The corresponding lines differ, and only the first line is incomplete. 986 The corresponding lines differ, and only the second line is incomplete. 989 Normally, an output line is incomplete if and only if the lines that it 990 contains are incomplete; @xref{Incomplete Lines}. However, when an 991 output line represents two differing lines, one might be incomplete 993 but its the gutter is marked @samp{\} if the first line is incomplete, 1223 incomplete line, so if the second file ends in a changed incomplete 1259 @command{ed} format, forward @command{ed} format cannot represent incomplete [all …]
|
/freebsd-src/lib/libsys/ |
H A D | listen.2 | 87 argument also determined the length of the incomplete 90 These incomplete connections
|
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | CompletionRequest.h | 26 /// a completion, but that the token is still incomplete. Examples 28 /// the file path token is still incomplete after the completion. Clients 96 /// Contains all information necessary to complete an incomplete command
|
/freebsd-src/usr.bin/printf/tests/ |
H A D | regress.missingpos1.out | 1 printf: incomplete use of n$
|
/freebsd-src/contrib/opencsd/decoder/include/opencsd/ptm/ |
H A D | trc_pkt_types_ptm.h | 50 PTM_PKT_INCOMPLETE_EOT, //!< flushing incomplete packet at end of trace. 117 …_ptm_pkt_type err_type; /**< Basic packet type if primary type indicates error or incomplete. */
|
/freebsd-src/share/man/man7/ |
H A D | sizeof.7 | 42 operator cannot be applied to incomplete types and expressions 43 with incomplete types (e.g.
|