HomeSort by relevance Sort by last modified time
    Searched refs:from (Results 1 - 25 of 956) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/cmd/audio/include/
archdep.h 50 #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))[1];
    [all...]
aiff.h 145 #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) >> 24) & 0xff) | (((*from) & 0xff) << 24) |
    [all...]
wav.h 121 #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), (to)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libmail/common/
strmove.c 40 * void strmove(char *to, char *from)
49 strmove(char *to, char *from)
51 while ((*to++ = *from++) != 0)
xgetenv.c 49 * xgetenv() returns the environment value from the
55 * Xgetenv() returns the environment value from the
173 reduce(char *from)
175 char *to = from;
176 char *svfrom = from;
179 while (*from &&isspace((int)*from))
180 from++;
183 while (*from && (*from != '=') && !isspace((int)*from)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/vi/port/
bcopy.c 33 bcopy(from, to, count)
35 unsigned char *from, *to;
43 unsigned char *from, *to;
49 unsigned char *from, *to;
53 *to++ = *from++;
  /onnv/onnv-gate/usr/src/cmd/ipf/lib/common/
bcopywrap.c 3 int bcopywrap(from, to, size)
4 void *from, *to;
7 bcopy((caddr_t)from, (caddr_t)to, size);
kmemcpywrap.c 4 int kmemcpywrap(from, to, size)
5 void *from, *to;
10 ret = kmemcpy((caddr_t)to, (u_long)from, size);
  /onnv/onnv-gate/usr/src/cmd/ipf/examples/
example.3 4 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.1.1.1/32 to an
    [all...]
example.5 4 # 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
example.1 2 # 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
example.2 2 # 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
example.4 4 block in proto icmp from any to any
server 8 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
  /onnv/onnv-gate/usr/src/psm/promif/ieee1275/common/
prom_path.c 32 prom_path_gettoken(register char *from, register char *to)
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 == NULL)
    [all...]
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
cp_key_cnt.c 12 * 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)
47 if (to != NULL && from != NULL) {
48 to->contents = (krb5_octet *)malloc(from->length);
52 ret = krb5_copy_keyblock_data(context, from, to);
  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
swab.c 28 /* 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
  /onnv/onnv-gate/usr/src/lib/libtecla/
README 30 The source code here is derived from libtecla version 1.6 plus one bug
31 fix (6353321) from 1.6.1 .
  /onnv/onnv-gate/usr/src/uts/common/gssapi/mechs/krb5/krb5/krb/
copy_key.c 12 * 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->length > 0
    [all...]
  /onnv/onnv-gate/usr/src/head/audio/
au.h 117 #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))
  /onnv/onnv-gate/usr/src/cmd/oamuser/user/
movedir.c 49 * Move directory contents from one place to another
52 move_dir(char *from, char *to, char *login)
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, &statbuf) == 0)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/run/
noswitch.t 12 ok 2 - read from aliased DATA filehandle
  /onnv/onnv-gate/usr/src/head/iso/
stdarg_c99.h 67 #define va_copy(to, from) __va_copy(to, from)
  /onnv/onnv-gate/usr/src/uts/common/syscall/
uucopy.c 31 uucopy(const void *from, void *to, size_t size)
38 ucopy(from, to, size);
46 uucopystr(const char *from, char *to, size_t size)
54 ucopystr(from, to, size, &len);
  /onnv/onnv-gate/usr/src/lib/libast/common/comp/
link.c 39 link(const char* from, const char* to)
41 NoP(from);

Completed in 5758 milliseconds

1 2 3 4 5 6 7 8 91011>>