Lines Matching refs:to
108 unsigned char * from, unsigned char * to) in read3byte() argument
111 to[0] = from[0]; in read3byte()
112 to[1] = 0; in read3byte()
113 to[2] = from[1]; in read3byte()
114 to[3] = from[2]; in read3byte()
116 to[0] = from[0]; in read3byte()
117 to[1] = from[1]; in read3byte()
118 to[2] = from[2]; in read3byte()
119 to[3] = 0; in read3byte()
121 to[0] = 0; in read3byte()
122 to[1] = from[0]; in read3byte()
123 to[2] = from[1]; in read3byte()
124 to[3] = from[2]; in read3byte()
129 unsigned char * from, unsigned char * to) in write3byte() argument
132 to[0] = from[0]; in write3byte()
133 to[1] = from[2]; in write3byte()
134 to[2] = from[3]; in write3byte()
136 to[0] = from[0]; in write3byte()
137 to[1] = from[1]; in write3byte()
138 to[2] = from[2]; in write3byte()
140 to[0] = from[1]; in write3byte()
141 to[1] = from[2]; in write3byte()
142 to[2] = from[3]; in write3byte()