| /src/external/bsd/kyua-cli/dist/integration/ |
| utils.sh | 44 # \param destination The target location for the binary; can be either 48 local destination="${1}"; shift 50 ln -s "$(atf_get_srcdir)"/helpers/"${name}" "${destination}"
|
| /src/external/gpl3/gcc.old/dist/libobjc/ |
| accessors.m | 205 objc_getPropertyStruct (void *destination, const void *source, ptrdiff_t size, BOOL is_atomic, BOOL __attribute__((unused)) has_strong) 208 memcpy (destination, source, size); 214 memcpy (destination, source, size); 224 objc_setPropertyStruct (void *destination, const void *source, ptrdiff_t size, BOOL is_atomic, BOOL __attribute__((unused)) has_strong) 227 memcpy (destination, source, size); 230 objc_mutex_t lock = accessors_locks[ACCESSORS_HASH (destination)]; 233 memcpy (destination, source, size); 246 objc_copyStruct (void *destination, const void *source, ptrdiff_t size, BOOL is_atomic, BOOL __attribute__((unused)) has_strong) 249 memcpy (destination, source, size); 262 if (ACCESSORS_HASH (source) == ACCESSORS_HASH (destination)) [all...] |
| /src/external/apache2/mDNSResponder/dist/ServiceRegistration/ |
| icmp.h | 29 void neighbor_solicit_send(interface_t *NONNULL interface, struct in6_addr *NONNULL destination); 35 void neighbor_solicit_send(interface_t *NONNULL interface, struct in6_addr *NONNULL destination); 37 void router_advertisement_send(interface_t *NONNULL interface, const struct in6_addr *NONNULL destination);
|
| icmp.c | 149 INFO(" destination link layer address " PRI_MAC_ADDR_SRP, MAC_ADDR_PARAM_SRP(lladdr->address)); 345 message->destination = dest->sin6.sin6_addr; 360 SEGMENTED_IPv6_ADDR_GEN_SRP(message->destination.s6_addr, dst_buf); 364 SEGMENTED_IPv6_ADDR_PARAM_SRP(message->destination.s6_addr, dst_buf), ifindex); 408 icmp_message_dump(message, &message->source, &message->destination); 420 icmp_message_dump(message, &message->source, &message->destination); 426 icmp_message_dump(message, &message->source, &message->destination); 489 icmp_send(uint8_t *message, size_t length, interface_t *interface, const struct in6_addr *destination) 521 dest.sin6_addr = *destination; 564 router_advertisement_send(interface_t *interface, const struct in6_addr *destination) [all...] |
| posix.c | 442 addr_t *destination) 475 /* Get the destination address, for use when replying. */ 476 destination->sin6.sin6_family = AF_INET6; 477 destination->sin6.sin6_port = 0; 478 destination->sin6.sin6_addr = pktinfo.ipi6_addr; 480 destination->sin6.sin6_len = sizeof(destination->sin6); 489 destination->sin.sin_family = AF_INET; 490 destination->sin.sin_port = 0; 491 destination->sin.sin_addr = pktinfo.ipi_addr [all...] |
| /src/sys/dev/microcode/aic7xxx/ |
| aicasm_insformat.h | 49 destination : 9, member in struct:ins_format1 57 destination : 9, 67 destination : 9, member in struct:ins_format2 75 destination : 9,
|
| /src/external/gpl3/binutils/dist/binutils/ |
| rename.c | 165 /* Set the times of the file DESTINATION to be the same as those in 169 set_times (const char *destination, const struct stat *statbuf) 176 result = utimensat (AT_FDCWD, destination, times, 0); 184 result = utimes (destination, tv); 190 result = utime (destination, &tb); 196 result = utime (destination, tb); 200 non_fatal (_("%s: cannot set time: %s"), destination, strerror (errno));
|
| /src/external/gpl3/binutils.old/dist/binutils/ |
| rename.c | 165 /* Set the times of the file DESTINATION to be the same as those in 169 set_times (const char *destination, const struct stat *statbuf) 176 result = utimensat (AT_FDCWD, destination, times, 0); 184 result = utimes (destination, tv); 190 result = utime (destination, &tb); 196 result = utime (destination, tb); 200 non_fatal (_("%s: cannot set time: %s"), destination, strerror (errno));
|
| /src/lib/libc/arch/m68k/string/ |
| swab.S | 7 movl 8(%sp),%a1 | destination
|
| /src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
| CircularBuffer.cs | 61 public int Get(byte[] destination, int offset, int count)
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
|
| /src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/ |
| CircularBuffer.cs | 61 public int Get(byte[] destination, int offset, int count)
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
|
| /src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/ |
| CircularBuffer.cs | 61 public int Get(byte[] destination, int offset, int count)
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
|
| /src/sys/arch/vax/vax/ |
| emulate.S | 114 argl(6,%r5) # (6) destination address == %r5 115 arguw(5,%r4) # (5) destination length == %r4 141 argl(6,%r5) # (6) destination address == %r5 142 arguw(5,%r4) # (5) destination length == %r4 345 arguw(3,%r9) # (3) destination length == %r9 346 argl(4,%r3) # (4) destination address == %r3 351 addl2 %r9,%r3 # %r3 = destination address of LSNibble 352 incl %r9 # destination length is in bytes 354 extzv $0,$4,(%r3),%r2 # set standard +/- indicators in destination 374 cmpl %r11,%r9 # if source is longer than destination [all...] |
| /src/external/bsd/atf/dist/atf-c++/ |
| utils.cpp | 46 atf::utils::copy_file(const std::string& source, const std::string& destination) 48 atf_utils_copy_file(source.c_str(), destination.c_str());
|
| /src/external/bsd/ntp/dist/libntp/lib/isc/ |
| log.c | 79 isc_logdestination_t destination; member in struct:isc_logchannel 254 #define FACILITY(channel) (channel->destination.facility) 255 #define FILE_NAME(channel) (channel->destination.file.name) 256 #define FILE_STREAM(channel) (channel->destination.file.stream) 257 #define FILE_VERSIONS(channel) (channel->destination.file.versions) 258 #define FILE_MAXSIZE(channel) (channel->destination.file.maximum_size) 259 #define FILE_MAXREACHED(channel) (channel->destination.file.maximum_reached) 335 isc_logdestination_t destination; local 371 destination.facility = LOG_DAEMON; 374 &destination, 0) [all...] |
| /src/external/bsd/atf/dist/atf-c/ |
| utils.c | 145 * \param destination Path to the destination file. */ 147 atf_utils_copy_file(const char *source, const char *destination) 153 const int output = open(destination, O_WRONLY | O_CREAT | O_TRUNC, 0777); 154 ATF_REQUIRE_MSG(output != -1, "Failed to open destination file during " 155 "copy (%s)", destination); 161 "Failed to write to %s during copy", destination); local 168 "Failed to chmod destination file %s during copy", 169 destination); local
|
| /src/common/lib/libc/arch/m68k/string/ |
| memset.S | 77 movl 8(%sp),%a0 | destination 168 movl 8(%sp),%d0 | return destination
|
| /src/external/bsd/nsd/dist/simdzone/src/westmere/ |
| ip4.h | 123 // The address is converted to a 32-bit integer (destination) (in network byte order). 132 static inline int sse_inet_aton(const char* ipv4_string, uint8_t* destination, size_t* restrict ipv4_string_length) { 178 memcpy(destination, &address, 4);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
| fp_extend_impl.inc | 73 // Extend to the destination type by shifting the significand and 92 // the correct adjusted exponent in the destination type.
|
| /src/external/apache2/llvm/dist/llvm/utils/docker/scripts/ |
| build_install_llvm.sh | 24 --to destination directory where to install the targets.
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/scripts/ |
| check_simd | 72 --destination="$testdir/$subdir" --sim="$sim" --testflags="$flags" \
|
| /src/sys/external/bsd/drm2/dist/drm/i915/ |
| intel_sideband.c | 280 enum intel_sbi_destination destination, 299 if (destination == SBI_ICLK) 327 enum intel_sbi_destination destination) 331 intel_sbi_rw(i915, reg, destination, &result, true); 337 enum intel_sbi_destination destination) 339 intel_sbi_rw(i915, reg, destination, &value, false);
|
| intel_sideband.h | 131 enum intel_sbi_destination destination); 133 enum intel_sbi_destination destination);
|
| /src/tests/net/route/ |
| t_change.sh | 130 destination: 192.168.0.0 149 destination: 192.168.0.0 197 destination: 192.168.0.0 216 destination: 192.168.0.0 264 destination: 192.168.0.0 283 destination: 192.168.0.0
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_common_interceptors_format.inc | 99 // destination buffer. 102 // destination buffer.
|