Home
last modified time | relevance | path

Searched refs:sink (Results 1 – 25 of 310) sorted by relevance

12345678910>>...13

/netbsd/tests/usr.bin/xlint/lint1/
H A Dparse_type_name.c11 void sink(unsigned long);
17 sink(sizeof(int)); in cover_type_name()
26 sink(sizeof(const)); in cover_abstract_declaration()
29 sink(sizeof(double)); in cover_abstract_declaration()
33 sink(sizeof(const[3])); in cover_abstract_declaration()
44 sink(sizeof(int ***)); in cover_abstract_declarator()
47 sink(sizeof(int[3])); in cover_abstract_declarator()
50 sink(sizeof(int **[3])); in cover_abstract_declarator()
61 sink(sizeof(int (*))); in cover_direct_abstract_declarator()
64 sink(sizeof(int[])); in cover_direct_abstract_declarator()
[all …]
H A Dexpr_binary.c31 sink(1 + 1); in cover_balance()
46 sink(cldbl + 0); in cover_balance()
48 sink(0 + cldbl); in cover_balance()
55 sink(cdbl + 0); in cover_balance()
57 sink(0 + cdbl); in cover_balance()
64 sink(cflt + 0); in cover_balance()
66 sink(0 + cflt); in cover_balance()
80 sink(0.0L + 0); in cover_balance()
82 sink(0 + 0.0L); in cover_balance()
89 sink(0.0 + 0); in cover_balance()
[all …]
H A Dop_colon.c15 sink(struct canary);
22 sink(cond ? p : p); in test_merge_qualifiers()
24 sink(cond ? p : c); in test_merge_qualifiers()
26 sink(cond ? p : v); in test_merge_qualifiers()
28 sink(cond ? p : cv); in test_merge_qualifiers()
31 sink(cond ? c : p); in test_merge_qualifiers()
33 sink(cond ? c : c); in test_merge_qualifiers()
35 sink(cond ? c : v); in test_merge_qualifiers()
40 sink(cond ? v : p); in test_merge_qualifiers()
42 sink(cond ? v : c); in test_merge_qualifiers()
[all …]
H A Dlex_char.c18 sink(''); in test()
20 sink('a'); in test()
22 sink('\0'); in test()
27 sink('ä'); in test()
31 sink('\e'); in test()
40 sink(''); in test()
43 sink('\a'); in test()
46 sink('\b'); in test()
49 sink('\t'); in test()
52 sink('\n'); in test()
[all …]
H A Dexpr_binary_trad.c13 struct incompatible sink; variable
25 sink = (char *)0 + 0; in cover_balance()
28 sink = 0 + (char *)0; in cover_balance()
31 sink = 1 + 1; in cover_balance()
34 sink = 0.0 + 0; in cover_balance()
36 sink = 0 + 0.0; in cover_balance()
38 sink = 0.0 + (float)0.0; in cover_balance()
40 sink = (float)0.0 + 0.0; in cover_balance()
47 sink = (float)0.0 + 0; in cover_balance()
49 sink = 0 + (float)0.0; in cover_balance()
[all …]
H A Dlex_wide_char.c12 void sink(int);
18 sink(L''); in test()
20 sink(L'a'); in test()
22 sink(L'\0'); in test()
26 sink(L'ä'); in test()
30 sink(L'\e'); in test()
33 sink(L'\x12'); in test()
36 sink(L'\177'); in test()
39 sink(L'\n'); in test()
42 sink(L''); in test()
H A Dlex_string.c12 void sink(const char *);
17 sink(""); in test()
19 sink("hello, world\n"); in test()
21 sink("\0"); in test()
23 sink("\0\0\0\0"); in test()
26 sink("\x"); /* unfinished */ in test()
29 sink("\y"); /* unknown escape sequence */ in test()
31 sink("first" "second"); in test()
34 sink("plain" L"wide"); in test()
H A Dlex_wide_string.c12 void sink(const int *);
17 sink(L""); in test()
19 sink(L"hello, world\n"); in test()
21 sink(L"\0"); in test()
23 sink(L"\0\0\0\0"); in test()
26 sink(L"\x"); in test()
29 sink(L"\y"); in test()
31 sink(L"first" L"second"); in test()
34 sink(L"wide" "plain"); in test()
H A Dmsg_101.c12 void sink(int);
18 sink(ptr->x); in test()
19 sink(pt.x); in test()
23 sink(ptr->z); in test()
25 sink(pt.z); in test()
29 sink(ptr.x); in test()
31 sink(pt->x); in test()
35 sink(ptr.z); in test()
37 sink(pt->z); in test()
H A Dmsg_130.c26 void sink(_Bool);
32 sink(cond ? GREEN : MORNING); in example()
34 sink(c != s); in example()
36 sink(c == s); in example()
37 sink((c & MEDIUM) != 0); /* might be useful to warn about */ in example()
38 sink((c | MEDIUM) != 0); /* might be useful to warn about */ in example()
54 sink(1 == 1); in switch_example()
H A Dmsg_155.c53 extern void sink(struct incompatible);
71 sink(day); in type_name_of_enum()
74 sink(day + 0); in type_name_of_enum()
77 sink(0 + day); in type_name_of_enum()
80 sink(0); in type_name_of_enum()
H A Dmsg_341.c19 void sink(int);
69 sink(((int)((_ctype_tab_ + 1)[(c)] & 0x0040))); in macro_invocation_NetBSD()
72 sink(((int)((_ctype_tab_ + 1)[((unsigned char)c)] & 0x0040))); in macro_invocation_NetBSD()
75 sink(((int)((_ctype_tab_ + 1)[((int)c)] & 0x0040))); in macro_invocation_NetBSD()
78 sink(((int)((_ctype_tab_ + 1)[((unsigned int)c)] & 0x0040))); in macro_invocation_NetBSD()
H A Dmsg_342.c35 void sink(int);
122 sink(((int)((_ctype_tab_ + 1)[(c)] & 0x0040))); in macro_invocation_NetBSD()
125 sink(((int)((_ctype_tab_ + 1)[((unsigned char)c)] & 0x0040))); in macro_invocation_NetBSD()
128 sink(((int)((_ctype_tab_ + 1)[((int)c)] & 0x0040))); in macro_invocation_NetBSD()
131 sink(((int)((_ctype_tab_ + 1)[((unsigned int)c)] & 0x0040))); in macro_invocation_NetBSD()
H A Dmsg_135.c8 void sink(const void *);
45 sink(complete); in pointer_to_structs()
60 sink(usp); in unsigned_char_to_unsigned_type()
75 sink(usp); in plain_char_to_unsigned_type()
H A Dd_c99_complex_split.c25 void sink(double _Complex);
42 sink(c); in set_complex_complete()
59 sink(c); /* XXX: may be used before set */ in set_complex_only_real()
76 sink(c); /* XXX: may be used before set */ in set_complex_only_imag()
H A Dmsg_247.c180 void sink(const void *);
194 sink(usp); in unsigned_char_to_unsigned_type()
209 sink(usp); in plain_char_to_unsigned_type()
222 sink((struct counter *)(char *)ptr); in char_to_struct()
224 sink((struct counter *)(unsigned char *)ptr); in char_to_struct()
227 sink((struct counter *)(signed char *)ptr); in char_to_struct()
H A Ddecl.c62 void sink(double *);
70 sink(pc); in declarators()
72 sink(c); in declarators()
74 sink(ppc); in declarators()
/netbsd/external/ibm-public/postfix/dist/src/smtpstone/
H A DMakefile.in2 SRCS = smtp-source.c smtp-sink.c qmqp-source.c qmqp-sink.c
3 OBJS = smtp-source.o smtp-sink.o qmqp-source.o qmqp-sink.o
10 PROG = smtp-source smtp-sink qmqp-source qmqp-sink
23 smtp-sink: smtp-sink.o $(LIBS)
29 qmqp-sink: qmqp-sink.o $(LIBS)
42 ../../bin/qmqp-sink
47 ../../bin/smtp-sink: smtp-sink
53 ../../bin/qmqp-sink: qmqp-sink
89 qmqp-sink.o: ../../include/msg.h
98 qmqp-sink.o: qmqp-sink.c
[all …]
/netbsd/sys/external/bsd/drm2/dist/drm/amd/display/dc/core/
H A Damdgpu_dc_sink.c43 if (sink->dc_container_id) { in dc_sink_destruct()
58 sink->link = link; in dc_sink_construct()
59 sink->ctx = link->ctx; in dc_sink_construct()
77 kref_get(&sink->refcount); in dc_sink_retain()
83 dc_sink_destruct(sink); in dc_sink_free()
84 kfree(sink); in dc_sink_free()
94 struct dc_sink *sink = kzalloc(sizeof(*sink), GFP_KERNEL); in dc_sink_create() local
96 if (NULL == sink) in dc_sink_create()
102 kref_init(&sink->refcount); in dc_sink_create()
104 return sink; in dc_sink_create()
[all …]
/netbsd/external/mpl/bind/dist/lib/dns/rdata/generic/
H A Dsink_40.c160 REQUIRE(sink != NULL); in fromstruct_sink()
177 return (mem_tobuffer(target, sink->data, sink->datalen)); in fromstruct_sink()
186 REQUIRE(sink != NULL); in tostruct_sink()
218 sink->data = mem_maybedup(mctx, sr.base, sink->datalen); in tostruct_sink()
219 if (sink->data == NULL) { in tostruct_sink()
223 sink->mctx = mctx; in tostruct_sink()
231 REQUIRE(sink != NULL); in freestruct_sink()
234 if (sink->mctx == NULL) { in freestruct_sink()
238 if (sink->data != NULL) { in freestruct_sink()
239 isc_mem_free(sink->mctx, sink->data); in freestruct_sink()
[all …]
/netbsd/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DBIO_s_null.pod5 BIO_s_null - null data sink
15 BIO_s_null() returns the null sink BIO method. Data written to
16 the null sink is discarded, reads return EOF.
20 A null sink BIO behaves in a similar manner to the Unix /dev/null
26 A null sink is useful if, for example, an application wishes to digest some
28 Since a BIO chain must normally include a source/sink BIO this can be achieved
29 by adding a null sink BIO to the end of the chain
33 BIO_s_null() returns the null sink BIO method.
/netbsd/crypto/external/bsd/openssl/dist/doc/man3/
H A DBIO_s_null.pod5 BIO_s_null - null data sink
15 BIO_s_null() returns the null sink BIO method. Data written to
16 the null sink is discarded, reads return EOF.
20 A null sink BIO behaves in a similar manner to the Unix /dev/null
26 A null sink is useful if, for example, an application wishes to digest some
28 Since a BIO chain must normally include a source/sink BIO this can be achieved
29 by adding a null sink BIO to the end of the chain
33 BIO_s_null() returns the null sink BIO method.
/netbsd/external/gpl3/gcc.old/dist/libphobos/src/std/regex/
H A Dpackage.d863 sink.put(input);
866 sink.put(captures.pre);
873 sink.put(captures.post);
1236 return replaceFirstWith!((m, sink) => replaceFmt(format, m, sink))(input, re);
1263 return replaceFirstWith!((m, sink) => sink.put(fun(m)))(input, re);
1290 replaceCapturesInto!((m, sink) => replaceFmt(format, m, sink))
1354 return replaceAllWith!((m, sink) => replaceFmt(format, m, sink))(input, re);
1388 return replaceAllWith!((m, sink) => sink.put(fun(m)))(input, re);
1418 replaceMatchesInto!((m, sink) => replaceFmt(format, m, sink))
1440 sink.clear();
[all …]
/netbsd/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/
H A Ddmain2.d520 private void formatThrowable(Throwable t, scope void delegate(in char[] s) nothrow sink) in formatThrowable() argument
524 t.toString(sink); sink("\n"); in formatThrowable()
529 sink("=== Bypassed ===\n"); in formatThrowable()
532 t2.toString(sink); sink("\n"); in formatThrowable()
534 sink("=== ~Bypassed ===\n"); in formatThrowable()
549 void sink(in char[] s) scope nothrow in _d_print_throwable() function
588 formatThrowable(t, &buf.sink); in _d_print_throwable()
594 caption.sink(t.classinfo.name); in _d_print_throwable()
616 formatThrowable(t, &buf.sink); in _d_print_throwable()
637 void sink(in char[] buf) scope nothrow in _d_print_throwable()
[all …]
/netbsd/external/gpl3/gcc/dist/libphobos/libdruntime/rt/
H A Ddmain2.d541 private void formatThrowable(Throwable t, scope void delegate(in char[] s) nothrow sink) in formatThrowable() argument
545 u.toString(sink); sink("\n"); in formatThrowable()
550 sink("=== Bypassed ===\n"); in formatThrowable()
553 t2.toString(sink); sink("\n"); in formatThrowable()
555 sink("=== ~Bypassed ===\n"); in formatThrowable()
582 void sink(const scope char[] s) scope nothrow in _d_print_throwable() function
621 formatThrowable(t, &buf.sink); in _d_print_throwable()
627 caption.sink(typeid(t).name); in _d_print_throwable()
649 formatThrowable(t, &buf.sink); in _d_print_throwable()
670 void sink(in char[] buf) scope nothrow in _d_print_throwable()
[all …]

12345678910>>...13