Lines Matching refs:wanexp
120 short wanexp; in _g721_fmult() local
130 wanexp = anexp + (srn >> 6) - 7; in _g721_fmult()
131 return ((wanexp >= 0) ? in _g721_fmult()
132 (_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g721_fmult()
134 _fmultwanmant[(srn & 077) + anmant] >> -wanexp); in _g721_fmult()
136 wanexp = anexp + (srn >> 6) - 0xFFF7; in _g721_fmult()
137 return ((wanexp >= 0) ? in _g721_fmult()
138 -((_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g721_fmult()
140 -(_fmultwanmant[(srn & 077) + anmant] >> -wanexp)); in _g721_fmult()
148 wanexp = anexp + (srn >> 6) - 7; in _g721_fmult()
149 return ((wanexp >= 0) ? in _g721_fmult()
150 -((_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g721_fmult()
152 -(_fmultwanmant[(srn & 077) + anmant] >> -wanexp)); in _g721_fmult()
154 wanexp = anexp + (srn >> 6) - 0xFFF7; in _g721_fmult()
155 return ((wanexp >= 0) ? in _g721_fmult()
156 (_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g721_fmult()
158 _fmultwanmant[(srn & 077) + anmant] >> -wanexp); in _g721_fmult()