Lines Matching refs:wanexp
123 short wanexp; in _g723_fmult() local
133 wanexp = anexp + (srn >> 6) - 7; in _g723_fmult()
134 return ((wanexp >= 0) ? in _g723_fmult()
135 (_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g723_fmult()
137 _fmultwanmant[(srn & 077) + anmant] >> -wanexp); in _g723_fmult()
139 wanexp = anexp + (srn >> 6) - 0xFFF7; in _g723_fmult()
140 return ((wanexp >= 0) ? in _g723_fmult()
141 -((_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g723_fmult()
143 -(_fmultwanmant[(srn & 077) + anmant] >> -wanexp)); in _g723_fmult()
151 wanexp = anexp + (srn >> 6) - 7; in _g723_fmult()
152 return ((wanexp >= 0) ? in _g723_fmult()
153 -((_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g723_fmult()
155 -(_fmultwanmant[(srn & 077) + anmant] >> -wanexp)); in _g723_fmult()
157 wanexp = anexp + (srn >> 6) - 0xFFF7; in _g723_fmult()
158 return ((wanexp >= 0) ? in _g723_fmult()
159 (_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g723_fmult()
161 _fmultwanmant[(srn & 077) + anmant] >> -wanexp); in _g723_fmult()