| /netbsd-src/tests/usr.bin/xlint/lint1/ |
| H A D | parse_type_name.c | 11 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() 36 sink(sizeof(const int[3])); in cover_abstract_declaration() 37 sink(sizeof(int 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() [all …]
|
| H A D | expr_binary.c | 14 void sink(struct incompatible); 25 sink((void *)0 + 0); in cover_balance() 28 sink(0 + (void *)0); in cover_balance() 31 sink(1 + 1); in cover_balance() 34 sink((const int)1 + (volatile int)1); in cover_balance() 37 sink((volatile int)1 + (const int)1); in cover_balance() 46 sink(cldbl + 0); in cover_balance() 48 sink(0 + cldbl); in cover_balance() 50 sink(cldbl + cdbl); in cover_balance() 52 sink(cdbl + cldbl); in cover_balance() [all …]
|
| H A D | op_colon.c | 15 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() 37 sink(cond ? c : cv); in test_merge_qualifiers() 40 sink(cond ? v : p); in test_merge_qualifiers() [all …]
|
| H A D | lex_char.c | 12 void sink(char); 18 sink(''); in test() 20 sink('a'); in test() 22 sink('\0'); in test() 27 sink('ä'); in test() 30 sink('\e'); in test() 33 sink('\y'); in test() 36 sink('\x12'); in test() 39 sink('\177'); in test() 42 sink(''); in test() [all …]
|
| H A D | expr_binary_trad.c | 13 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 D | lex_wide_char.c | 12 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() 29 sink(L'\e'); in test() 32 sink(L'\y'); in test() 35 sink(L'\x12'); in test() 38 sink(L'\177'); in test() 41 sink(L'\n'); in test() [all …]
|
| H A D | lex_string.c | 12 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 D | lex_wide_string.c | 12 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 D | msg_101.c | 12 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 D | msg_130.c | 26 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 D | msg_155.c | 53 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 D | msg_341.c | 19 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() 82 sink(((int)((_ctype_tab_ + 1)[(0xffffffffu)]))); 85 sink(((int)((_ctype_tab_ + 1)[sc])));
|
| H A D | msg_342.c | 35 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 D | msg_135.c | 8 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 D | d_c99_complex_split.c | 25 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 D | msg_247.c | 181 void sink(const void *); 195 sink(usp); in unsigned_char_to_unsigned_type() 210 sink(usp); in plain_char_to_unsigned_type() 223 sink((struct counter *)(char *)ptr); in char_to_struct() 225 sink((struct counter *)(unsigned char *)ptr); in char_to_struct() 228 sink((struct counter *)(signed char *)ptr); in char_to_struct()
|
| /netbsd-src/external/ibm-public/postfix/dist/src/smtpstone/ |
| H A D | Makefile.in | 2 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) 24 $(CC) $(CFLAGS) $(SHLIB_RPATH) -o $@ smtp-sink.o $(LIBS) $(SYSLIBS) 29 qmqp-sink: qmqp-sink.o $(LIBS) 30 $(CC) $(CFLAGS) $(SHLIB_RPATH) -o $@ qmqp-sink.o $(LIBS) $(SYSLIBS) 41 update: ../../bin/smtp-source ../../bin/smtp-sink ../../bin/qmqp-source \ 42 ../../bin/qmqp-sink 47 ../../bin/smtp-sink: smtp-sink [all …]
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/dc/core/ |
| H A D | amdgpu_dc_sink.c | 41 static void dc_sink_destruct(struct dc_sink *sink) in dc_sink_destruct() argument 43 if (sink->dc_container_id) { in dc_sink_destruct() 44 kfree(sink->dc_container_id); in dc_sink_destruct() 45 sink->dc_container_id = NULL; in dc_sink_destruct() 49 static bool dc_sink_construct(struct dc_sink *sink, const struct dc_sink_init_data *init_params) in dc_sink_construct() argument 57 sink->sink_signal = init_params->sink_signal; in dc_sink_construct() 58 sink->link = link; in dc_sink_construct() 59 sink->ctx = link->ctx; in dc_sink_construct() 60 sink->dongle_max_pix_clk = init_params->dongle_max_pix_clk; in dc_sink_construct() 61 sink->converter_disable_audio = init_params->converter_disable_audio; in dc_sink_construct() [all …]
|
| /netbsd-src/external/mpl/bind/dist/lib/dns/rdata/generic/ |
| H A D | sink_40.c | 156 dns_rdata_sink_t *sink = source; in fromstruct_sink() 159 REQUIRE(sink != NULL); in fromstruct_sink() 160 REQUIRE(sink->common.rdtype == type); in fromstruct_sink() 161 REQUIRE(sink->common.rdclass == rdclass); in fromstruct_sink() 167 RETERR(uint8_tobuffer(sink->meaning, target)); in fromstruct_sink() 170 RETERR(uint8_tobuffer(sink->coding, target)); in fromstruct_sink() 173 RETERR(uint8_tobuffer(sink->subcoding, target)); in fromstruct_sink() 176 return mem_tobuffer(target, sink->data, sink->datalen); in fromstruct_sink() 181 dns_rdata_sink_t *sink 157 dns_rdata_sink_t *sink = source; fromstruct_sink() local 182 dns_rdata_sink_t *sink = target; tostruct_sink() local 229 dns_rdata_sink_t *sink = (dns_rdata_sink_t *)source; freestruct_sink() local [all...] |
| /netbsd-src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ |
| H A D | sink_40.c | 157 dns_rdata_sink_t *sink = source; in fromstruct_sink() local 160 REQUIRE(sink != NULL); in fromstruct_sink() 161 REQUIRE(sink->common.rdtype == type); in fromstruct_sink() 162 REQUIRE(sink->common.rdclass == rdclass); in fromstruct_sink() 168 RETERR(uint8_tobuffer(sink->meaning, target)); in fromstruct_sink() 171 RETERR(uint8_tobuffer(sink->coding, target)); in fromstruct_sink() 174 RETERR(uint8_tobuffer(sink->subcoding, target)); in fromstruct_sink() 177 return (mem_tobuffer(target, sink->data, sink->datalen)); in fromstruct_sink() 182 dns_rdata_sink_t *sink = target; in tostruct_sink() local 186 REQUIRE(sink != NULL); in tostruct_sink() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/ |
| H A D | BIO_s_null.pod | 5 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-src/crypto/external/bsd/openssl.old/dist/doc/man3/ |
| H A D | BIO_s_null.pod | 5 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-src/external/mit/isl/dist/ |
| H A D | isl_flow.c | 41 isl_set *sink; member 103 restr->sink = sink_restr; in isl_restriction_input() 145 isl_set_free(restr->sink); in isl_restriction_free() 186 struct isl_labeled_map sink; member 214 __isl_give isl_access_info *isl_access_info_alloc(__isl_take isl_map *sink, in isl_access_info_alloc() argument 220 if (!sink) in isl_access_info_alloc() 223 ctx = isl_map_get_ctx(sink); in isl_access_info_alloc() 232 acc->sink.map = sink; in isl_access_info_alloc() 233 acc->sink.data = sink_user; in isl_access_info_alloc() 241 isl_map_free(sink); in isl_access_info_alloc() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/ |
| H A D | package.d | 858 (ref Sink sink, R input, T captures) 863 sink.put(input); 866 sink.put(captures.pre); 870 sink.put(output(captures)); //"mutator" type of function 872 output(captures, sink); //"output" type of function 873 sink.put(captures.post); 878 (ref Sink sink, R input, T matches) 884 sink.put(cap.pre[offset .. $]); 887 sink.put(output(cap)); //"mutator" type of function 889 output(cap, sink); //"output" type of function [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/ |
| H A D | dmain2.d | 520 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 …]
|