Searched refs:src (Results 251 - 275 of 1056) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/lib/libldap5/include/ldap/
H A Dldif.h88 int ldif_base64_decode( char *src, unsigned char *dst );
89 int ldif_base64_encode( unsigned char *src, char *dst, int srclen,
91 int ldif_base64_encode_nowrap( unsigned char *src, char *dst, int srclen,
/illumos-gate/usr/src/uts/common/io/ib/clients/rdsv3/
H A Dib_stats.c87 uint64_t *src; local
99 src = (uint64_t *)&(rdsv3_per_cpu(rdsv3_ib_stats, cpu));
102 *(sum++) += *(src++);
/illumos-gate/usr/src/cmd/svr4pkg/pkgscripts/
H A Di.build.sh9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
29 while read src dest
31 [ "$src" = /dev/null ] && continue
60 cp $src $savepath &&
/illumos-gate/usr/src/lib/libcommputil/common/
H A Dcommp_util.h8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
55 #define COMMP_COPY_STR(dst, src, len) { \
58 (void) strncpy((dst), (src), (len)); \
/illumos-gate/usr/src/cmd/tsol/updatehome/
H A Dsetupfiles.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
345 char src[MAXPATHLEN]; local
389 if (snprintf(src, sizeof (src), "%s/%s", min_home, target) >
390 sizeof (src) - 1) {
391 dprintf("setupfiles copy path %s", src);
392 dprintf("greater than %d\n", sizeof (src));
398 if (access(src, R_OK) != 0) {
402 dprintf("setupfiles copy unable to access %s\n", src);
456 char src[MAXPATHLEN]; local
[all...]
/illumos-gate/usr/src/stand/lib/sa/
H A Dstrings.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
47 bcopy(const void *src, void *dest, size_t count) argument
49 const char *csrc = src;
/illumos-gate/usr/src/uts/common/sys/
H A Duuid.h9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
88 #define UUID_LE_CONVERT(dest, src) \
90 (dest) = (src); \
/illumos-gate/usr/src/boot/sys/boot/common/
H A Dutil.c28 memcpy(void *dst, const void *src, int len) argument
30 const char *s = src;
77 strcpy(char *dst, const char *src) argument
80 while (*src != '\0')
81 *dst++ = *src++;
86 strcat(char *dst, const char *src) argument
91 while (*src != '\0')
92 *dst++ = *src++;
/illumos-gate/usr/src/boot/sys/boot/efi/loader/
H A Dloader_efi.h44 ssize_t efi_copyin(const void *src, vm_offset_t dest, const size_t len);
45 ssize_t efi_copyout(const vm_offset_t src, void *dest, const size_t len);
/illumos-gate/usr/src/uts/intel/ia32/ml/
H A Dsseblk.s8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
216 hwblkpagecopy(const void *src, void *dst)
221 #define PREFETCH_START(src) \
222 prefetchnta 0x0(src); \
223 prefetchnta 0x40(src)
236 #define COPY_LOOP_INIT_XMM(src) \
237 prefetchnta 0x80(src); \
238 prefetchnta 0xc0(src); \
239 movdqa 0x0(src),
[all...]
/illumos-gate/usr/src/lib/libnsl/nss/
H A Dinet_ntop.c42 * inet_ntop(af, src, dst, size)
48 inet_ntop(int af, const void *src, char *dst, socklen_t size) argument
52 return (inet_ntop4(src, dst, size));
54 return (inet_ntop6(src, dst, size));
64 * inet_ntop4(src, dst, size)
81 inet_ntop4(const uchar_t *src, char *dst, socklen_t size) argument
86 if (SPRINTF((tmp, fmt, src[0], src[1], src[2], src[
103 inet_ntop6(const uchar_t *src, char *dst, socklen_t size) argument
[all...]
/illumos-gate/usr/src/common/net/dhcp/
H A Dudp_sum.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
38 struct in_addr src; member in struct:pseudo_udp
50 udp_chksum(struct udphdr *udph, const struct in_addr *src, argument
67 ck.src = *src;
/illumos-gate/usr/src/cmd/cmd-inet/lib/ipmgmtd/
H A Dipmgmt_util.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
59 ipmgmt_cpfile(const char *src, const char *dst, boolean_t rdonly) argument
78 if (stat(src, &statbuf) != 0) {
83 if ((sfp = fopen(src, "r")) == NULL) {
128 (void) unlink(src);
/illumos-gate/usr/src/cmd/logadm/
H A Dkw.h9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
39 boolean_t kw_expand(struct fn *src, struct fn *dst, int n, boolean_t gz);
/illumos-gate/usr/src/uts/common/sys/usb/clients/video/usbvc/
H A Dusbvc_var.h8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
282 #define LE_TO_UINT32(src, off, des) { \
284 des = src[off + 3]; \
286 tmp = src[off + 2]; \
288 tmp = src[off + 1]; \
290 des |= src[off]; \
294 #define UINT32_TO_LE(src, off, des) { \
295 des[off + 0] = 0xff & src; \
296 des[off + 1] = 0xff & (src >>
[all...]
/illumos-gate/usr/src/lib/libctf/common/
H A Dctf_lib.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
103 z_uncompress(void *dst, size_t *dstlen, const void *src, size_t srclen) argument
105 return (zlib.z_uncompress(dst, (ulong_t *)dstlen, src, srclen));
118 ehdr_to_gelf(const Elf32_Ehdr *src, GElf_Ehdr *dst) argument
120 bcopy(src->e_ident, dst->e_ident, EI_NIDENT);
121 dst->e_type = src->e_type;
122 dst->e_machine = src->e_machine;
123 dst->e_version = src->e_version;
124 dst->e_entry = (Elf64_Addr)src
140 shdr_to_gelf(const Elf32_Shdr *src, GElf_Shdr *dst) argument
[all...]
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_list.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
114 mdb_list_move(mdb_list_t *src, mdb_list_t *dst) argument
116 dst->ml_prev = src->ml_prev;
117 dst->ml_next = src->ml_next;
118 src->ml_prev = NULL;
119 src->ml_next = NULL;
/illumos-gate/usr/src/cmd/sendmail/libmilter/
H A Dsm_gethost.c130 ** src -- string
140 mi_inet_pton(family, src, dst)
142 const char *src;
146 strncasecmp(src, "IPv6:", 5) == 0)
147 src += 5;
148 return inet_pton(family, src, dst);
/illumos-gate/usr/src/cmd/lms/
H A DMakefile8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
34 SyncLib/src/EventUnix.o SyncLib/src/RWLock.o \
35 SyncLib/src/SemaphoreUnix.o SyncLib/src/ThreadUnix.o \
45 SYNCLIB_SRCDIR=SyncLib/src
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/fcoei/
H A Dfcoei_eth.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
112 static void fcoei_fill_fcp_resp(uint8_t *src, uint8_t *dest, int size);
829 * src = frm payload in link format
844 uint8_t *src = frm->frm_payload; local
854 els_code->ls_code = FCOE_B2V_1(src);
898 els_logi->common_service.fcph_version = FCOE_B2V_2(src +
901 els_logi->common_service.btob_credit = FCOE_B2V_2(src +
904 els_logi->common_service.cmn_features = FCOE_B2V_2(src +
907 els_logi->common_service.rx_bufsize = FCOE_B2V_2(src
1079 fcoei_fill_fcp_resp(uint8_t *src, uint8_t *dest, int size) argument
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/inet/
H A Dinet_cidr_ntop.c44 inet_cidr_ntop_ipv4(const u_char *src, int bits, char *dst, size_t size);
46 inet_cidr_ntop_ipv6(const u_char *src, int bits, char *dst, size_t size);
50 * inet_cidr_ntop(af, src, bits, dst, size)
52 * "src"'s size is determined from its "af".
63 inet_cidr_ntop(int af, const void *src, int bits, char *dst, size_t size) { argument
66 return (inet_cidr_ntop_ipv4(src, bits, dst, size));
68 return (inet_cidr_ntop_ipv6(src, bits, dst, size));
76 decoct(const u_char *src, int bytes, char *dst, size_t size) { argument
85 dst += SPRINTF((dst, "%u", *src++));
97 * inet_cidr_ntop_ipv4(src, bit
109 inet_cidr_ntop_ipv4(const u_char *src, int bits, char *dst, size_t size) argument
153 inet_cidr_ntop_ipv6(const u_char *src, int bits, char *dst, size_t size) argument
[all...]
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/snowbird/lib/fruaccess/
H A Dpiclsdr.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
63 uint8_t src; member in struct:__anon1226
87 get_fru_data_info(int src, int dest, format_t *fru_format) argument
91 src = IPMB_ADDR(src);
94 if (src != dest) { /* ipmi */
97 ret = get_sdr_info(src, dest, i);
99 ret = get_sun_sdr(ret, src, dest, i);
109 ret = get_sdr_info(src, des
156 get_sdr_info(int src, int dest, uint8_t lun) argument
201 get_sun_sdr(int num_records, uint8_t src, uint8_t dest, uint8_t lun) argument
[all...]
/illumos-gate/usr/src/cmd/sort/common/
H A Dstreams.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
44 stream_new(int src) argument
49 stream_set(str, src);
146 stream_copy(stream_t *dest, stream_t *src) argument
148 (void) memcpy(dest, src, sizeof (stream_t));
451 * stream_insert() takes input from src stream, converts to each line to
456 stream_insert(sort_t *S, stream_t *src, stream_t *dest) argument
466 * Use SOP_FETCH(src) so that this works for all stream types,
475 ASSERT(stream_is_primed(src));
[all...]
/illumos-gate/usr/src/lib/libdns_sd/java/com/apple/dnssd/
H A DMakefile8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
48 EXAMPLESSRC = $(JAVASRCDIR)/docs/examples/src
106 TargetListModel.class src/SimpleChat.java \
107 src/SimpleChat.manifest src/SwingBrowseListener.java \
108 src/SwingQueryListener.java
119 src/BrowserApp.java src/SwingResolveListener.java \
120 src/SwingDomainListene
[all...]
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzio_compress.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
89 zio_compress_data(enum zio_compress c, void *src, void *dst, size_t s_len) argument
102 word_end = (uint64_t *)((char *)src + s_len);
103 for (word = src; word < word_end; word++)
115 c_len = ci->ci_compress(src, dst, s_len, d_len, ci->ci_level);
125 zio_decompress_data(enum zio_compress c, void *src, void *dst, argument
133 return (ci->ci_decompress(src, dst, s_len, d_len, ci->ci_level));

Completed in 184 milliseconds

<<11121314151617181920>>