Lines Matching refs:to
4 Permission to use, copy, modify, and distribute this
10 used in advertising or publicity pertaining to distribution
16 SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
67 _XkbCopyFromReadBuffer(XkbReadBufferPtr from, char *to, int size)
71 if ((from == NULL) || (from->error) || (to == NULL) || (size < 1) ||
74 memcpy(to, from->data, (size_t)size);
81 _XkbReadCopyKeySyms(int *wire, KeySym * to, int num_words)
84 *to++ = *wire++;
90 _XkbReadBufferCopyKeySyms(XkbReadBufferPtr from, KeySym * to, int num_words)
94 _XkbReadCopyKeySyms((int *) from->data, to, num_words);
100 _XkbWriteCopyKeySyms(register KeySym * from, CARD32 *to, int len)
103 *to++ = (CARD32) *from++;
111 _XkbReadCopyData32(int *wire, long *to, int num_words)
114 *to++ = *wire++;
120 _XkbReadBufferCopy32(XkbReadBufferPtr from, long *to, int num_words)
124 _XkbReadCopyData32((int *) from->data, to, num_words);
130 _XkbWriteCopyData32(register unsigned long *from, CARD32 *to, int len)
133 *to++ = (CARD32) *from++;