ramp_table        283 drivers/leds/leds-lm3532.c static const int ramp_table[LM3532_NUM_RAMP_VALS] = { 8, 1024, 2048, 4096, 8192,
ramp_table        287 drivers/leds/leds-lm3532.c 	if (ramp_time <= ramp_table[0])
ramp_table        290 drivers/leds/leds-lm3532.c 	if (ramp_time > ramp_table[LM3532_NUM_RAMP_VALS - 1])
ramp_table        293 drivers/leds/leds-lm3532.c 	return lm3532_get_index(&ramp_table[0], LM3532_NUM_RAMP_VALS,
ramp_table         14 drivers/leds/leds-ti-lmu-common.c static const unsigned int ramp_table[16] = {2048, 262000, 524000, 1049000,
ramp_table         59 drivers/leds/leds-ti-lmu-common.c 	int size = ARRAY_SIZE(ramp_table);
ramp_table         62 drivers/leds/leds-ti-lmu-common.c 	if (usec <= ramp_table[0])
ramp_table         65 drivers/leds/leds-ti-lmu-common.c 	if (usec > ramp_table[size - 1])
ramp_table         69 drivers/leds/leds-ti-lmu-common.c 		if (usec == ramp_table[i])
ramp_table         73 drivers/leds/leds-ti-lmu-common.c 		if (usec > ramp_table[i - 1] && usec < ramp_table[i]) {
ramp_table         74 drivers/leds/leds-ti-lmu-common.c 			if (usec - ramp_table[i - 1] < ramp_table[i] - usec)