Lines Matching refs:srn
117 int srn) in _g721_fmult() argument
123 return ((srn >= 0) ? in _g721_fmult()
124 ((srn & 077) + 1) >> (18 - (srn >> 6)) : in _g721_fmult()
125 -(((srn & 077) + 1) >> (2 - (srn >> 6)))); in _g721_fmult()
129 if (srn >= 0) { in _g721_fmult()
130 wanexp = anexp + (srn >> 6) - 7; 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()
138 -((_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g721_fmult()
140 -(_fmultwanmant[(srn & 077) + anmant] >> -wanexp)); in _g721_fmult()
147 if (srn >= 0) { in _g721_fmult()
148 wanexp = anexp + (srn >> 6) - 7; 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()
156 (_fmultwanmant[(srn & 077) + anmant] << wanexp) in _g721_fmult()
158 _fmultwanmant[(srn & 077) + anmant] >> -wanexp); in _g721_fmult()