Home | History | Annotate | Download | only in jpeg

Lines Matching defs:table

208   int * error_limiter;		/* table for clamping the applied error */
1091 * Initialize the error-limiting transfer function (lookup table).
1109 /* Allocate and fill in the error_limiter table */
1112 int * table;
1115 table = (int *) (*cinfo->mem->alloc_small)
1117 table += MAXJSAMPLE; /* so can index -MAXJSAMPLE .. +MAXJSAMPLE */
1118 cquantize->error_limiter = table;
1124 table[in] = out; table[-in] = -out;
1128 table[in] = out; table[-in] = -out;
1132 table[in] = out; table[-in] = -out;
1150 /* Force next pass to zero the color index table */
1207 /* Make the error-limit table if we didn't already. */
1305 /* Might as well create the error-limiting table too. */