Lines Matching defs:src
51 register int src, dst_exponent;
54 src = *srcptr;
58 if (src < 0) {
60 Int_negate(src);
65 if (src == 0) {
80 Find_ms_one_bit(src,dst_exponent);
82 if (dst_exponent >= 0) src <<= dst_exponent;
83 else src = 1 << 30;
84 Sgl_set_mantissa(result, src >> (SGL_EXP_LENGTH-1));
88 if (Int_isinexact_to_sgl(src)) {
99 Sgl_roundnearest_from_int(src,result);
122 register int src, dst_exponent;
125 src = *srcptr;
129 if (src < 0) {
131 Int_negate(src);
136 if (src == 0) {
151 Find_ms_one_bit(src,dst_exponent);
153 if (dst_exponent >= 0) src <<= dst_exponent;
154 else src = 1 << 30;
155 Dbl_set_mantissap1(resultp1, src >> DBL_EXP_LENGTH - 1);
156 Dbl_set_mantissap2(resultp2, src << (33-DBL_EXP_LENGTH));
235 * If dst_exponent = -1, src = - 2**63 so we won't need to
339 * If dst_exponent = -1, src = - 2**63 so we won't need to