Lines Matching refs:to
110 unsigned char * from, unsigned char * to) in read3byte() argument
113 to[0] = from[0]; in read3byte()
114 to[1] = 0; in read3byte()
115 to[2] = from[1]; in read3byte()
116 to[3] = from[2]; in read3byte()
118 to[0] = from[0]; in read3byte()
119 to[1] = from[1]; in read3byte()
120 to[2] = from[2]; in read3byte()
121 to[3] = 0; in read3byte()
123 to[0] = 0; in read3byte()
124 to[1] = from[0]; in read3byte()
125 to[2] = from[1]; in read3byte()
126 to[3] = from[2]; in read3byte()
131 unsigned char * from, unsigned char * to) in write3byte() argument
134 to[0] = from[0]; in write3byte()
135 to[1] = from[2]; in write3byte()
136 to[2] = from[3]; in write3byte()
138 to[0] = from[0]; in write3byte()
139 to[1] = from[1]; in write3byte()
140 to[2] = from[2]; in write3byte()
142 to[0] = from[1]; in write3byte()
143 to[1] = from[2]; in write3byte()
144 to[2] = from[3]; in write3byte()