Lines Matching defs:table
656 * regulator_list_voltage_table - List voltages with table based mapping
661 * Regulators with table based mapping between voltages and
909 * regulator_find_closest_bigger - helper to find offset in ramp delay table
912 * @table: table with supported ramp delays
913 * @num_sel: number of entries in the table
914 * @sel: Pointer to store table offset
921 int regulator_find_closest_bigger(unsigned int target, const unsigned int *table,
927 max = table[0];
930 if (table[s] > max) {
931 max = table[s];
934 if (table[s] >= target) {
935 if (!found || table[s] - target < tmp - target) {
936 tmp = table[s];