Lines Matching refs:to
109 unsigned char * from, unsigned char * to) in read3byte() argument
112 to[0] = from[0]; in read3byte()
113 to[1] = 0; in read3byte()
114 to[2] = from[1]; in read3byte()
115 to[3] = from[2]; in read3byte()
117 to[0] = from[0]; in read3byte()
118 to[1] = from[1]; in read3byte()
119 to[2] = from[2]; in read3byte()
120 to[3] = 0; in read3byte()
122 to[0] = 0; in read3byte()
123 to[1] = from[0]; in read3byte()
124 to[2] = from[1]; in read3byte()
125 to[3] = from[2]; in read3byte()
130 unsigned char * from, unsigned char * to) in write3byte() argument
133 to[0] = from[0]; in write3byte()
134 to[1] = from[2]; in write3byte()
135 to[2] = from[3]; in write3byte()
137 to[0] = from[0]; in write3byte()
138 to[1] = from[1]; in write3byte()
139 to[2] = from[2]; in write3byte()
141 to[0] = from[1]; in write3byte()
142 to[1] = from[2]; in write3byte()
143 to[2] = from[3]; in write3byte()