Searched refs:src (Results 326 - 350 of 1056) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/uts/common/io/ib/clients/rdsv3/
H A Dstats.c121 uint64_t *src; local
137 src = (uint64_t *)&(rdsv3_per_cpu(rdsv3_stats, cpu));
142 *(sum++) += *(src++);
/illumos-gate/usr/src/test/zfs-tests/tests/functional/acl/
H A Dacl_common.kshlib8 # 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.
87 function compare_acls #<src> <tgt>
89 typeset src=$1
92 (( ${#src} == 0 || ${#tgt} == 0 )) && return 1
93 [[ $src == $tgt ]] && return 0
95 typeset tmpsrc=/tmp/compare_acls.src.$$
98 get_acl $src > $tmpsrc
109 get_compact_acl $src > $tmpsrc
125 function compare_modes #<src> <tg
[all...]
/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Dsubr.c181 smb_simplecrypt(char *dst, const char *src) argument
189 while (*src) {
190 ch = *src++;
203 smb_simpledecrypt(char *dst, const char *src) argument
208 if (strncmp(src, "$$1", 3) != 0)
210 src += 3;
211 len = strlen(src);
218 hexval[0] = *src++;
219 hexval[1] = *src++;
/illumos-gate/usr/src/lib/libc/port/locale/
H A Deuc.c141 const char **_RESTRICT_KYWD src,
144 return (__mbsnrtowcs_std(dst, src, nms, len, ps, _EUC_CN_mbrtowc));
155 _EUC_CN_wcsnrtombs(char *_RESTRICT_KYWD dst, const wchar_t **_RESTRICT_KYWD src, argument
158 return (__wcsnrtombs_std(dst, src, nwc, len, ps, _EUC_CN_wcrtomb));
186 const char **_RESTRICT_KYWD src,
189 return (__mbsnrtowcs_std(dst, src, nms, len, ps, _EUC_KR_mbrtowc));
200 _EUC_KR_wcsnrtombs(char *_RESTRICT_KYWD dst, const wchar_t **_RESTRICT_KYWD src, argument
203 return (__wcsnrtombs_std(dst, src, nwc, len, ps, _EUC_KR_wcrtomb));
231 const char **_RESTRICT_KYWD src,
234 return (__mbsnrtowcs_std(dst, src, nm
140 _EUC_CN_mbsnrtowcs(wchar_t *_RESTRICT_KYWD dst, const char **_RESTRICT_KYWD src, size_t nms, size_t len, mbstate_t *_RESTRICT_KYWD ps) argument
185 _EUC_KR_mbsnrtowcs(wchar_t *_RESTRICT_KYWD dst, const char **_RESTRICT_KYWD src, size_t nms, size_t len, mbstate_t *_RESTRICT_KYWD ps) argument
230 _EUC_JP_mbsnrtowcs(wchar_t *_RESTRICT_KYWD dst, const char **_RESTRICT_KYWD src, size_t nms, size_t len, mbstate_t *_RESTRICT_KYWD ps) argument
245 _EUC_JP_wcsnrtombs(char *_RESTRICT_KYWD dst, const wchar_t **_RESTRICT_KYWD src, size_t nwc, size_t len, mbstate_t *_RESTRICT_KYWD ps) argument
275 _EUC_TW_mbsnrtowcs(wchar_t *_RESTRICT_KYWD dst, const char **_RESTRICT_KYWD src, size_t nms, size_t len, mbstate_t *_RESTRICT_KYWD ps) argument
290 _EUC_TW_wcsnrtombs(char *_RESTRICT_KYWD dst, const wchar_t **_RESTRICT_KYWD src, size_t nwc, size_t len, mbstate_t *_RESTRICT_KYWD ps) argument
[all...]
/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A Dip.h18 in_addr src; member in struct:iphdr
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/krb5/krb/
H A Dunparse.c90 component_length_quoted(const krb5_data *src, int flags) argument
92 const char *cp = src->data;
93 int length = src->length;
113 copy_component_quoting(char *dest, const krb5_data *src, int flags) argument
116 const char *cp = src->data;
118 int length = src->length;
121 (void) memcpy(dest, src->data, src->length);
122 return src->length;
/illumos-gate/usr/src/uts/common/io/audio/impl/
H A Daudio_grc3.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.
150 const void *src,
174 src - source audio buffer
269 const void *src, void *dst, int sz, int bufsz, int inc, int offset);
/illumos-gate/usr/src/psm/stand/cpr/sparcv9/sun4u/
H A Dpages.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.
48 * below; the ORIG macro is used for the case where the src buf
69 * precedes the lowest src buf page
179 caddr_t src; local
192 mapin_buf_pages(descp->cpd_length, &src);
196 * for compressed pages, run a checksum at the src vaddr and
199 * uncompressed src data or decompressed result data
203 if (kdata_cksum(src, descp, CPD_CSUM))
206 len = decompress(src, ds
240 caddr_t src; local
[all...]
/illumos-gate/usr/src/uts/common/klm/
H A Dnlm_rpc_svc.c66 nlm_convert_to_nlm_lock(struct nlm_lock *dst, struct nlm4_lock *src) argument
68 dst->caller_name = src->caller_name;
69 dst->fh = src->fh;
70 dst->oh = src->oh;
71 dst->svid = src->svid;
72 ASSERT(src->l_offset <= MAX_UOFF32);
73 dst->l_offset = (uint32_t)src->l_offset;
74 ASSERT(src->l_len <= MAX_UOFF32);
75 dst->l_len = (uint32_t)src->l_len;
84 nlm_convert_to_nlm4_lock(struct nlm4_lock *dst, struct nlm_lock *src) argument
96 nlm_convert_to_nlm4_share(struct nlm4_share *dst, struct nlm_share *src) argument
116 nlm_convert_to_nlm_holder(struct nlm_holder *dst, struct nlm4_holder *src) argument
128 nlm_convert_to_nlm_stats(enum nlm4_stats src) argument
136 nlm_convert_to_nlm_res(struct nlm_res *dst, struct nlm4_res *src) argument
[all...]
/illumos-gate/usr/src/uts/common/sys/
H A Djioctl.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.
123 int size; /* size of src string going in and dest string out */
124 char * src; /* address of the source byte string */ member in struct:bagent
/illumos-gate/usr/src/uts/sun4u/serengeti/sys/
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.
43 ROOTDIR= $(ROOT)/usr/share/src
/illumos-gate/usr/src/uts/sun4u/cherrystone/sys/
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.
43 ROOTDIR= $(ROOT)/usr/share/src
/illumos-gate/usr/src/uts/sun4u/daktari/sys/
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.
43 ROOTDIR= $(ROOT)/usr/share/src
/illumos-gate/usr/src/uts/sun4u/excalibur/sys/
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.
40 ROOTDIR= $(ROOT)/usr/share/src
/illumos-gate/usr/src/uts/sun4u/lw8/sys/
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.
44 ROOTDIR= $(ROOT)/usr/share/src
/illumos-gate/usr/src/uts/sun4u/montecarlo/sys/
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.
41 ROOTDIR= $(ROOT)/usr/share/src
/illumos-gate/usr/src/uts/sun4u/mpxu/sys/
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.
43 ROOTDIR= $(ROOT)/usr/share/src
/illumos-gate/usr/src/uts/sun4u/ngdr/sys/
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.
39 ROOTDIR= $(ROOT)/usr/share/src
/illumos-gate/usr/src/uts/intel/pmcs8001fw/
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.
32 # Path to the base of the uts directory tree (usually /usr/src/uts).
34 UTSBASE = ../../../../src/uts
/illumos-gate/usr/src/uts/sparc/pmcs8001fw/
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.
32 # Path to the base of the uts directory tree (usually /usr/src/uts).
34 UTSBASE = ../../../../src/uts
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Drefcount.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.
207 refcount_transfer(refcount_t *dst, refcount_t *src) argument
217 mutex_enter(&src->rc_mtx);
218 count = src->rc_count;
219 removed_count = src->rc_removed_count;
220 src->rc_count = 0;
221 src->rc_removed_count = 0;
222 list_move_tail(&list, &src->rc_list);
223 list_move_tail(&removed, &src
[all...]
/illumos-gate/usr/src/boot/sys/boot/arm/at91/bootspi/
H A DMakefile3 .include <src.opts.mk>
/illumos-gate/usr/src/boot/sys/boot/ofw/libofw/
H A Dofw_copy.c117 ofw_copyin(const void *src, vm_offset_t dest, const size_t len) argument
124 bcopy(src, (void *)dest, len);
129 ofw_copyout(const vm_offset_t src, void *dest, const size_t len) argument
131 bcopy((void *)src, dest, len);
/illumos-gate/usr/src/boot/sys/boot/uboot/lib/
H A Dcopy.c149 uboot_copyin(const void *src, vm_offset_t dest, const size_t len) argument
151 bcopy(src, (void *)dest, len);
156 uboot_copyout(const vm_offset_t src, void *dest, const size_t len) argument
158 bcopy((void *)src, dest, len);
/illumos-gate/usr/src/test/zfs-tests/tests/functional/inheritance/
H A Dinherit_001_pos.ksh9 # 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.
174 function get_mntpt_val #dataset src index
177 typeset src=$2
183 if [[ $src == "local" ]]; then
192 elif [[ $src == "default" ]]; then
199 while [[ $src != $dataset ]]; do
218 function verify_prop_val #property dataset src index
222 typeset src=$3
233 exp_val=`get_mntpt_val $dataset $src
[all...]

Completed in 199 milliseconds

<<11121314151617181920>>