Home | History | Annotate | Download | only in libjpeg

Lines Matching defs:out

53  * used here have proved out well in experimental comparisons, but better ones
588 * Gems II (James Arvo, ed. Academic Press, 1991). Thomas points out that
1101 * completely out of hand; Aaron Giles reports that error limiting improves
1114 int in, out;
1123 out = 0;
1124 for (in = 0; in < STEPSIZE; in++, out++) {
1125 table[in] = out; table[-in] = -out;
1128 for (; in < STEPSIZE*3; in++, out += (in&1) ? 0 : 1) {
1129 table[in] = out; table[-in] = -out;
1131 /* Clamp the rest to final out value (which is (MAXJSAMPLE+1)/8) */
1133 table[in] = out; table[-in] = -out;