Searched refs:src (Results 576 - 600 of 1056) sorted by relevance

<<21222324252627282930>>

/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftDH.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.
52 biginteger_t src; local
72 if ((rv = dup_bigint_attr(&src, buf, buflen)) != CKR_OK)
76 copy_bigint_attr(&src, dst);
/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A Dns8390.c117 static void eth_pio_read(unsigned int src, unsigned char *dst, unsigned int cnt) argument
120 outb(src & 0xff, eth_asic_base + WD_GP2);
121 outb(src >> 8, eth_asic_base + WD_GP2);
127 outb(src, eth_nic_base + D8390_P0_RSAR0);
128 outb(src>>8, eth_nic_base + D8390_P0_RSAR1);
133 outb(src & 0xff, eth_asic_base + _3COM_DALSB);
134 outb(src >> 8, eth_asic_base + _3COM_DAMSB);
164 static void eth_pio_write(const unsigned char *src, unsigned int dst, unsigned int cnt) argument
202 outw(*((unsigned short *)src), eth_asic_base + ASIC_PIO);
203 src
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/libproc/
H A Dlibproc.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.
114 uintptr_t src = byaddr ? (uintptr_t)symtab.sym_byaddr : local
119 if (mdb_vread(symlist, symlistsz, src) == -1) {
120 mdb_warn("failed to read sorted symbols at %p", src);
/illumos-gate/usr/src/uts/common/inet/
H A Dmi.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.
142 extern MBLKP mi_tpi_conn_con(MBLKP trailer_mp, char *src,
144 extern MBLKP mi_tpi_conn_ind(MBLKP trailer_mp, char *src,
147 extern MBLKP mi_tpi_extconn_ind(MBLKP trailer_mp, char *src,
/illumos-gate/usr/src/uts/common/xen/io/
H A Dxenbus_comms.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.
196 const char *src; local
218 src = get_input_chunk(cons, prod, (char *)intf->rsp, &avail);
227 (void) memcpy(data, src, avail);
/illumos-gate/usr/src/uts/i86pc/i86hvm/io/xpv/
H A Devtchn.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 #define GET_AND_CLEAR(src, targ) { \
62 targ = *src; \
63 } while (atomic_cas_ulong(src, targ, 0) != targ); \
/illumos-gate/usr/src/cmd/mandoc/
H A Dout.c40 * Parse the *src string and store a scaling unit into *dst.
47 a2roffsu(const char *src, struct roffsu *dst, enum roffscale def) argument
52 dst->scale = strtod(src, &endptr);
53 if (endptr == src)
H A Dhtml.c720 bufcat_id(struct html *h, const char *src) argument
725 for (; '\0' != *src; src++)
726 bufncat(h, *src == ' ' ? "_" : src, 1);
/illumos-gate/usr/src/uts/common/io/
H A Dhook.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 static hook_int_t *hook_copy(hook_t *src);
210 static hook_event_int_t *hook_event_copy(hook_event_t *src);
213 static hook_family_int_t *hook_family_copy(hook_family_t *src);
1092 * Parameters: src(I) - family pointer
1098 hook_family_copy(hook_family_t *src) argument
1103 ASSERT(src != NULL);
1104 ASSERT(src->hf_name != NULL);
1110 *dst = *src;
1630 hook_event_copy(hook_event_t *src) argument
2274 hook_copy(hook_t *src) argument
[all...]
/illumos-gate/usr/src/psm/stand/cpr/sparcv9/sun4u/
H A Dbitmap.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.
271 caddr_t newvirt, src, dst, base; local
293 src = SF_DATA();
294 bcopy(src, cb_bmda, bmda_size);
295 base = src + bmda_size;
327 base = src + bmda_size;
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_typedef.c582 const char *dst, *src; local
665 src = argv[0].a_un.a_str;
667 src = typedef_join_strings(argc - 2, argv, UM_GC | UM_SLEEP);
677 if (mdb_ctf_lookup_by_name(src, &id) != 0) {
678 mdb_printf("%s does not exist\n", src);
/illumos-gate/usr/src/uts/common/inet/sctp/
H A Dsctp_hash.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.
321 sctp_find_conn(in6_addr_t *src, in6_addr_t *dst, uint32_t ports, argument
326 sctp = sctp_conn_match(&src, 1, dst, ports, zoneid, iraflags, sctps);
337 * This is called from sctp_fanout() with IP header src & dst addresses.
338 * First call sctp_conn_match() to get a match by passing in src & dst
359 in6_addr_t src; local
365 * If we get a match with the passed-in IP header src & dst addresses,
426 * Also do not add src address present in IP header
433 (ph + 1), &src);
484 sctp_fanout(in6_addr_t *src, in6_addr_t *dst, uint32_t ports, ip_recv_attr_t *ira, mblk_t *mp, sctp_stack_t *sctps, sctp_hdr_t *sctph) argument
535 in6_addr_t *src, *dst; local
[all...]
/illumos-gate/usr/src/lib/libshell/misc/
H A Dbuildksh93.sh11 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
17 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
80 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
86 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
352 # for -m32/-m64 flags see usr/src/Makefile.master, makefile symbols *_XARCH/co.
406 base="src/cmd/ksh93/"
411 base="src/lib/${lib}"
416 base="src/lib/${lib}"
421 base="src/lib/${lib}"
447 base=src/cm
[all...]
/illumos-gate/usr/src/cmd/sed/
H A Dprocess.c676 regsub(SPACE *sp, char *string, char *src) argument
692 while ((c = *src++) != '\0') {
695 else if (c == '\\' && isdigit((unsigned char)*src))
696 no = *src++ - '0';
700 if (c == '\\' && (*src == '\\' || *src == '&'))
701 c = *src++;
/illumos-gate/usr/src/uts/intel/ia32/os/
H A Dsundep.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.
167 struct memlist *src,
184 for (; src; src = src->ml_next) {
185 addr = P2ROUNDUP(src->ml_address, PAGESIZE);
186 eaddr = P2ALIGN(src->ml_address + src->ml_size, PAGESIZE);
166 copy_memlist_filter( struct memlist *src, struct memlist **dstp, void (*filter)(uint64_t *, uint64_t *)) argument
/illumos-gate/usr/src/cmd/ptools/pfiles/
H A Dpfiles.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.
54 #define copyflock(dst, src) \
55 (dst).l_type = (src).l_type; \
56 (dst).l_whence = (src).l_whence; \
57 (dst).l_start = (src).l_start; \
58 (dst).l_len = (src).l_len; \
59 (dst).l_sysid = (src).l_sysid; \
60 (dst).l_pid = (src).l_pid;
/illumos-gate/usr/src/uts/common/fs/proc/
H A Dprsubr.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.
2651 lwpsinfo_kto32(const struct lwpsinfo *src, struct lwpsinfo32 *dest) argument
2655 PR_COPY_FIELD(src, dest, pr_flag);
2656 PR_COPY_FIELD(src, dest, pr_lwpid);
2657 PR_IGNORE_FIELD(src, dest, pr_addr);
2658 PR_IGNORE_FIELD(src, dest, pr_wchan);
2659 PR_COPY_FIELD(src, dest, pr_stype);
2660 PR_COPY_FIELD(src, dest, pr_state);
2661 PR_COPY_FIELD(src, des
2678 psinfo_kto32(const struct psinfo *src, struct psinfo32 *dest) argument
[all...]
/illumos-gate/usr/src/lib/libc/capabilities/sun4u-opl/common/
H A Dmemcpy.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.
117 dec %o1 ! decrement src address
135 dec %o1 ! decrement src address
142 ! check for src long word alignment
144 andcc %o1, 7, %g0 ! chk src long word alignment
148 ! Following code is for overlapping copies where src and dest
168 sub %o1, 32, %o1 ! decrease src ptr by 32
181 sub %o1, 16, %o1 ! decrease src ptr by 16
195 sub %o1, 8, %o1 ! decrease src pt
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DDNSCommon.c713 const mDNSu8 *src = name->c; local
714 while (src < limit && *src <= MAX_DOMAIN_LABEL)
716 if (*src == 0) return((mDNSu16)(src - name->c + 1));
717 src += 1 + *src;
733 const mDNSu8 *src = name->c; local
735 while (*src)
737 if (*src > MAX_DOMAIN_LABE
854 const mDNSu8 * src = append->c; local
896 const mDNSu8 * src = label->c; // Domain label we're reading local
924 const mDNSu8 *src = name->c; // Domain name we're reading local
949 const mDNSu8 * src = &UTF8Name[1]; local
979 const mDNSu8 *src; local
1097 const mDNSu8 *src = fqdn->c; local
3725 mDNSSendDNSMessage(mDNS *const m, DNSMessage *const msg, mDNSu8 *end, mDNSInterfaceID InterfaceID, UDPSocket *src, const mDNSAddr *dst, mDNSIPPort dstport, TCPSocket *sock, DomainAuthInfo *authInfo, mDNSBool useBackgroundTrafficClass) argument
[all...]
/illumos-gate/usr/src/lib/libkmf/ber_der/common/
H A Dclasn1.c325 CopyData(KMF_DATA *src, KMF_DATA *dst) argument
327 if (src && dst && src->Data != NULL && src->Length > 0) {
328 dst->Length = src->Length;
332 (void) memcpy(dst->Data, src->Data, src->Length);
480 convert_signed_to_fixed(BerValue *src, BerValue *dst) argument
484 if (dst->bv_len > src->bv_len) {
485 cnt = dst->bv_len - src
633 CopySPKI(KMF_X509_SPKI *src, KMF_X509_SPKI **dest) argument
2459 ber_copy_data(KMF_DATA *dst, KMF_DATA *src) argument
[all...]
/illumos-gate/usr/src/uts/sun4v/cpu/
H A Dniagara_copy.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.
115 * to how the src and dst is aligned and how much data needs to be moved.
127 * if( src is on long word boundary ) {
128 * medlong: src/dst aligned on 8 bytes
131 * } else { src/dst not aligned on 8 bytes
132 * if src is word aligned, ld/st words in 32-byte chunks
133 * if src is half word aligned, ld half, ld word, ld half; pack
135 * if src is byte aligned, ld byte,half,word parts; pack into long
137 * move final 0-31 bytes according to src alignmen
[all...]
/illumos-gate/usr/src/cmd/sendmail/db/hash/
H A Dhash_page.c863 u_int8_t *beg, *dest, *end, *hk, *src; local
953 src = (u_int8_t *)tdata.data + dbt->doff + dbt->dlen;
954 if (src < end && tdata.size > dbt->doff + dbt->dlen) {
956 dest = src + change;
957 memmove(dest, src, len);
1026 u_int8_t *src, *dest; local
1031 src = (u_int8_t *)(pagep) + HOFFSET(pagep);
1036 LEN_HKEYDATA(pagep, pgsize, ndx) - src;
1039 len = (HKEYDATA_DATA(P_ENTRY(pagep, ndx)) + off) - src;
1040 dest = src
1400 void *src, *dest; local
1890 u_int8_t *dest, *src; local
[all...]
/illumos-gate/usr/src/common/ctf/
H A Dctf_open.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.
93 sym_to_gelf(const Elf32_Sym *src, Elf64_Sym *dst) argument
95 dst->st_name = src->st_name;
96 dst->st_value = src->st_value;
97 dst->st_size = src->st_size;
98 dst->st_info = src->st_info;
99 dst->st_other = src->st_other;
100 dst->st_shndx = src->st_shndx;
636 const void *src; local
[all...]
/illumos-gate/usr/src/lib/storage/libg_fc/common/
H A Dgenf.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.
185 g_dump(char *hdr, uchar_t *src, int nbytes, int format) argument
205 (void) fprintf(stdout, "%02x ", src[i] & 0xff);
214 isprint(src[i]) ? src[i] : '.');
219 src += n;
896 string_dump(char *hdr, uchar_t *src, int nbytes, int format, char msg_string[]) argument
919 src[i] & 0xff);
931 isprint(src[
[all...]
/illumos-gate/usr/src/cmd/ndmpd/ndmp/
H A Dndmpd_util.c1843 * src (input) - source address
1849 ndmp_copy_addr_v3(ndmp_addr_v3 *dst, ndmp_addr_v3 *src) argument
1851 dst->addr_type = src->addr_type;
1852 switch (src->addr_type) {
1857 dst->tcp_ip_v3 = htonl(src->tcp_ip_v3);
1858 dst->tcp_port_v3 = src->tcp_port_v3;
1876 * src (input) - source address
1882 ndmp_copy_addr_v4(ndmp_addr_v4 *dst, ndmp_addr_v4 *src) argument
1886 dst->addr_type = src->addr_type;
1887 dst->tcp_len_v4 = src
[all...]

Completed in 217 milliseconds

<<21222324252627282930>>