Searched refs:to (Results 1 - 25 of 715) sorted by relevance

1234567891011>>

/osnet-11/usr/src/lib/libmail/common/
H A Dabspath.c4 * The contents of this file are subject to the terms of the
24 * Use is subject to license terms.
34 * abspath - expand a path relative to some `.'
37 * string *abspath(char *path, char *dot, string *to)
42 * returned in "to". Otherwise, the value of "path" is
43 * returned in "to".
49 abspath(char *path, char *dot, string *to) argument
52 to = s_append(to, path);
54 to
[all...]
H A Dstrmove.c4 * The contents of this file are subject to the terms of the
24 * Use is subject to license terms.
40 * void strmove(char *to, char *from)
45 * It does it left-to-right, a byte at a time.
49 strmove(char *to, char *from) argument
51 while ((*to++ = *from++) != 0)
H A Ds_string.c4 * The contents of this file are subject to the terms of the
24 * Use is subject to license terms.
38 /* global to this file */
111 * take a larger increment to avoid mallocing too often
166 sp->ptr = sp->end - (size_t)1; /* point to NULL terminator */
170 /* convert string to lower case */
187 /* append a char array to a string */
189 s_append(string *to, char *from) argument
191 if (to == NULL)
192 to
214 s_seq_read(FILE *fp, string *to, int lineortoken) argument
287 string *to = s_new(); local
300 string *to = s_clone(from); local
317 s_read_line(FILE *fp, string *to) argument
351 s_read_to_eof(FILE *fp, string *to) argument
388 s_parse(string *from, string *to) argument
[all...]
H A Dxgetenv.c4 * The contents of this file are subject to the terms of the
24 * Use is subject to license terms.
137 * environ to point to the local area.
175 char *to = from; local
184 *to++ = *from++;
192 *to++ = *from++;
200 *to++ = *from++;
203 while ((to > svfrom) && isspace((int)to[
[all...]
/osnet-11/usr/src/lib/libnsl/dial/
H A Dgetargs.c4 * The contents of this file are subject to the terms of the
25 * Use is subject to license terms.
37 * generate a vector of pointers (arps) to the
40 * s -> string to analyze -- s GETS MODIFIED
86 char *str, *to, *cp; local
91 for (to = str; *str; str++) {
113 *to++ = '\\';
114 *to++ = 'N';
116 *to++ = (char)num;
121 *to
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dcp_key_cnt.c11 * export to obtain such a license before exporting.
13 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
19 * to distribution of the software without specific, written prior
37 krb5_copy_keyblock_contents(krb5_context context, const krb5_keyblock *from, krb5_keyblock *to) argument
39 return krb5int_c_copy_keyblock_contents(context, from, to);
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dptrmove.c4 * The contents of this file are subject to the terms of the
51 * Return -1 if the region to move is out of bounds or the target
58 unsigned int start, unsigned int finish, unsigned int to)
63 if (to < start) {
64 reverse(array, to, start-1);
66 reverse(array, to, finish);
67 } else if (finish < to && to <= length) {
69 reverse(array, finish+1, to-1);
70 reverse(array, start, to
57 __m_ptr_move(void **array, unsigned int length, unsigned int start, unsigned int finish, unsigned int to) argument
[all...]
/osnet-11/usr/src/lib/libast/common/comp/
H A Dlink.c39 link(const char* from, const char* to)
42 NoP(to);
H A Drename.c38 mvdir(const char* from, const char* to)
50 argv[2] = to;
65 rename(const char* from, const char* to)
71 while (link(from, to))
77 return mvdir(from, to);
81 if (unlink(to))
87 return mvdir(from, to);
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dptrmove.c4 * The contents of this file are subject to the terms of the
48 * Return -1 if the region to move is out of bounds or the target
54 __m_ptr_move(array, length, start, finish, to)
56 unsigned length, start, finish, to;
61 array, length, start, finish, to
67 if (to < start) {
68 reverse(array, to, start-1);
70 reverse(array, to, finish);
71 } else if (finish < to && to <
[all...]
/osnet-11/usr/src/lib/libdns_sd/java/i386/
H A DMakefile4 # The contents of this file are subject to the terms of the
23 # Use is subject to license terms.
31 CPPFLAGS += -_gcc=-Wno-pointer-to-int-cast -_gcc=-Wno-int-to-pointer-cast
/osnet-11/usr/src/lib/libdns_sd/java/sparc/
H A DMakefile4 # The contents of this file are subject to the terms of the
23 # Use is subject to license terms.
31 CPPFLAGS += -_gcc=-Wno-pointer-to-int-cast -_gcc=-Wno-int-to-pointer-cast
/osnet-11/usr/src/lib/libcurses/screen/
H A Dwinsdelln.c4 * The contents of this file are subject to the terms of the
24 * Use is subject to license terms.
50 * id < 0 : number of lines to delete
51 * id > 0 : number of lines to insert
57 int endy, endx, to, fr, num_lines, dir; local
69 * function to do it in one fell swoop.
86 * Check that the amount of lines to delete aren't larger
88 * don't have to re-compute if the if comes out true.
96 * moving "to" the new place. This is the offset which
97 * we have to r
[all...]
H A DmemSset.c4 * The contents of this file are subject to the terms of the
24 * Use is subject to license terms.
48 * additional memory routine to deal with memory areas in units of chtypes.
58 char *to; /* %r6 */ local
64 to = (char *)(sfrom + 1);
68 /* bcopy (count, to, from) */
75 char *to; /* 0(%fp) */
83 to = (char *)(sfrom + 1);
88 /* them in myself below to the regs where they belong. */
90 asm(" movw 0(%fp),%r1"); /* to */
110 memcpy(char *to, char *from, int count) argument
[all...]
/osnet-11/usr/src/lib/libldap4/misc/
H A Dldapfilter.conf4 * Use is subject to license terms.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Attribute/Handlers/demo/
H A Ddemo4.pl4 : Purpose(to store max storage capacity for files)
9 sub foo : Purpose(to foo all data before barring it) { }
/osnet-11/usr/src/lib/libc/port/gen/
H A Dswab.c4 * The contents of this file are subject to the terms of the
37 #define STEP (void)((temp = *from++), (*to++ = *from++), (*to++ = temp))
40 swab_impl(const char *from, char *to, ssize_t n) argument
47 /* round to multiple of 8 */
59 * enables us to preserve historical behavior even in the
61 * point to the same location, bytes are swapped in place.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/
H A DCopy.pm6 # to distribute the revised code under the same terms as Perl itself.
24 # package has not yet been updated to work with Perl 5.004, and so it
25 # would be a Bad Thing for the CPAN module to grab it and replace this
44 my($from, $to) = @_;
52 $to = ':' . $to if $to !~ /:/;
55 return File::Spec->catfile($to, basename($from));
63 my $to = shift;
70 my $to_a_handle = (ref($to)
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A Dtestlib.pm22 ExtUtils::testlib - add blib/* directories to @INC
31 desirable to test it bypassing C<make test>. By adding
35 to a test program the intermediate directories used by C<make> are
36 added to @INC.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dless.pm7 less - perl pragma to request less of something from the compiler
16 to make certain trade-offs, such as perhaps
/osnet-11/usr/src/lib/libc/i386/gen/
H A Dstrncpy.s4 * The contents of this file are subject to the terms of the
23 * Use is subject to license terms.
31 / Copies s2 to s1, truncating or null-padding to always copy n bytes
52 / to check if a 32-bit word data contains a null byte or not:
77 movl (%eax), %edx / move 1 word from (%eax) to %edx
86 movl %edx, (%edi) / copy this word to (%edi)
101 movb %dl, (%edi) / copy %dl to (%edi)
114 movb %dl, (%edi) / copy %dl to (%edi)
124 movl %esi, %ecx / %ecx = length to cop
[all...]
/osnet-11/usr/src/lib/libc/i386/unwind/
H A Dunwind_frame.s4 * The contents of this file are subject to the terms of the
23 * Use is subject to license terms.
44 movl (%ebp), %edx / pop first frame [ back to f1() ]
45 movl (%edx), %ebp / pop second frame [ back to f2() ]
58 * restored frame, then jump to _t_cancel(fp) again from the restored frame.
68 lea 4(%eax), %esp / stk points to old frame
76 * Ignore the argument; jump to _t_cancel(fp) with caller's fp
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/x2p/
H A Dutil.c87 safecpy(char *to, register char *from, register int len) argument
89 register char *dest = to;
94 return to;
97 /* copy a string up to some (non-backslashed) delimiter, if any */
100 cpytill(register char *to, register char *from, register int delim) argument
102 for (; *from; from++,to++) {
107 *to++ = *from++;
111 *to = *from;
113 *to = '\0';
119 cpy2(register char *to, registe argument
[all...]
/osnet-11/usr/src/lib/libc/sparc/gen/
H A Dalloca.s4 * The contents of this file are subject to the terms of the
33 ! o0: # bytes of space to allocate, already rounded to 0 mod 8
37 ! we want to bump %sp by the requested size
38 ! then copy the tmp area to its new home
44 sub %sp, %o0, %sp ! bump to new value
47 subcc %o2, %o1, %o5 ! number of bytes to move
50 st %o4, [%sp + %o1] ! store to new temp area
/osnet-11/usr/src/lib/libc/sparcv9/gen/
H A Dalloca.s4 * The contents of this file are subject to the terms of the
32 ! o0: # bytes of space to allocate, already rounded to 0 mod 8
36 ! we want to bump %sp by the requested size
37 ! then copy the tmp area to its new home
43 sub %sp, %o0, %sp ! bump to new value
47 subcc %o2, %o1, %o5 ! number of bytes to move
50 stx %o4, [%g5 + %o1] ! store to new temp area

Completed in 53 milliseconds

1234567891011>>