Lines Matching defs:in
5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
31 unsigned char in[3];
34 while(read(0, in, 3) == 3) {
35 out = to565(in[0],in[1],in[2]);
43 unsigned char in[3];
55 while(read(0, in, 3) == 3) {
56 int r = in[0] + error[i*3+0];
59 int g = in[1] + error[i*3+1];
62 int b = in[2] + error[i*3+2];
103 unsigned char in[3];
108 while(read(0, in, 3) == 3) {
109 color = to565(in[0],in[1],in[2]);