| /onnv/onnv-gate/usr/src/lib/libparted/common/lib/ |
| memcpy.c | 31 char const *src = srcaddr; local 34 *dest++ = *src++;
|
| /onnv/onnv-gate/usr/src/cmd/man/src/util/instant.src/tptregexp/ |
| regsub.c | 41 register char *src; local 57 src = source; 59 while ((c = *src++) != '\0') { 62 else if (c == '\\' && '0' <= *src && *src <= '9') 63 no = *src++ - '0'; 68 if (c == '\\' && (*src == '\\' || *src == '&')) 69 c = *src++;
|
| timer.c | 35 char *re, *str, *ans, *src, *dst; member in struct:try 76 one.src = argv[7]; 79 one.src = "x"; 165 tpt_regsub(r, fields.src, dbuf);
|
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.lib/in.dhcpd/tests/ |
| get_number_test.c | 9 * 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 get_number(char **src, void *dest, int len) 50 if (**src == '0') { 52 (*src)++; 54 if (**src == 'x' || **src == 'X') { 56 (*src)++; 59 while (c = **src) { 80 (*src)++ 115 char *src; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/fmli/sys/ |
| backslash.c | 9 * 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. 90 register char *src; local 94 for (dst = src = s; *src; src++) { 95 if (*src == '\\') { 96 if (p = strchr(woutbs, src[1])) { 98 src++; 100 else if (isdigit(src[1])) [all...] |
| copyfile.c | 9 * 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. 53 register FILE *src; local 57 if ((src = fopen(from, "r")) == NULL) 60 fclose(src); 64 while ((c = getc(src)) != EOF) 66 if (ferror(src)) { 67 fclose(src); 73 fclose(src); 95 copyback(from, to, src) [all...] |
| expand.c | 9 * 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. 87 * string pointed to by "src" and return a pointer to 91 expand(src) 92 char *src; 106 (void) pexpand(buf, src, '\0'); 118 register char *src; local 129 src = name; 130 while (*src && *src != eos) [all...] |
| /onnv/onnv-gate/usr/src/grub/grub-0.97/netboot/ |
| udp.h | 10 in_addr src; member in struct:udp_pseudo_hdr 17 uint16_t src; member in struct:udphdr
|
| ip.h | 18 in_addr src; member in struct:iphdr
|
| /onnv/onnv-gate/usr/src/uts/common/syscall/ |
| sysfs.c | 9 * 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. 119 char *src; local 129 osrc = src = vswp->vsw_name; 130 while (*src++) 133 if (copyout(osrc, cbuf, src - osrc))
|
| /onnv/onnv-gate/usr/src/uts/common/fs/zfs/ |
| zle.c | 8 * 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 uchar_t *src = s_start; local 41 uchar_t *s_end = src + s_len; 44 while (src < s_end && dst < d_end - 1) { 45 uchar_t *first = src; 47 if (src[0] == 0) { 48 uchar_t *last = src + (256 - n); 49 while (src < MIN(last, s_end) && src[0] == 0 69 uchar_t *src = s_start; local [all...] |
| lzjb.c | 8 * 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 uchar_t *src = s_start; local 60 while (src < (uchar_t *)s_start + s_len) { 68 if (src > (uchar_t *)s_start + s_len - MATCH_MAX) { 69 *dst++ = *src++; 72 hash = (src[0] << 16) + (src[1] << 8) + src[2]; 76 offset = (intptr_t)(src - *hp) & OFFSET_MASK 100 uchar_t *src = s_start; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/mdb/common/mdb/ |
| mdb_value.c | 8 * 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. 70 const char *src = (const char *)&data->mvd_data; local 97 bcopy(src + off, dst, nbytes);
|
| /onnv/onnv-gate/usr/src/cmd/sgs/libelf/common/ |
| cook.c | 8 * 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. 118 register char *src = elf->ed_ident; local 131 if ((sz = (size_t)(src - (char *)elf->ed_image) % szof) == 0) 133 dst = src - sz; 155 if (memmove((void *)dst, (const void *)src, elf->ed_fsz) != (void *)dst)
|
| getdata.c | 8 * 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 Elf_Data src; local 216 src.d_buf = (Elf_Void *)(elf->ed_ident + d->db_off); 217 src.d_size = d->db_fsz; 218 src.d_type = d->db_data.d_type; 219 src.d_version = elf->ed_version; 260 if (d->db_data.d_size <= src.d_size) { 286 if (elf32_xlatetom(&d->db_data, &src, elf->ed_encode) == 0) 289 if (elf64_xlatetom(&d->db_data, &src, elf->ed_encode) == 0 [all...] |
| clscook.c | 8 * 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. 224 Elf_Data dst, src; local 253 src.d_buf = (Elf_Void *)elf->ed_ident; 254 src.d_type = ELF_T_EHDR; 255 src.d_size = fsz; 256 src.d_version = elf->ed_version; 262 (elf_xlatetom(&dst, &src, elf->ed_encode) == 0)) { 301 Elf_Data dst, src; local 333 src.d_buf = (Elf_Void *)(elf->ed_ident + eh->e_phoff) 361 Elf_Data dst, src; local [all...] |
| /onnv/onnv-gate/usr/src/common/net/dhcp/ |
| udp_sum.c | 9 * 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, 67 ck.src = *src;
|
| /onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/ |
| zfs_lzjb.c | 37 uchar_t *src = s_start; local 46 copymap = *src++; 49 int mlen = (src[0] >> (NBBY - MATCH_BITS)) + MATCH_MIN; 50 int offset = ((src[0] << NBBY) | src[1]) & OFFSET_MASK; 51 src += 2; 57 *dst++ = *src++;
|
| /onnv/onnv-gate/usr/src/uts/i86pc/dboot/ |
| dboot_elfload.c | 8 * 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. 80 paddr_t src; local 162 src = (uintptr_t)PGETBYTES(phdr->p_offset); 170 (void *)(uintptr_t)src, (size_t)phdr->p_filesz);
|
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
| snoop_igmp.c | 9 * 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. 131 struct in_addr *src; local 151 src = (struct in_addr *)&qry[1]; 152 while (srccnt > 0 && rem >= sizeof (*src)) { 153 rem -= sizeof (*src); 156 inet_ntop(AF_INET, &src->s_addr, addrstr, INET_ADDRSTRLEN)); 159 src++; 180 struct in_addr *src; local 209 src = (struct in_addr *)&grh[1] [all...] |
| /onnv/onnv-gate/usr/src/uts/common/krtld/ |
| kobj_subr.c | 8 * 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. 72 caddr_t src = (caddr_t)src_arg; local 75 if (src < dest && (src + count) > dest) { 78 *(dest + count) = *(src + count); 81 *dest++ = *src++; 86 stand_strlcat(char *dst, const char *src, size_t dstsize) 91 size_t l2 = strlen(src); 101 bcopy(src, dst + l1, copied) [all...] |
| /onnv/onnv-gate/usr/src/cmd/ipf/lib/common/ |
| ipft_ef.c | 11 lnth proto source destination src port dst port 76 char src[16], dst[16], sprt[16], dprt[16]; local 89 if (sscanf(lbuf, "%7s %7s %15s %15s %15s %15s", len, prot, src, dst, 92 len, prot, src, dst, sprt, dprt) != 7) 119 (void) inet_aton(src, &ip->ip_src);
|
| ipft_td.c | 99 char src[32], dst[32], misc[256], time[32], link1[32], link2[32]; local 112 if ((n = sscanf(lbuf, "%31s > %31s: %255s", src, dst, misc)) != 3) 114 time, src, dst, misc)) != 4) 116 link1, link2, src, dst, misc)) != 5) { 119 time, link1, link2, src, dst, misc); 125 s = strrchr(src, '.'); 127 (void) inet_aton(src, &ip->ip_src); 133 (void) inet_aton(src, &ip->ip_dst); 138 (void) inet_aton(src, &ip->ip_src); 139 (void) inet_aton(src, &ip->ip_dst) [all...] |
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/SDBM_File/sdbm/ |
| pair.c | 170 register char *src = pag + ino[i + 1]; local 171 register int zoo = dst - src; 179 #define MOVB *--dst = *--src 196 src -= m; 197 memmove(dst, src, m); 200 *--dst = *--src;
|
| /onnv/onnv-gate/usr/src/cmd/tsol/updatehome/ |
| setupfiles.c | 8 * 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. 348 char src[MAXPATHLEN]; local 392 if (snprintf(src, sizeof (src), "%s/%s", min_home, target) > 393 sizeof (src) - 1) { 394 dprintf("setupfiles copy path %s", src); 395 dprintf("greater than %d\n", sizeof (src)); 401 if (access(src, R_OK) != 0) { 405 dprintf("setupfiles copy unable to access %s\n", src); 459 char src[MAXPATHLEN]; local [all...] |