Searched refs:sign (Results 1 - 25 of 299) sorted by relevance

1234567891011>>

/freebsd-11-stable/lib/libc/include/
H A Dfpmath.h46 unsigned int sign :1; member in struct:IEEEf2bits::__anon4657
48 unsigned int sign :1;
67 unsigned int sign :1; member in struct:IEEEd2bits::__anon4658
72 unsigned int sign :1;
/freebsd-11-stable/lib/msun/src/
H A Ds_signbit.c39 return (u.bits.sign);
48 return (u.bits.sign);
57 return (u.bits.sign);
H A Ds_fabsl.c41 u.bits.sign = 0;
H A Ds_copysignl.c40 ux.bits.sign = uy.bits.sign;
H A Ds_cbrtf.c36 u_int32_t sign; local
40 sign=hx&0x80000000; /* sign= sign(x) */
41 hx ^=sign;
51 SET_FLOAT_WORD(t,sign|((high&0x7fffffff)/3+B2));
53 SET_FLOAT_WORD(t,sign|(hx/3+B1));
H A Ds_rintl.c59 int ex, sign; local
70 sign = expsign >> 15;
79 x += shift[sign];
80 x -= shift[sign];
83 * If the result is +-0, then it must have the same sign as x, but
84 * the above calculation doesn't always give this. Fix up the sign.
87 return (zero[sign]);
H A Ds_fmaxf.c49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[0].bits.sign].f);
H A Ds_fmaxl.c51 if (u[0].bits.sign != u[1].bits.sign)
52 return (u[0].bits.sign ? y : x);
H A Ds_fminf.c49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[1].bits.sign].f);
H A Ds_fminl.c51 if (u[0].bits.sign != u[1].bits.sign)
52 return (u[1].bits.sign ? y : x);
H A De_sqrt.c98 int32_t sign = (int)0x80000000; local
111 if(((ix0&(~sign))|ix1)==0) return x;/* sqrt(+-0) = +-0 */
130 ix0 += ix0 + ((ix1&sign)>>31);
136 ix0 += ix0 + ((ix1&sign)>>31);
148 ix0 += ix0 + ((ix1&sign)>>31);
153 r = sign;
159 if(((t1&sign)==sign)&&(s1&sign)==0) s0 += 1;
165 ix0 += ix0 + ((ix1&sign)>>3
[all...]
H A Ds_cbrt.c45 u_int32_t sign; local
49 sign=hx&0x80000000; /* sign= sign(x) */
50 hx ^=sign;
74 INSERT_WORDS(t,sign|((high&0x7fffffff)/3+B2),0);
76 INSERT_WORDS(t,sign|(hx/3+B1),0);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dcopysign.c10 unsigned int sign : 1; member in struct:__anon1456::__anon1457
20 unsigned int sign : 1; member in struct:__anon1456::__anon1458
55 unsigned int sign : 1; member in struct:__anon1460::__anon1461
70 unsigned int sign : 1; member in struct:__anon1460::__anon1462
90 unsigned int sign : 1; member in struct:__anon1464::__anon1465
97 unsigned int sign:1; member in struct:__anon1464::__anon1466
117 unsigned int sign : 1; member in struct:__anon1467::__anon1468
125 unsigned int sign:1; member in struct:__anon1467::__anon1469
140 a.number.sign =b.number.sign;
[all...]
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dcopysign.c10 unsigned int sign : 1; member in struct:__anon639::__anon640
20 unsigned int sign : 1; member in struct:__anon639::__anon641
55 unsigned int sign : 1; member in struct:__anon643::__anon644
70 unsigned int sign : 1; member in struct:__anon643::__anon645
90 unsigned int sign : 1; member in struct:__anon647::__anon648
97 unsigned int sign:1; member in struct:__anon647::__anon649
117 unsigned int sign : 1; member in struct:__anon650::__anon651
125 unsigned int sign:1; member in struct:__anon650::__anon652
140 a.number.sign =b.number.sign;
[all...]
/freebsd-11-stable/lib/libc/powerpc/
H A D_fpmath.h36 unsigned int sign :1; member in struct:IEEEl2bits::__anon6691
38 unsigned int sign :1;
/freebsd-11-stable/lib/libc/powerpc64/
H A D_fpmath.h36 unsigned int sign :1; member in struct:IEEEl2bits::__anon6698
38 unsigned int sign :1;
/freebsd-11-stable/lib/libc/mips/
H A D_fpmath.h36 unsigned int sign :1; member in struct:IEEEl2bits::__anon6672
38 unsigned int sign :1;
/freebsd-11-stable/lib/libc/sparc64/fpu/
H A Dfpu_implode.c159 * to the sign of the overflowing result. If false, overflow is to go
163 toinf(struct fpemu *fe, int sign) argument
179 inf = sign == 0;
183 inf = sign;
201 int sign, exp; local
203 sign = fp->fp_sign;
225 if (i >= ((u_int)0x80000000 + sign))
227 return (sign ? -i : i);
234 return (0x7fffffff + sign);
250 int sign, ex local
302 u_int sign = fp->fp_sign << 31; local
390 u_int sign = fp->fp_sign << 31; local
452 u_int sign = fp->fp_sign << 31; local
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfloatditf.c27 // All other cases begin by extracting the sign and absolute value of a
28 rep_t sign = 0;
31 sign = signBit;
45 // Insert the sign bit and return
46 return fromRep(result | sign);
H A Dfloatsidf.c28 // All other cases begin by extracting the sign and absolute value of a
29 rep_t sign = 0;
31 sign = signBit;
47 // Insert the sign bit and return
48 return fromRep(result | sign);
H A Dfloatsitf.c27 // All other cases begin by extracting the sign and absolute value of a
28 rep_t sign = 0;
31 sign = signBit;
45 // Insert the sign bit and return
46 return fromRep(result | sign);
/freebsd-11-stable/contrib/gdtoa/
H A Dg_dfmt.c43 ULong bits[2], *L, sign; local
57 sign = L[_0] & 0x80000000L;
66 if (sign)
70 if (L[_1] == 0 && (L[_0] ^ sign) == 0 /*d == 0.*/) {
91 if (sign)
94 return g__fmt(buf, s, se, decpt, sign, bufsize);
H A Dg_xLfmt.c59 ULong bits[2], *L, sign; local
73 sign = L[_0] & 0x80000000L;
83 if (sign)
97 if (sign)
112 return g__fmt(buf, s, se, decpt, sign, bufsize);
H A Dg_xfmt.c63 ULong bits[2], sign; local
78 sign = L[_0] & 0x8000;
88 if (sign)
103 if (sign)
118 return g__fmt(buf, s, se, decpt, sign, bufsize);
/freebsd-11-stable/sys/powerpc/fpu/
H A Dfpu_implode.c160 * to the sign of the overflowing result. If false, overflow is to go
164 toinf(struct fpemu *fe, int sign) argument
181 inf = sign == 0;
185 inf = sign;
203 int sign, exp; local
205 sign = fp->fp_sign;
228 if (i >= ((u_int)0x80000000 + sign))
230 return (sign ? -i : i);
237 return (0x7fffffff + sign);
250 int sign, ex local
295 u_int sign = fp->fp_sign << 31; local
376 u_int sign = fp->fp_sign << 31; local
[all...]

Completed in 121 milliseconds

1234567891011>>