Searched refs:source (Results 76 - 100 of 574) sorted by relevance

1234567891011>>

/freebsd-13-stable/usr.bin/dc/
H A Dinout.c34 static int src_getcharstream(struct source *);
35 static void src_ungetcharstream(struct source *);
36 static char *src_getlinestream(struct source *);
37 static int src_getcharstring(struct source *);
38 static void src_ungetcharstring(struct source *);
39 static char *src_getlinestring(struct source *);
40 static void src_freestring(struct source *);
61 src_setstream(struct source *src, FILE *stream)
69 src_setstring(struct source *src, char *p)
78 src_getcharstream(struct source *sr
[all...]
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Ddirective.mk18 # dependency declaration with 2 targets and 1 source.
19 .target target: source
32 .${:Uinfo} : source
/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Ddsl_prop.c358 * the given value and source. This is not a general purpose function. It exists
368 zprop_source_t source, uint64_t value, uint64_t *newvalp)
393 if (source & ZPROP_SRC_NONE)
394 source = ZPROP_SRC_NONE;
395 else if (source & ZPROP_SRC_RECEIVED)
396 source = ZPROP_SRC_LOCAL;
399 switch ((int)source) {
428 panic("unexpected property source: %d", source);
652 zprop_source_t source, in
367 dsl_prop_predict(dsl_dir_t *dd, const char *propname, zprop_source_t source, uint64_t value, uint64_t *newvalp) argument
651 dsl_prop_set_sync_impl(dsl_dataset_t *ds, const char *propname, zprop_source_t source, int intsz, int numints, const void *value, dmu_tx_t *tx) argument
825 dsl_prop_set_int(const char *dsname, const char *propname, zprop_source_t source, uint64_t value) argument
838 dsl_prop_set_string(const char *dsname, const char *propname, zprop_source_t source, const char *value) argument
851 dsl_prop_inherit(const char *dsname, const char *propname, zprop_source_t source) argument
903 dsl_props_set_sync_impl(dsl_dataset_t *ds, zprop_source_t source, nvlist_t *props, dmu_tx_t *tx) argument
957 dsl_props_set(const char *dsname, zprop_source_t source, nvlist_t *props) argument
1001 const char *source; local
1167 dsl_prop_set_hasrecvd_impl(const char *dsname, zprop_source_t source) argument
[all...]
/freebsd-13-stable/contrib/lutok/
H A Ddebug.cpp4 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions of source code must retain the above copyright
132 /// Accessor for the 'source' field of lua_Debug.
134 /// \return Returns the 'source' field of the internal lua_Debug structure.
136 lutok::debug::source(void) const function in class:lutok::debug
138 assert(_pimpl->lua_debug.source != NULL);
139 return _pimpl->lua_debug.source;
H A Ddebug.hpp4 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions of source code must retain the above copyright
79 std::string source(void) const;
/freebsd-13-stable/crypto/heimdal/lib/wind/
H A Dstringprep.py10 # Redistribution and use in source and binary forms, with or without
14 # 1. Redistributions of source code must retain the above copyright
40 def _merge_table(res, source):
41 for table in source.keys():
42 res[table] = res.get(table, []) + source.get(table, [])
/freebsd-13-stable/usr.sbin/ppp/
H A Dpred.c10 * Redistribution and use in source and binary forms, with or without
13 * 1. Redistributions of source code must retain the above copyright
69 compress(struct pred1_state *state, u_char *source, u_char *dest, int len) argument
79 if (state->dict[state->hash] == *source) {
82 state->dict[state->hash] = *source;
83 *dest++ = *source; /* Guess wrong, output char */
85 HASH(state, *source++);
94 SyncTable(struct pred1_state *state, u_char *source, u_char *dest, int len) argument
97 *dest++ = state->dict[state->hash] = *source;
98 HASH(state, *source
103 decompress(struct pred1_state *state, u_char *source, u_char *dest, int len) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeRegisterContextNetBSD.h35 CopyHardwareWatchpointsFrom(NativeRegisterContextNetBSD &source) = 0;
/freebsd-13-stable/contrib/byacc/test/btyacc/
H A Dbtyacc_demo.tab.h44 unsigned source; member in struct:YYLTYPE
/freebsd-13-stable/contrib/less/
H A Dregexp.h31 extern void regsub _ANSI_ARGS_((regexp *prog, char *source, char *dest));
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dtst.ipv4remoteudp.ksh60 $getaddr | read source dest
87 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" &&
94 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest"/
H A Dtst.ipv4remoteudplite.ksh60 $getaddr | read source dest
88 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" &&
95 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest"/
/freebsd-13-stable/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-zlib.c47 * 2. Altered source versions must be plainly marked as such, and must not be
49 * 3. This notice may not be removed or altered from any source distribution.
85 * Compresses the source buffer into the destination buffer. The level
87 * length of the source buffer. Upon entry, destLen is the total size of the
96 z_compress_level(void *dest, size_t *destLen, const void *source, argument
102 stream.next_in = (Byte *)source;
136 * Decompresses the source buffer into the destination buffer. sourceLen is
137 * the byte length of the source buffer. Upon entry, destLen is the total
151 z_uncompress(void *dest, size_t *destLen, const void *source, size_t sourceLen) argument
156 stream.next_in = (Byte *)source;
[all...]
/freebsd-13-stable/sys/net/
H A Dnetisr.h11 * Redistribution and use in source and binary forms, with or without
14 * 1. Redistributions of source code must retain the above copyright
68 #define NETISR_POLICY_SOURCE 1 /* Maintain source ordering. */
153 * NETISR_POLICY_SOURCE - netisr should maintain source ordering without
162 * flow ID, falling back on source ordering.
169 * receive interface pointed to by the mbuf (if any), the optional source
180 typedef struct mbuf *netisr_m2cpuid_t(struct mbuf *m, uintptr_t source,
182 typedef struct mbuf *netisr_m2flow_t(struct mbuf *m, uintptr_t source);
221 * Supplemental source ordering information can be passed using the _src
225 int netisr_dispatch_src(u_int proto, uintptr_t source, struc
[all...]
/freebsd-13-stable/contrib/googletest/googlemock/scripts/generator/cpp/
H A Dgmock_class.py19 This program will read in a C++ source file and output the Google Mock
21 classes in the source file are emitted.
51 def _GenerateMethods(output_lines, source, class_node):
89 if source[first_param.start:first_param.end].strip() == 'void':
114 args_strings = re.sub(r'//.*', '', source[start:end])
126 def _GenerateMocks(filename, source, ast_list, desired_class_names):
160 _GenerateMethods(lines, source, class_node)
206 desired_class_names = None # None means all classes in the source file.
209 source = utils.ReadFile(filename)
210 if source i
[all...]
/freebsd-13-stable/contrib/sendmail/contrib/
H A Dqtool.pl31 ## assumes that when you specify a directory as a source, you mean that you
36 ## Just create an Object with a check_move(source, dest) method and add it
47 ## '$msg' is bound to the ControlFile object for the current source
65 my $source;
83 my $source = shift;
86 $result = $destination->add($source);
95 my $source = shift;
97 return $source->delete();
102 my $source = shift;
104 return $source
[all...]
/freebsd-13-stable/crypto/heimdal/lib/gssapi/krb5/
H A Ddelete_sec_context.c6 * Redistribution and use in source and binary forms, with or without
10 * 1. Redistributions of source code must retain the above copyright
65 if(ctx->source)
66 krb5_free_principal (context, ctx->source);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_libdispatch.cpp71 static dispatch_queue_t GetTargetQueueFromSource(dispatch_source_t source) { argument
72 dispatch_queue_t tq = GetTargetQueueFromQueue((dispatch_queue_t)source);
388 dispatch_source_t source, dispatch_block_t handler) {
389 SCOPED_TSAN_INTERCEPTOR(dispatch_source_set_event_handler, source, handler);
391 return REAL(dispatch_source_set_event_handler)(source, nullptr);
392 dispatch_queue_t q = GetTargetQueueFromSource(source);
401 REAL(dispatch_source_set_event_handler)(source, new_handler);
406 dispatch_source_t source, dispatch_function_t handler) {
407 SCOPED_TSAN_INTERCEPTOR(dispatch_source_set_event_handler_f, source, handler);
409 return REAL(dispatch_source_set_event_handler)(source, nullpt
387 TSAN_INTERCEPTOR(void, dispatch_source_set_event_handler, dispatch_source_t source, dispatch_block_t handler) argument
405 TSAN_INTERCEPTOR(void, dispatch_source_set_event_handler_f, dispatch_source_t source, dispatch_function_t handler) argument
416 TSAN_INTERCEPTOR(void, dispatch_source_set_cancel_handler, dispatch_source_t source, dispatch_block_t handler) argument
434 TSAN_INTERCEPTOR(void, dispatch_source_set_cancel_handler_f, dispatch_source_t source, dispatch_function_t handler) argument
446 TSAN_INTERCEPTOR(void, dispatch_source_set_registration_handler, dispatch_source_t source, dispatch_block_t handler) argument
465 TSAN_INTERCEPTOR(void, dispatch_source_set_registration_handler_f, dispatch_source_t source, dispatch_function_t handler) argument
[all...]
/freebsd-13-stable/sys/contrib/openzfs/module/lua/
H A Dllex.h66 TString *source; /* current source name */ member in struct:LexState
74 TString *source, int firstchar);
/freebsd-13-stable/contrib/ntp/lib/isc/
H A Dradix.c20 * This source was adapted from MRT's RCS Ids:
303 isc_radix_node_t *source, isc_prefix_t *prefix)
313 REQUIRE(prefix != NULL || (source != NULL && source->prefix != NULL));
317 prefix = source->prefix;
339 if (source != NULL) {
341 * If source is non-NULL, then we're merging in a
348 if (source->node_num[0] != -1)
350 source->node_num[0];
351 if (source
302 isc_radix_insert(isc_radix_tree_t *radix, isc_radix_node_t **target, isc_radix_node_t *source, isc_prefix_t *prefix) argument
[all...]
/freebsd-13-stable/sys/mips/mips/
H A Dintr_machdep.c8 * Redistribution and use in source and binary forms, with or without
11 * 1. Redistributions of source code must retain the above copyright
96 mips_mask_hard_irq(void *source) argument
98 uintptr_t irq = (uintptr_t)source;
104 mips_unmask_hard_irq(void *source) argument
106 uintptr_t irq = (uintptr_t)source;
112 mips_mask_soft_irq(void *source) argument
114 uintptr_t irq = (uintptr_t)source;
120 mips_unmask_soft_irq(void *source) argument
122 uintptr_t irq = (uintptr_t)source;
[all...]
/freebsd-13-stable/crypto/openssl/crypto/bn/
H A Dbn_prime.pl6 # in the file LICENSE in the source distribution or at
7 # https://www.openssl.org/source/license.html
20 * in the file LICENSE in the source distribution or at
21 * https://www.openssl.org/source/license.html
/freebsd-13-stable/sys/contrib/octeon-sdk/
H A Dcvmx-tra.c6 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions of source code must retain the above copyright
624 SOURCE_ARRAY[data.cmn.source],
637 SOURCE_ARRAY[data.store.source],
651 SOURCE_ARRAY[data.iobld.source],
662 SOURCE_ARRAY[data.iob.source],
716 if (data.cmn2.source <= 7)
718 srcId = _cvmx_tra_unit + (data.cmn2.source * 4);
723 srcId = (data.cmn2.source);
726 srcId = (data.cmn2.source);
[all...]
/freebsd-13-stable/sys/arm/xilinx/
H A Dzy7_slcr.c7 * Redistribution and use in source and binary forms, with or without
10 * 1. Redistributions of source code must retain the above copyright
262 zy7_pl_fclk_set_source(int unit, int source) argument
275 /* Modify FPGAx source. */
278 reg |= (source << ZY7_SLCR_FPGA_CLK_CTRL_SRCSEL_SHIFT);
294 int source; local
303 source = (reg & ZY7_SLCR_FPGA_CLK_CTRL_SRCSEL_MASK) >>
307 if ((source & 2) == 0)
308 source = ZY7_PL_FCLK_SRC_IO;
312 return (source);
322 int source; local
389 int source; local
[all...]
/freebsd-13-stable/contrib/apr/network_io/unix/
H A Dmulticast.c113 apr_sockaddr_t *source)
125 if (source != NULL) {
148 memcpy(&mip.gsr_source, source->ipaddr_ptr, sizeof(mip.gsr_source));
244 apr_sockaddr_t *source)
247 return do_mcast(IP_ADD_MEMBERSHIP, sock, join, iface, source);
256 apr_sockaddr_t *source)
259 return do_mcast(IP_DROP_MEMBERSHIP, sock, addr, iface, source);
111 do_mcast(int type, apr_socket_t *sock, apr_sockaddr_t *mcast, apr_sockaddr_t *iface, apr_sockaddr_t *source) argument

Completed in 322 milliseconds

1234567891011>>