HomeSort by: relevance | last modified time | path
    Searched refs:sign (Results 1 - 25 of 203) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/sys/arch/hppa/spmath/
setovfl.c 52 sgl_setoverflow(unsigned int sign)
60 if (sign) {
67 if (sign==0) {
74 Sgl_setinfinity(result,sign);
78 Sgl_setlargest(result,sign);
82 Sgl_setinfinity(result,sign);
86 dbl_floating_point dbl_setoverflow(unsigned int sign)
94 if (sign) {
102 if (sign==0) {
110 Dbl_setinfinity(result,sign);
    [all...]
mpyaccs.c 53 int carry, sign; local in function:mpyaccs
63 sign = result_hi ^ temp.rslt_hi;
65 if (sign >= 0 && (temp.rslt_hi ^ result_hi) < 0) overflow = true;
divsim.c 52 int sign, op1_sign; local in function:divsim
60 /* get sign of result */
61 sign = opnd1 ^ opnd2;
92 if (sign>0 && result_lo<0) {
109 if (sign<0) result_lo = -result_lo;
divsir.c 52 int sign, op1_sign; local in function:divsir
60 /* get sign of result */
61 sign = opnd1 ^ opnd2;
92 if (sign>0 && result_lo<0) {
101 if (sign<0) result_lo = -result_lo;
divsfm.c 52 register int sign, op1_sign; local in function:divsfm
60 /* get sign of result */
61 sign = opnd1 ^ opnd2;
107 if (sign<0) result_lo = -result_lo;
divsfr.c 52 int sign, op1_sign; local in function:divsfr
60 /* get sign of result */
61 sign = opnd1 ^ opnd2;
102 if (sign<0) result_lo = -result_lo;
  /src/lib/libc/time/
leapseconds.awk 51 sign = "23:59:60\t+"
53 sign = "23:59:59\t-"
63 printf "Leap\t%s\t%s\t%s\t%s\tS\n", year, month, day, sign
  /src/lib/libm/noieee_src/
n_tanh.c 80 double t, sign; local in function:tanh
86 sign=copysign(one,x);
90 return(copysign(one-two/(expm1(x+x)+two),sign));
92 {t= -expm1(-(x+x)); return(copysign(t/(two-t),sign));}
94 { t = big+x; return(copysign(x,sign));} /* ??? -ragge */
96 return (sign+1.0E-37); /* raise the INEXACT flag */
98 return(sign); /* x is +- INF */
n_sinh.c 112 double t, sign; local in function:sinh
116 sign=copysign(one,x);
119 {t=expm1(x); return(copysign((t+t/(one+t))*half,sign));}
124 return(copysign(scalb(one+expm1((x-mln2hi)-mln2lo),max),sign));
127 return( expm1(x)*sign );
n_cbrt.c 48 * leading 32 bits of that floating point number (i.e., sign, exponent,
83 mexp,sign; local in function:cbrt
95 sign=px[n0]&0x80000000; /* sign= sign(x) */
96 px[n0] ^= sign; /* x=|x| */
125 /* retore the sign bit */
126 pt[n0] |= sign;
  /src/lib/libm/src/
s_rintl.c 61 int ex, sign; local in function:rintl
72 sign = expsign >> 15;
81 x += shift[sign];
82 x -= shift[sign];
85 * If the result is +-0, then it must have the same sign as x, but
86 * the above calculation doesn't always give this. Fix up the sign.
89 return (zero[sign]);
e_sqrt.c 97 int32_t sign = (int)0x80000000; local in function:__ieee754_sqrt
110 if(((ix0&(~sign))|ix1)==0) return x;/* sqrt(+-0) = +-0 */
129 ix0 += ix0 + ((ix1&sign)>>31);
135 ix0 += ix0 + ((ix1&sign)>>31);
147 ix0 += ix0 + ((ix1&sign)>>31);
152 r = sign;
158 if(((t1&sign)==(u_int32_t)sign)&&(s1&sign)==0) s0 += 1;
164 ix0 += ix0 + ((ix1&sign)>>31)
    [all...]
s_cbrt.c 46 u_int32_t sign; local in function:cbrt
50 sign=hx&0x80000000; /* sign= sign(x) */
51 hx ^=sign;
84 /* retore the sign bit */
86 SET_HIGH_WORD(t,high|sign);
s_cbrtf.c 43 u_int32_t sign; local in function:cbrtf
47 sign=hx&0x80000000; /* sign= sign(x) */
48 hx ^=sign;
68 /* retore the sign bit */
70 SET_FLOAT_WORD(t,high|sign);
  /src/sys/arch/powerpc/fpu/
fpu_implode.c 165 * to the sign of the overflowing result. If false, overflow is to go
169 toinf(struct fpemu *fe, int sign)
186 inf = sign == 0;
190 inf = sign;
197 round_int(struct fpn *fp, int *cx, int rn, int sign, int odd)
217 if (!sign)
221 if (sign)
237 int sign, exp, tmp_cx; local in function:fpu_ftoi
239 sign = fp->fp_sign;
245 sign = 1
289 int sign, exp, tmp_cx; local in function:fpu_ftox
343 u_int sign = fp->fp_sign << 31; local in function:fpu_ftos
442 u_int sign = fp->fp_sign << 31; local in function:fpu_ftod
    [all...]
  /src/sys/arch/sparc/fpu/
fpu_implode.c 159 * to the sign of the overflowing result. If false, overflow is to go
163 toinf(struct fpemu *fe, int sign)
180 inf = sign == 0;
184 inf = sign;
200 int sign, exp; local in function:fpu_ftoi
202 sign = fp->fp_sign;
225 if (i >= ((u_int)0x80000000 + sign))
227 return (sign ? -i : i);
234 return (0x7fffffff + sign);
248 int sign, exp local in function:fpu_ftox
296 u_int sign = fp->fp_sign << 31; local in function:fpu_ftos
378 u_int sign = fp->fp_sign << 31; local in function:fpu_ftod
436 u_int sign = fp->fp_sign << 31; local in function:fpu_ftoq
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
floatditf.c 28 // All other cases begin by extracting the sign and absolute value of a
29 rep_t sign = 0; local in function:__floatditf
32 sign = signBit;
46 // Insert the sign bit and return
47 return fromRep(result | sign);
floatsidf.c 30 // All other cases begin by extracting the sign and absolute value of a
31 rep_t sign = 0; local in function:__floatsidf
33 sign = signBit;
49 // Insert the sign bit and return
50 return fromRep(result | sign);
floatsitf.c 28 // All other cases begin by extracting the sign and absolute value of a
29 rep_t sign = 0; local in function:__floatsitf
32 sign = signBit;
46 // Insert the sign bit and return
47 return fromRep(result | sign);
floatsisf.c 30 // All other cases begin by extracting the sign and absolute value of a
31 rep_t sign = 0; local in function:__floatsisf
33 sign = signBit;
55 // Insert the sign bit and return
56 return fromRep(result | sign);
  /src/sys/arch/m68k/fpe/
fpu_implode.c 152 * to the sign of the overflowing result. If false, overflow is to go
156 toinf(struct fpemu *fe, int sign)
173 inf = (sign == 0);
177 inf = sign;
193 int sign, exp; local in function:fpu_ftoi
195 sign = fp->fp_sign;
223 if (i >= ((uint32_t)0x80000000 + sign))
225 return (sign ? -i : i);
232 return (0x7fffffff + sign);
242 uint32_t sign = fp->fp_sign << 31 local in function:fpu_ftos
326 uint32_t sign = fp->fp_sign << 31; local in function:fpu_ftod
388 uint32_t sign = fp->fp_sign << 31; local in function:fpu_ftox
    [all...]
  /src/usr.sbin/mopd/mopprobe/
Makefile 7 COPTS.mopprobe.c+= -Wno-pointer-sign
  /src/lib/libc/gdtoa/
g_dfmt.c 45 ULong bits[2], *L, sign; local in function:g_dfmt
59 sign = L[_0] & 0x80000000L;
68 if (sign)
72 if (L[_1] == 0 && (L[_0] ^ sign) == 0 /*d == 0.*/) {
93 if (sign)
98 return g__fmt(buf, s, se, decpt, sign, bufsize);
g_xLfmt.c 61 ULong bits[2], *L, sign; local in function:g_xLfmt
75 sign = L[_0] & 0x80000000L;
85 if (sign)
99 if (sign)
116 return g__fmt(buf, s, se, decpt, sign, bufsize);
g_ffmt.c 45 ULong bits[1], *L, sign; local in function:g_ffmt
59 sign = L[0] & 0x80000000L;
66 if (sign)
96 return g__fmt(buf, s, se, decpt, sign, bufsize);

Completed in 20 milliseconds

1 2 3 4 5 6 7 8 9