Symbol: EEP_SCALE
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
1449
for (i = 0; i < (2 * (pwr - PWR_MIN) / EEP_SCALE + 1); i++)
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
1768
uint16_t scaleValue = EEP_SCALE;
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
1781
lRatio = (target - srcLeft) * EEP_SCALE / (srcRight - srcLeft);
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
1784
rv = targetLeft * (scaleUp ? EEP_SCALE : 1);
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
1785
} else if (lRatio > EEP_SCALE) {
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
1787
rv = targetRight * (scaleUp ? EEP_SCALE : 1);
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
1789
rv = (lRatio * targetRight + (EEP_SCALE - lRatio) *
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
1795
rv *= EEP_SCALE;
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
1817
uint32_t target = value * EEP_SCALE;
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
1824
if (target < (uint32_t)(*pList * EEP_SCALE - EEP_DELTA)) {
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
1834
if (target > (uint32_t)(listEndValue * EEP_SCALE + EEP_DELTA)) {
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
1846
if (abs(pList[i] * EEP_SCALE - (int32_t) target) < EEP_DELTA) {
sys/dev/ath/ath_hal/ar5211/ar5211_reset.c
1856
if (target < (uint32_t)(pList[i + 1] * EEP_SCALE - EEP_DELTA)) {
sys/dev/ath/ath_hal/ar5212/ar5111.c
366
lRatio = (target - srcLeft) * EEP_SCALE / (srcRight - srcLeft);
sys/dev/ath/ath_hal/ar5212/ar5111.c
370
} else if (lRatio > EEP_SCALE) {
sys/dev/ath/ath_hal/ar5212/ar5111.c
374
rv = (lRatio * targetRight + (EEP_SCALE - lRatio) *
sys/dev/ath/ath_hal/ar5212/ar5111.c
375
targetLeft) / EEP_SCALE;
sys/dev/ath/ath_hal/ar5212/ar5111.c
496
for (i = 0; i < (2 * (pwr - PWR_MIN) / EEP_SCALE + 1); i++) {
sys/dev/ath/ath_hal/ar5212/ar5212_reset.c
2544
lRatio = (target - srcLeft) * EEP_SCALE / (srcRight - srcLeft);
sys/dev/ath/ath_hal/ar5212/ar5212_reset.c
2548
} else if (lRatio > EEP_SCALE) {
sys/dev/ath/ath_hal/ar5212/ar5212_reset.c
2552
rv = (lRatio * targetRight + (EEP_SCALE - lRatio) *
sys/dev/ath/ath_hal/ar5212/ar5212_reset.c
2553
targetLeft) / EEP_SCALE;
sys/dev/ath/ath_hal/ar5212/ar5212_reset.c
2628
uint32_t target = v * EEP_SCALE;
sys/dev/ath/ath_hal/ar5212/ar5212_reset.c
2634
if (target < (uint32_t)(lp[0] * EEP_SCALE - EEP_DELTA)) {
sys/dev/ath/ath_hal/ar5212/ar5212_reset.c
2638
if (target > (uint32_t)(ep[-1] * EEP_SCALE + EEP_DELTA)) {
sys/dev/ath/ath_hal/ar5212/ar5212_reset.c
2649
if (udiff(lp[0] * EEP_SCALE, target) < EEP_DELTA) {
sys/dev/ath/ath_hal/ar5212/ar5212_reset.c
2657
if (target < (uint32_t)(lp[1] * EEP_SCALE - EEP_DELTA)) {
tools/tools/ath/athprom/athprom.c
456
fprintf(fd, "%2d.%02d", v / EEP_SCALE, v % EEP_SCALE);
tools/tools/ath/athrd/athrd.c
1283
u_int32_t target = v * EEP_SCALE;
tools/tools/ath/athrd/athrd.c
1289
if (target < (u_int32_t)(lp[0] * EEP_SCALE - EEP_DELTA)) {
tools/tools/ath/athrd/athrd.c
1293
if (target > (u_int32_t)(ep[-1] * EEP_SCALE + EEP_DELTA)) {
tools/tools/ath/athrd/athrd.c
1304
if (abs(lp[0] * EEP_SCALE - target) < EEP_DELTA) {
tools/tools/ath/athrd/athrd.c
1312
if (target < (u_int32_t)(lp[1] * EEP_SCALE - EEP_DELTA)) {
tools/tools/ath/athrd/athrd.c
1378
lRatio = (target - srcLeft) * EEP_SCALE / (srcRight - srcLeft);
tools/tools/ath/athrd/athrd.c
1382
} else if (lRatio > EEP_SCALE) {
tools/tools/ath/athrd/athrd.c
1386
rv = (lRatio * targetRight + (EEP_SCALE - lRatio) *
tools/tools/ath/athrd/athrd.c
1387
targetLeft) / EEP_SCALE;