Searched refs:src (Results 76 - 100 of 437) sorted by relevance

1234567891011>>

/osnet-11/usr/src/lib/libxcurses/src/tabs/
H A DMakefile9 # 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.
28 # lib/libxcurses/src/tabs/Makefile
72 @echo use tabs in usr/src/cmd/tabs
/osnet-11/usr/src/lib/libxcurses/src/terminfo/
H A DMakefile9 # 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.
28 # lib/libxcurses/src/terminfo/Makefile
33 @echo use entries in usr/src/cmd/terminfo
/osnet-11/usr/src/lib/libxcurses/src/tput/
H A DMakefile9 # 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.
28 # lib/libxcurses/src/tput/Makefile
71 @echo use tput in usr/src/lib/libcurses
/osnet-11/usr/src/lib/libnsl/nss/
H A Dinet_pton.c37 static int inet_pton4(const char *src, uchar_t *dst);
38 static int inet_pton6(const char *src, uchar_t *dst);
42 * inet_pton(af, src, dst)
53 inet_pton(int af, const char *src, void *dst) argument
57 return (inet_pton4(src, dst));
59 return (inet_pton6(src, dst));
69 * inet_pton4(src, dst)
72 * 1 if `src' is a valid dotted quad, else 0.
82 inet_pton4(const char *src, uchar_t *dst) argument
91 while ((ch = *src
137 inet_pton6(const char *src, uchar_t *dst) argument
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/loader/i386/
H A Dbsd_pagetable.c53 fill_bsd64_pagetable (grub_uint8_t *src, grub_addr_t target) argument
64 pt4 = (grub_uint64_t *) src;
65 pt3 = (grub_uint64_t *) (src + 4096);
66 pt2 = (grub_uint64_t *) (src + 8192);
71 grub_memset (src, 0, 4096 * 3);
/osnet-11/usr/src/grub/grub2/grub-core/fs/zfs/
H A Dzfs_lzjb.c60 grub_uint8_t *src = s_start; local
67 while (dst < d_end && src < s_end)
72 copymap = *src++;
74 if (src >= s_end)
78 int mlen = (src[0] >> (NBBY - MATCH_BITS)) + MATCH_MIN;
79 int offset = ((src[0] << NBBY) | src[1]) & OFFSET_MASK;
80 src += 2;
82 if (src > s_end || cpy < (grub_uint8_t *) d_start)
88 *dst++ = *src
[all...]
/osnet-11/usr/src/lib/libresolv2/common/inet/
H A Dinet_net_pton.c47 * inet_net_pton_ipv4(src, dst, size)
62 inet_net_pton_ipv4(const char *src, u_char *dst, size_t size) { argument
68 ch = *src++;
69 if (ch == '0' && (src[0] == 'x' || src[0] == 'X')
70 && isascii((unsigned char)(src[1]))
71 && isxdigit((unsigned char)(src[1]))) {
76 src++; /*%< skip x or X. */
77 while ((ch = *src++) != '\0' && isascii(ch) && isxdigit(ch)) {
109 } while ((ch = *src
190 getbits(const char *src, int *bitsp) argument
220 getv4(const char *src, u_char *dst, int *bitsp) argument
263 inet_net_pton_ipv6(const char *src, u_char *dst, size_t size) argument
395 inet_net_pton(int af, const char *src, void *dst, size_t size) argument
[all...]
H A Dinet_cidr_pton.c45 static int inet_cidr_pton_ipv4 __P((const char *src, u_char *dst,
47 static int inet_cidr_pton_ipv6 __P((const char *src, u_char *dst,
54 * inet_cidr_pton(af, src, dst, *bits)
70 inet_cidr_pton(int af, const char *src, void *dst, int *bits) { argument
73 return (inet_cidr_pton_ipv4(src, dst, bits, 0));
75 return (inet_cidr_pton_ipv6(src, dst, bits));
85 inet_cidr_pton_ipv4(const char *src, u_char *dst, int *pbits, int ipv6) { argument
91 while (ch = *src++, (isascii(ch) && isdigit(ch))) {
100 } while ((ch = *src++) != '\0' && isascii(ch) && isdigit(ch));
113 bits = getbits(src, ipv
152 inet_cidr_pton_ipv6(const char *src, u_char *dst, int *pbits) argument
255 getbits(const char *src, int ipv6) argument
[all...]
/osnet-11/usr/src/lib/libresolv2/common/nameser/
H A Dns_ttl.c52 ns_format_ttl(u_long src, char *dst, size_t dstlen) { argument
57 secs = src % 60; src /= 60;
58 mins = src % 60; src /= 60;
59 hours = src % 24; src /= 24;
60 days = src % 7; src /= 7;
61 weeks = src; sr
97 ns_parse_ttl(const char *src, u_long *dst) argument
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/lib/Encode/CN/
H A DHZ.pm65 my ($obj, undef, $src, $pos, $trm, $chk) = @_;
74 substr($src, 0, $pos) = '';
76 my $ini_len = bytes::length($src);
79 # XXX: Is better C<$src =~ s/^\x7E// or die if ...>?
80 $src =~ s/^\x7E// if $trm eq "\x7E";
82 while (length $src) {
85 if ($src =~ s/^([\x00-\x7D\x7F])//) { # no '~' => ASCII
88 elsif ($src =~ s/^\x7E\x7E//) { # escaped tilde
91 elsif ($src =~ s/^\x7E\cJ//) { # '\cJ' == LF in ASCII
94 elsif ($src
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/video/fb/
H A Dfbblit.c40 struct grub_video_fbblit_info *src,
57 src_color = get_pixel (src, i + offset_x, j + offset_y);
59 grub_video_fb_unmap_color_int (src, src_color, &src_red, &src_green,
73 struct grub_video_fbblit_info *src,
82 bpp = src->mode_info->bytes_per_pixel;
83 srcptr = grub_video_fb_get_video_ptr (src, offset_x, offset_y);
89 GRUB_VIDEO_FB_ADVANCE_POINTER (srcptr, src->mode_info->pitch);
97 struct grub_video_fbblit_info *src,
115 srcrowskipbyte = (src->mode_info->width - width) >> 3;
116 srcrowskipbit = (src
39 grub_video_fbblit_replace(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
72 grub_video_fbblit_replace_directN(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
96 grub_video_fbblit_replace_32bit_1bit(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
167 grub_video_fbblit_replace_24bit_1bit(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
256 grub_video_fbblit_replace_16bit_1bit(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
325 grub_video_fbblit_replace_8bit_1bit(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
394 grub_video_fbblit_replace_BGRX8888_RGBX8888(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
437 grub_video_fbblit_replace_BGRX8888_RGB888(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
481 grub_video_fbblit_replace_BGR888_RGBX8888(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
529 grub_video_fbblit_replace_BGR888_RGB888(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
570 grub_video_fbblit_replace_RGBX8888_RGB888(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
612 grub_video_fbblit_replace_RGB888_RGBX8888(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
655 grub_video_fbblit_replace_index_RGBX8888(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
698 grub_video_fbblit_replace_index_RGB888(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
740 grub_video_fbblit_blend(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
801 grub_video_fbblit_blend_BGRA8888_RGBA8888(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
882 grub_video_fbblit_blend_BGR888_RGBA8888(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
963 grub_video_fbblit_blend_RGBA8888_RGBA8888(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
1035 grub_video_fbblit_blend_RGB888_RGBA8888(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
1108 grub_video_fbblit_blend_index_RGBA8888(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
1178 grub_video_fbblit_blend_XXXA8888_1bit(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
1277 grub_video_fbblit_blend_XXX888_1bit(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
1377 grub_video_fbblit_blend_XXX565_1bit(struct grub_video_fbblit_info *dst, struct grub_video_fbblit_info *src, int x, int y, int width, int height, int offset_x, int offset_y) argument
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Dstrlcat.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.
34 * Appends src to the dstsize buffer at dst. The append will never
41 strlcat(char *dst, const char *src, size_t dstsize) argument
46 size_t l2 = strlen(src);
56 (void) memcpy(dst + l1, src, copied);
/osnet-11/usr/src/lib/fm/libasr/common/
H A Dasr_mem.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.
38 extern char *asr_strdup(const char *src);
/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dstrl.c36 ** string src to dst, nul terminating the result. If size == 0,
41 ** The result is strlen(src). You can detect truncation (not all
52 ** src -- source string
56 ** strlen(src)
60 sm_strlcpy(dst, src, size)
62 register const char *src;
68 return strlen(src);
69 for (i = 0; i < size && (dst[i] = src[i]) != 0; i++)
72 if (src[i] == '\0')
75 return i + strlen(src
[all...]
/osnet-11/usr/src/lib/libast/common/comp/
H A Dswab.c54 swab(const void* src, void* dst, ssize_t n)
57 swapmem(1, src, dst, n & ~1);
/osnet-11/usr/src/lib/udapl/udapl_tavor/sparc/
H A Ddapl_tavor_atomic_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.
38 dapls_atomic_assign_64(uint64_t src, uint64_t *dst)
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A Dudp.h10 in_addr src; member in struct:udp_pseudo_hdr
17 uint16_t src; member in struct:udphdr
/osnet-11/usr/src/lib/libumem/common/
H A Dvmem_mmap.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 vmem_mmap_alloc(vmem_t *src, size_t size, int vmflags) argument
49 ret = vmem_alloc(src, size, vmflags | vmem_extra_flags);
53 vmem_free(src, ret, size);
66 vmem_mmap_free(vmem_t *src, void *addr, size_t size) argument
70 vmem_free(src, addr, size);
75 vmem_mmap_top_alloc(vmem_t *src, size_t size, int vmflags) argument
81 ret = vmem_alloc(src, size, VM_NOSLEEP);
94 ret = _vmem_extend_alloc(src, bu
[all...]
/osnet-11/usr/src/lib/libxcurses/src/tic/
H A DMakefile9 # 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.
28 # lib/libxcurses/src/tic/Makefile
78 @echo use tic and untic in usr/src/lib/libcurses
/osnet-11/usr/src/grub/grub-0.97/
H A Dinstall-sh67 src=
167 for src
170 case $src in
171 -*) src=./$src ;;
175 dst=$src
176 src=
185 # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
187 # if $src (and thus $dsttmp) contains '*'.
188 if test ! -f "$src"
[all...]
/osnet-11/usr/src/lib/libproc/common/
H A Dpr_statvfs.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.
41 statvfs_32_to_n(statvfs32_t *src, statvfs_t *dest) argument
43 dest->f_bsize = src->f_bsize;
44 dest->f_frsize = src->f_frsize;
45 dest->f_blocks = src->f_blocks;
46 dest->f_bfree = src->f_bfree;
47 dest->f_bavail = src->f_bavail;
48 dest->f_files = src->f_files;
49 dest->f_ffree = src
[all...]
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dcharset.h49 const grub_uint8_t *src, grub_size_t srcsize,
80 grub_utf16_to_utf8 (grub_uint8_t *dest, const grub_uint16_t *src, argument
87 grub_uint32_t code = *src++;
105 /* *src may be valid. Don't eat it. */
106 src--;
153 grub_latin1_to_utf8 (grub_uint8_t *dest, const grub_uint8_t *src, argument
158 if (!(*src & 0x80))
159 *dest++ = *src;
162 *dest++ = (*src >> 6) | 0xC0;
163 *dest++ = (*src
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/disk/
H A DAFSplitter.c27 gcry_err_code_t AF_merge (const gcry_md_spec_t * hash, grub_uint8_t * src,
32 diffuse (const gcry_md_spec_t * hash, grub_uint8_t * src, argument
50 grub_memcpy (temp + sizeof (IV), src + hash->mdlen * i, hash->mdlen);
59 grub_memcpy (temp + sizeof (IV), src + hash->mdlen * i, padding);
69 AF_merge (const gcry_md_spec_t * hash, grub_uint8_t * src, grub_uint8_t * dst, argument
82 grub_crypto_xor (bufblock, src + (blocksize * i), bufblock, blocksize);
85 grub_crypto_xor (dst, src + (i * blocksize), bufblock, blocksize);
/osnet-11/usr/src/lib/efcode/engine/
H A Dinterface.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.
196 clone_environment(fcode_env_t *src, void *private) argument
200 if (!src) {
201 src = initial_env;
202 src->private = private;
203 return (src);
207 src->private = private;
208 if (src->my_self || src
[all...]
/osnet-11/usr/src/lib/libc/sparc/gen/
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.
60 andcc %o1, 3, %o5 ! is src word aligned
62 cmp %o5, 2 ! is src half-word aligned
64 cmp %o5, 3 ! src is byte aligned
67 stb %o3, [%o0] ! move a byte to align src
74 .s2algn:lduh [%o1], %o3 ! know src is 2 byte alinged
95 dec 4, %o3 ! avoid reading beyond tail of src
116 dec 4, %o3 ! avoid reading beyond tail of src
139 dec 4, %o3 ! avoid reading beyond tail of src
[all...]

Completed in 88 milliseconds

1234567891011>>