Lines Matching refs:srn
122 int srn) in _g723_fmult() argument
128 return ((srn >= 0) ? in _g723_fmult()
129 ((srn & 077) + 1) >> (18 - (srn >> 6)) : in _g723_fmult()
130 -(((srn & 077) + 1) >> (2 - (srn >> 6)))); in _g723_fmult()
134 if (srn >= 0) { in _g723_fmult()
135 wanexp = anexp + (srn >> 6) - 7; in _g723_fmult()
137 (_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g723_fmult()
139 _fmultwanmant[(srn & 077) + anmant] >> -wanexp); in _g723_fmult()
141 wanexp = anexp + (srn >> 6) - 0xFFF7; in _g723_fmult()
143 -((_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g723_fmult()
145 -(_fmultwanmant[(srn & 077) + anmant] >> -wanexp)); in _g723_fmult()
152 if (srn >= 0) { in _g723_fmult()
153 wanexp = anexp + (srn >> 6) - 7; in _g723_fmult()
155 -((_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g723_fmult()
157 -(_fmultwanmant[(srn & 077) + anmant] >> -wanexp)); in _g723_fmult()
159 wanexp = anexp + (srn >> 6) - 0xFFF7; in _g723_fmult()
161 (_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g723_fmult()
163 _fmultwanmant[(srn & 077) + anmant] >> -wanexp); in _g723_fmult()