Searched refs:destination (Results 1 - 25 of 69) sorted by relevance

123

/freebsd-11.0-release/sys/dev/isci/scil/
H A Dsci_util.c59 U32 *destination,
66 *destination = SCIC_SWAP_DWORD(*source);
69 destination++;
58 scic_word_copy_with_swap( U32 *destination, U32 *source, U32 word_count ) argument
H A Dsci_util.h133 * @brief Copy the data from source to destination and swap the
136 * @param[in] destination This parameter specifies the destination address
146 U32 *destination,
/freebsd-11.0-release/contrib/ofed/libsdp/
H A Dlibsdp.conf21 log min-level 9 destination file libsdp.log
35 # log [destination stderr|syslog|file <path>] [min-level <1-9>]
37 # destination - defines the destination of the log messages:
60 # log min-level 7 destination stderr
63 # log min-level 9 destination syslog
/freebsd-11.0-release/sys/geom/vinum/
H A Dgeom_vinum_move.c48 char buf[20], *destination, *object; local
63 destination = gctl_get_param(req, "destination", NULL);
64 if (destination == NULL) {
65 gctl_error(req, "no destination given");
68 if (gv_object_type(sc, destination) != GV_TYPE_DRIVE) {
69 gctl_error(req, "destination '%s' is not a drive", destination);
72 d = gv_find_drive(sc, destination);
76 * destination driv
102 gv_move_sd(struct gv_softc *sc, struct gv_sd *cursd, struct gv_drive *destination, int flags) argument
[all...]
/freebsd-11.0-release/sys/dev/aic7xxx/aicasm/
H A Daicasm_insformat.h49 destination : 9, member in struct:ins_format1
57 destination : 9,
67 destination : 9, member in struct:ins_format2
75 destination : 9,
H A Daicasm_gram.y203 %type <sym_ref> reg_symbol address destination source opt_source
897 destination: label
1147 f1_opcode destination ',' immediate_or_a opt_source ret ';'
1161 T_INC destination opt_source ret ';'
1171 T_DEC destination opt_source ret ';'
1188 | T_CLC T_MVI destination ',' immediate_or_a ret ';'
1202 | T_STC destination ret ';'
1212 T_BMOV destination ',' source ',' immediate ret ';'
1219 T_MOV destination ',' source ret ';'
1229 T_MVI destination ',' immediat
[all...]
/freebsd-11.0-release/contrib/ntp/lib/isc/tests/
H A Disctest.c105 isc_logdestination_t destination; local
112 destination.file.stream = logfile;
113 destination.file.name = NULL;
114 destination.file.versions = ISC_LOG_ROLLNEVER;
115 destination.file.maximum_size = 0;
119 &destination, 0));
/freebsd-11.0-release/contrib/tcp_wrappers/
H A Denviron.c104 char *destination; local
124 destination = (envp != 0 && strlen(*envp) >= l_nameval) ?
126 if (destination == 0)
128 strncpy(destination, name, l_name);
129 destination[l_name] = '=';
130 strcpy(destination + l_name + 1, value);
131 return ((envp == 0) ? addenv(destination) : (*envp = destination, 0));
/freebsd-11.0-release/contrib/binutils/binutils/
H A Drename.c99 set_times (const char *destination, const struct stat *statbuf) argument
109 result = utime (destination, &tb);
116 result = utime (destination, tb);
124 result = utimes (destination, tv);
130 non_fatal (_("%s: cannot set time: %s"), destination, strerror (errno));
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DCXXFunctionPointer.cpp26 std::string destination; local
/freebsd-11.0-release/contrib/atf/atf-c++/
H A Dutils.cpp42 atf::utils::copy_file(const std::string& source, const std::string& destination) argument
44 atf_utils_copy_file(source.c_str(), destination.c_str());
/freebsd-11.0-release/contrib/ntp/lib/isc/
H A Dlog.c77 isc_logdestination_t destination; member in struct:isc_logchannel
252 #define FACILITY(channel) (channel->destination.facility)
253 #define FILE_NAME(channel) (channel->destination.file.name)
254 #define FILE_STREAM(channel) (channel->destination.file.stream)
255 #define FILE_VERSIONS(channel) (channel->destination.file.versions)
256 #define FILE_MAXSIZE(channel) (channel->destination.file.maximum_size)
257 #define FILE_MAXREACHED(channel) (channel->destination.file.maximum_reached)
333 isc_logdestination_t destination; local
369 destination.facility = LOG_DAEMON;
372 &destination,
703 isc_log_createchannel(isc_logconfig_t *lcfg, const char *name, unsigned int type, int level, const isc_logdestination_t *destination, unsigned int flags) argument
[all...]
/freebsd-11.0-release/contrib/sendmail/contrib/
H A Dqtool.pl63 my $destination;
84 my $destination = shift;
86 $result = $destination->add($source);
143 print("The destination '$dst_name' must be an existing " .
148 $destination = new Queue($dst_name);
223 $result = $conditions->check_move($source, $destination);
226 $result = &{$action}($source, $destination);
891 my $destination = shift;
902 $qf_dest = File::Spec->catfile($destination, "qf");
905 $df_dest = File::Spec->catfile($destination, "d
[all...]
/freebsd-11.0-release/tools/tools/vt/mkkfont/
H A Dmkkfont.c43 uint16_t destination; member in struct:file_mapping
113 be32toh(fm.source), be16toh(fm.destination),
/freebsd-11.0-release/contrib/compiler-rt/lib/builtins/
H A Dfp_extend_impl.inc73 // Extend to the destination type by shifting the significand and
92 // the correct adjusted exponent in the destination type.
H A Dfp_trunc_impl.inc81 // destination format. We can convert by simply right-shifting with
107 // a underflows on conversion to the destination type or is an exact
/freebsd-11.0-release/contrib/atf/atf-c/
H A Dutils.c169 * \param destination Path to the destination file. */
171 atf_utils_copy_file(const char *source, const char *destination) argument
177 const int output = open(destination, O_WRONLY | O_CREAT | O_TRUNC, 0777);
178 ATF_REQUIRE_MSG(output != -1, "Failed to open destination file during "
179 "copy (%s)", destination);
185 "Failed to write to %s during copy", destination); local
192 "Failed to chmod destination file %s during copy",
193 destination); local
/freebsd-11.0-release/contrib/ncurses/ncurses/tinfo/
H A Dwrite_entry.c81 * Check for access rights to destination directories
190 const char *destination; local
203 destination = _nc_tic_dir(0);
204 if (make_db_root(destination) < 0) {
208 destination = home;
209 if (make_db_root(destination) < 0)
211 destination, errno);
220 make_db_path(actual, destination, sizeof(actual));
222 if (chdir(_nc_tic_dir(destination)) < 0
224 _nc_err_abort("%s: not a directory", destination);
[all...]
/freebsd-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors_format.inc99 // destination buffer.
102 // destination buffer.
/freebsd-11.0-release/contrib/ee/
H A Dnew_curse.c703 copy_window(origin, destination)
704 WINDOW *origin, *destination;
710 dest = destination->first_line;
713 row < (min(origin->Num_lines, destination->Num_lines));
717 column < (min(origin->Num_cols, destination->Num_cols));
725 dest->last_char = min(orig->last_char, destination->Num_cols);
729 destination->LX = min((destination->Num_cols - 1), origin->LX);
730 destination->LY = min((destination
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp224 const lldb_private::FileSpec& destination,
232 if (FileSpec::Equal(source, destination, true))
239 std::string dst_path (destination.GetPath());
241 return Error("unable to get file path for destination");
266 std::string dst_path (destination.GetPath());
268 return Error("unable to get file path for destination");
309 return Platform::PutFile(source,destination,uid,gid);
358 const lldb_private::FileSpec &destination) // local file path
366 std::string dst_path (destination.GetPath());
368 return Error("unable to get file path for destination");
223 PutFile(const lldb_private::FileSpec& source, const lldb_private::FileSpec& destination, uint32_t uid, uint32_t gid) argument
357 GetFile(const lldb_private::FileSpec &source, const lldb_private::FileSpec &destination) argument
[all...]
H A DPlatformPOSIX.h52 const lldb_private::FileSpec& destination,
89 const lldb_private::FileSpec &destination) override;
/freebsd-11.0-release/contrib/tcpdump/
H A Dprint-eigrp.c131 uint8_t destination; /* variable length [1-4] bytes encoding */ member in struct:eigrp_tlv_ip_int_t
151 uint8_t destination; /* variable length [1-4] bytes encoding */ member in struct:eigrp_tlv_ip_ext_t
328 memcpy(prefix,&tlv_ptr.eigrp_tlv_ip_int->destination,byte_length);
357 memcpy(prefix,&tlv_ptr.eigrp_tlv_ip_ext->destination,byte_length);
/freebsd-11.0-release/sys/dev/wl/
H A Dif_wl_i82586.h254 u_char destination[6]; member in struct:__anon11957
/freebsd-11.0-release/contrib/ofed/libsdp/src/
H A Dconfig_scanner.l85 destination {

Completed in 276 milliseconds

123