Searched refs:CORDIC_FLOAT (Results 1 - 6 of 6) sorted by relevance

/linux-master/include/linux/
H A Dcordic.h26 #define CORDIC_FLOAT(X) (((X) >= 0) \ macro
/linux-master/lib/math/
H A Dcordic.c63 if (CORDIC_FLOAT(theta) > 90) {
66 } else if (CORDIC_FLOAT(theta) < -90) {
/linux-master/drivers/net/wireless/broadcom/b43/
H A Dphy_lp.c1791 buf[i] = CORDIC_FLOAT((sample.i * max) & 0xFF) << 8;
1792 buf[i] |= CORDIC_FLOAT((sample.q * max) & 0xFF);
H A Dphy_n.c1563 samples[i].q = CORDIC_FLOAT(samples[i].q * max);
1564 samples[i].i = CORDIC_FLOAT(samples[i].i * max);
/linux-master/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/
H A Dphy_lcn.c3377 i_samp = (u16)(CORDIC_FLOAT(tone_samp.i * max_val) & 0x3ff);
3378 q_samp = (u16)(CORDIC_FLOAT(tone_samp.q * max_val) & 0x3ff);
H A Dphy_n.c23072 tone_buf[t].q = (s32)CORDIC_FLOAT(tone_buf[t].q * max_val);
23073 tone_buf[t].i = (s32)CORDIC_FLOAT(tone_buf[t].i * max_val);

Completed in 230 milliseconds