Home | History | Annotate | Download | only in src

Lines Matching refs:e2

91     int e0, e1, e2, e3; /* note, at every step of the calculation, these values */
102 e2 = (inout[1] >> 1) - inout[3];
106 inout[1] = e1 + e2;
107 inout[2] = e1 - e2;
117 e2 = (block[16] >> 1) - block[48];
122 e1 += e2;
123 e2 = (e1 - (e2 << 1)); /* e1-e2 */
126 e2 += 32;
133 e2 = pred[40] + (e2 >> 6);
134 if ((uint)e2 > 0xFF) e2 = 0xFF & (~(e2 >> 31)); /* clip */
139 *(cur += width) = e2;
153 e2 = *(cur += width) + (e2 >> 6);
154 if ((uint)e2 > 0xFF) e2 = 0xFF & (~(e2 >> 31)); /* clip */
155 *cur = e2;
171 int e0, e1, e2, e3; /* note, at every step of the calculation, these values */
182 e2 = (inout[1] >> 1) - inout[3];
186 inout[1] = e1 + e2;
187 inout[2] = e1 - e2;
197 e2 = (block[16] >> 1) - block[48];
202 e1 += e2;
203 e2 = (e1 - (e2 << 1)); /* e1-e2 */
206 e2 += 32;
213 e2 = pred[24] + (e2 >> 6);
214 if ((uint)e2 > 0xFF) e2 = 0xFF & (~(e2 >> 31)); /* clip */
219 *(cur += width) = e2;
233 e2 = *(cur += width) + (e2 >> 6);
234 if ((uint)e2 > 0xFF) e2 = 0xFF & (~(e2 >> 31)); /* clip */
235 *cur = e2;