Searched refs:from (Results 1 - 25 of 974) sorted by relevance

1234567891011>>

/opensolaris-onvv-gate/usr/src/cmd/audio/include/
H A Darchdep.h50 #define DECODE_SHORT(from, to) *((short *)(to)) = *((short *)(from))
51 #define DECODE_LONG(from, to) *((long *)(to)) = *((long *)(from))
52 #define DECODE_FLOAT(from, to) *((float *)(to)) = *((float *)(from))
53 #define DECODE_DOUBLE(from, to) *((double *)(to)) = *((double *)(from))
57 #define DECODE_SHORT(from, to) \
58 ((char *)(to))[0] = ((char *)(from))[
[all...]
H A Daiff.h145 #define AUDIO_AIFF_FILE2HOST_INT(from, to) \
146 *((int *)(to)) = *((int *)(from))
147 #define AUDIO_AIFF_FILE2HOST_SHORT(from, to) \
148 *((short *)(to)) = *((short *)(from))
149 #define AUDIO_AIFF_HOST2FILE_INT(from, to) \
150 *((int *)(to)) = *((int *)(from))
151 #define AUDIO_AIFF_HOST2FILE_SHORT(from, to) \
152 *((short *)(to)) = *((short *)(from))
154 #define AUDIO_AIFF_FILE2HOST_INT(from, to) \
155 (*to) = ((((*from) >> 2
[all...]
H A Dwav.h121 #define AUDIO_WAV_FILE2HOST_INT(from, to) \
122 (*to) = ((((*from) >> 24) & 0xff) | (((*from) & 0xff) << 24) | \
123 (((*from) >> 8) & 0xff00) | (((*from) & 0xff00) << 8))
124 #define AUDIO_WAV_FILE2HOST_SHORT(from, to) \
125 (*to) = ((((*from) >> 8) & 0xff) | (((*from) & 0xff) << 8))
126 #define AUDIO_WAV_HOST2FILE_INT(from, to) \
127 AUDIO_WAV_FILE2HOST_INT((from), (t
[all...]
/opensolaris-onvv-gate/usr/src/lib/libmail/common/
H A Dstrmove.c40 * void strmove(char *to, char *from)
49 strmove(char *to, char *from) argument
51 while ((*to++ = *from++) != 0)
H A Dxgetenv.c49 * xgetenv() returns the environment value from the
55 * Xgetenv() returns the environment value from the
173 reduce(char *from) argument
175 char *to = from;
176 char *svfrom = from;
179 while (*from &&isspace((int)*from))
180 from++;
183 while (*from && (*from !
[all...]
/opensolaris-onvv-gate/usr/src/cmd/vi/port/
H A Dbcopy.c33 bcopy(from, to, count)
35 unsigned char *from, *to;
43 unsigned char *from, *to;
49 unsigned char *from, *to;
53 *to++ = *from++;
/opensolaris-onvv-gate/usr/src/cmd/ipf/lib/common/
H A Dbcopywrap.c3 int bcopywrap(from, to, size)
4 void *from, *to;
7 bcopy((caddr_t)from, (caddr_t)to, size);
H A Dkmemcpywrap.c4 int kmemcpywrap(from, to, size)
5 void *from, *to;
10 ret = kmemcpy((caddr_t)to, (u_long)from, size);
/opensolaris-onvv-gate/usr/src/cmd/ipf/examples/
H A Dexample.34 block in from any to any
6 # pass through packets to and from localhost.
8 pass in from 127.0.0.1/32 to 127.0.0.1/32
13 pass in from 10.1.3.1/32 to any
14 pass in from 10.1.3.2/32 to any
15 pass in from 10.1.3.3/32 to any
16 pass in from 10.1.3.4/32 to any
17 pass in from 10.1.3.5/32 to any
18 pass in from 10.1.0.13/32 to any
19 pass in from 10.
[all...]
H A Dexample.54 # allow packets coming from foo to bar through.
6 pass in from 10.1.1.2 to 10.2.1.1
8 # allow any TCP packets from the same subnet as foo is on through to host
11 pass in proto tcp from 10.2.2.2/24 to 10.1.1.2/32 port = 6667
13 # allow in UDP packets which are NOT from port 53 and are destined for
16 pass in proto udp from 10.2.2.2 port != 53 to localhost
20 block in proto icmp from any to any icmp-type unreach
25 pass in from any to any with ipopts
H A Dexample.12 # block all incoming TCP packets on le0 from host 10.1.1.1 to any destination.
4 block in on le0 proto tcp from 10.1.1.1/32 to any
H A Dexample.22 # block all outgoing TCP packets on le0 from any host to port 23 of
5 block out on le0 proto tcp from any to 10.1.1.3/32 port = 23
H A Dexample.44 block in proto icmp from any to any
H A Dserver8 pass in quick on le0 from 128.1.40.0/24 to any
9 block in log quick on le0 from any to any
10 block in log quick on le1 from 128.1.1.0/24 to any
11 pass in quick on le1 from any to any
/opensolaris-onvv-gate/usr/src/psm/promif/ieee1275/common/
H A Dprom_path.c32 prom_path_gettoken(register char *from, register char *to) argument
34 while (*from) {
35 switch (*from) {
41 return (from);
43 *to++ = *from++;
47 return (from);
62 char *from = tmp; local
83 if ((uintptr_t)from > (uint32_t)-1) {
84 from = promplat_alloc(OBP_MAXPATHLEN);
85 if (from
159 prom_strip_options(char *from, char *to) argument
[all...]
/opensolaris-onvv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dcp_key_cnt.c12 * Export of this software from the United States of America may
13 * require a specific license from the United States Government.
42 krb5_copy_keyblock_contents(krb5_context context, const krb5_keyblock *from, krb5_keyblock *to) argument
47 if (to != NULL && from != NULL) {
48 to->contents = (krb5_octet *)malloc(from->length);
52 ret = krb5_copy_keyblock_data(context, from, to);
/opensolaris-onvv-gate/usr/src/lib/libbc/libc/gen/common/
H A Dswab.c28 /* from UCB 4.2 83/06/27 */
36 swab(from, to, n)
37 register char *from, *to;
45 #define STEP temp = *from++,*to++ = *from++,*to++ = temp
/opensolaris-onvv-gate/usr/src/lib/libtecla/
H A DREADME30 The source code here is derived from libtecla version 1.6 plus one bug
31 fix (6353321) from 1.6.1 .
/opensolaris-onvv-gate/usr/src/uts/common/gssapi/mechs/krb5/krb5/krb/
H A Dcopy_key.c12 * Export of this software from the United States of America may
13 * require a specific license from the United States Government.
46 const krb5_keyblock *from, krb5_keyblock *to)
51 if (from == NULL || to == NULL)
54 if ((to->contents == NULL || from->contents == NULL) &&
55 from->length > 0)
58 to->magic = from->magic;
59 to->enctype = from->enctype;
60 to->length = from->length;
63 if (from
45 krb5_copy_keyblock_data(krb5_context context, const krb5_keyblock *from, krb5_keyblock *to) argument
[all...]
/opensolaris-onvv-gate/usr/src/head/audio/
H A Dau.h117 #define AUDIO_AU_FILE2HOST(from, to) *((long *)(to)) = *((long *)(from))
119 #define AUDIO_AU_FILE2HOST(from, to) \
120 ((char *)(to))[0] = ((char *)(from))[3]; \
121 ((char *)(to))[1] = ((char *)(from))[2]; \
122 ((char *)(to))[2] = ((char *)(from))[1]; \
123 ((char *)(to))[3] = ((char *)(from))[0];
127 #define AUDIO_AU_HOST2FILE(from, to) AUDIO_AU_FILE2HOST((from), (to))
/opensolaris-onvv-gate/usr/src/cmd/oamuser/user/
H A Dmovedir.c49 * Move directory contents from one place to another
52 move_dir(char *from, char *to, char *login) argument
53 /* directory to move files from */
65 if (access(from, F_OK) == 0) { /* home dir exists */
69 from, to);
72 errmsg(M_NOSPACE, from, to);
77 * Check that to dir is not a subdirectory of from
79 len = strlen(from);
80 if (strncmp(from, to, len) == 0 &&
86 if (stat(from,
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/t/run/
H A Dnoswitch.t12 ok 2 - read from aliased DATA filehandle
/opensolaris-onvv-gate/usr/src/head/iso/
H A Dstdarg_c99.h67 #define va_copy(to, from) __va_copy(to, from)
/opensolaris-onvv-gate/usr/src/lib/libast/common/comp/
H A Dlink.c39 link(const char* from, const char* to)
41 NoP(from);
/opensolaris-onvv-gate/usr/src/uts/common/syscall/
H A Duucopy.c31 uucopy(const void *from, void *to, size_t size) argument
38 ucopy(from, to, size);
46 uucopystr(const char *from, char *to, size_t size) argument
54 ucopystr(from, to, size, &len);

Completed in 230 milliseconds

1234567891011>>