Lines Matching defs:table
189 * Create a default correction table for PWM values to create linear brightness
203 * more values in the table.
213 /* Fill the table using the cie1931 algorithm */
236 unsigned int *table;
256 * set a default table of brightness levels will be used.
287 * and creates a new pre-computed table.
294 * brightness-levels table, otherwise we can't interpolate
319 * Create a new table of brightness levels with all the
322 table = devm_kcalloc(dev, num_levels, sizeof(*table),
324 if (!table)
327 * Fill the interpolated table[x] = y
339 table[x] = y1 +
344 table[x2] = y2;
348 * brightness levels table and replace for the
349 * new interpolated table.
352 data->levels = table;
526 * via the PWM lookup table.
559 * not set, use the default brightness table. For the DT case,
572 "failed to setup default brightness table\n");