Lines Matching defs:out
59 int out = 0;
65 while (out < width) {
69 if (out + c*2 > width)
72 dst[out++] = 0x80;
76 dst[out++] = table[c * 2];
77 dst[out++] = table[(c * 2) + 1];
83 out = 0;
84 while (out < width) {
91 if (out + c*2 > width)
94 dst[out] = dst[out - pitch];
95 out++;
101 t = dst[out - pitch] + (table[c * 2] - 128);
103 dst[out] = t;
104 out++;
105 t = dst[out - pitch] + (table[(c * 2) + 1] - 128);
107 dst[out] = t;
108 out++;
120 int out = 0;
128 out = 0;
129 while (out < width) {
135 out += c * 2;
139 t = dst[out] + (((table[c * 2] - 128)*3) >> 2);
141 dst[out] = t;
142 out++;
143 t = dst[out] + (((table[(c * 2) + 1] - 128)*3) >> 2);
145 dst[out] = t;
146 out++;