Lines Matching refs:wanexp
118 short wanexp; in _g721_fmult() local
128 wanexp = anexp + (srn >> 6) - 7; in _g721_fmult()
129 return ((wanexp >= 0) ? in _g721_fmult()
130 (_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g721_fmult()
132 _fmultwanmant[(srn & 077) + anmant] >> -wanexp); in _g721_fmult()
134 wanexp = anexp + (srn >> 6) - 0xFFF7; in _g721_fmult()
135 return ((wanexp >= 0) ? in _g721_fmult()
136 -((_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g721_fmult()
138 -(_fmultwanmant[(srn & 077) + anmant] >> -wanexp)); in _g721_fmult()
146 wanexp = anexp + (srn >> 6) - 7; in _g721_fmult()
147 return ((wanexp >= 0) ? in _g721_fmult()
148 -((_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g721_fmult()
150 -(_fmultwanmant[(srn & 077) + anmant] >> -wanexp)); in _g721_fmult()
152 wanexp = anexp + (srn >> 6) - 0xFFF7; in _g721_fmult()
153 return ((wanexp >= 0) ? in _g721_fmult()
154 (_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g721_fmult()
156 _fmultwanmant[(srn & 077) + anmant] >> -wanexp); in _g721_fmult()