Lines Matching defs:speedtables
1403 speedtables[] = {
1421 for (i = 0; speedtables[i].maxspeed != 0; i++) {
1422 if (speedtables[i].maxspeed != xscale_maxspeed)
1425 if (speed <= speedtables[i].rate[0]) {
1426 return speedtables[i].hz[0];
1429 numspeeds = speedtables[i].numspeeds;
1430 if (speed == speedtables[i].rate[numspeeds-1]) {
1431 return speedtables[i].hz[numspeeds-1];
1434 if (speed < speedtables[i].rate[j]) {
1435 return speedtables[i].hz[j-1];