Searched refs:sign (Results 76 - 100 of 244) sorted by relevance

12345678910

/freebsd-9.3-release/contrib/gcc/config/soft-fp/
H A Dextended.h72 unsigned long sign : 1; member in struct:_FP_UNION_E::__anon1116
80 unsigned sign : 1;
96 X##_s = _flo.bits.sign; \
108 X##_s = _flo->bits.sign; \
120 _flo.bits.sign = X##_s; \
137 _flo->bits.sign = X##_s; \
269 unsigned sign : 1; member in struct:_FP_UNION_E::__anon1117
275 unsigned sign : 1;
289 X##_s = _flo.bits.sign; \
300 X##_s = _flo->bits.sign; \
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dscm-exp.c48 int sign = 0; local
53 { /* leading sign */
56 sign = str[0];
102 if (sign == '-')
/freebsd-9.3-release/lib/msun/src/
H A Ds_ceill.c65 u.e = u.bits.sign ? -0.0 : 1.0;
70 if (!u.bits.sign) {
87 if (!u.bits.sign) {
H A Ds_floorl.c65 u.e = u.bits.sign ? -1.0 : 0.0;
70 if (u.bits.sign) {
87 if (u.bits.sign) {
H A Ds_cosl.c56 z.bits.sign = 0;
H A Ds_logbl.c33 u.bits.sign = 1;
H A Ds_truncl.c50 u.e = zero[u.bits.sign];
H A Ds_nextafterl.c51 ux.bits.sign = uy.bits.sign;
H A Ds_remquol.c78 sx = ux.bits.sign;
79 sxy = sx ^ uy.bits.sign;
80 ux.bits.sign = 0; /* |x| */
81 uy.bits.sign = 0; /* |y| */
139 /* convert back to floating value and restore the sign */
140 if((hx|lx)==0) { /* return sign(x)*0 */
157 ux.bits.sign = 0;
172 ux.bits.sign ^= sx;
H A De_jn.c74 sgn = (n&1)&(hx>>31); /* even n -- 0, odd n -- sign(x) */
218 int32_t sign; local
227 sign = 1;
230 sign = 1 - ((n&1)<<1);
233 if(n==1) return(sign*__ieee754_y1(x));
269 if(sign>0) return b; else return -b;
/freebsd-9.3-release/contrib/gdtoa/
H A Dg_ddfmt.c124 z->sign = 1 - z->sign;
129 z->sign = 1;
167 b = g__fmt(buf, s, se, decpt, z->sign, bufsize);
H A Dprintf.c0125 int sign;
174 b->sign = u->us[_0] & 0x8000;
235 b->sign = u->ui[_0] & 0x80000000L;
490 b->sign = u->ui[_0] & 0x80000000L;
584 if (rounding > FPI_Round_near && b->sign)
690 len, prec, prec1, psign, rv, sign, width;
720 alt=dot=lead0=left=len=prec=psign=sign=width=0;
727 sign = conv;
788 sign = '-';
814 sign
[all...]
/freebsd-9.3-release/tools/tools/zfsboottest/
H A DMakefile18 -W -Wextra -Wno-sign-compare -Wno-unused-parameter
/freebsd-9.3-release/contrib/sendmail/libsm/
H A Dvfprintf.c188 char sign; /* sign prefix (' ', '+', '-', or \0) */ local
360 sign = '\0';
373 if (!sign)
374 sign = ' ';
397 sign = '+';
476 sign = '\0';
487 sign = '-';
516 if (sign)
517 *p++ = sign;
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/bn/
H A Dbn_gcd.c230 int sign; local
269 sign = -1;
274 * -sign*X*a == B (mod |n|),
275 * sign*Y*a == A (mod |n|).
291 * (1) -sign*X*a == B (mod |n|),
292 * (2) sign*Y*a == A (mod |n|)
346 * (1) -sign*X*a == B (mod |n|),
347 * (2) sign*Y*a == A (mod |n|),
352 /* -sign*(X + Y)*a == B - A (mod |n|) */
362 /* sign*(
548 int sign; local
[all...]
/freebsd-9.3-release/contrib/binutils/gas/config/
H A Datof-ieee.c188 generic_floating_point_number.sign = '\0';
278 if (generic_floating_point_number.sign == '+')
288 if (generic_floating_point_number.sign == 0)
327 else if (generic_floating_point_number.sign == 'P')
368 else if (generic_floating_point_number.sign == 'N')
411 Bit 15 is sign bit.
445 word1 = ((generic_floating_point_number.sign == '+')
561 word1 = ((generic_floating_point_number.sign == '+')
634 don't get a sticky sign bit after shifting right, and that
/freebsd-9.3-release/contrib/wpa/src/tls/
H A Dlibtommath.c116 int used, alloc, sign; member in struct:__anon4438
378 * and sign to positive */
381 a->sign = MP_ZPOS;
405 a->sign = MP_ZPOS;
415 /* get sign of both inputs */
416 sa = a->sign;
417 sb = b->sign;
422 /* add their magnitudes, copy the sign */
423 c->sign = sa;
429 /* the sign o
[all...]
/freebsd-9.3-release/sys/cddl/dev/dtrace/
H A Ddtrace_debug.c237 int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot; local
261 sign = 0; dot = 0; dwidth = 0; upper = 0;
271 sign = 1;
351 sign = 1;
392 sign = 0;
400 if (sign)
437 sign = 1;
443 sign = 0;
479 if (sign && (intmax_t)num < 0) {
/freebsd-9.3-release/contrib/ntp/libntp/
H A Dsnprintf.c996 char sign = 0; local
1009 sign = '-';
1010 else if (flags & PRINT_F_PLUS) /* Do a sign. */
1011 sign = '+';
1013 sign = ' ';
1046 - ((sign != 0) ? 1 : 0) /* Will we print a sign? */
1069 if (sign != 0) /* Sign. */
1070 OUTCHAR(str, *len, size, sign);
1104 char sign local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libuutil/common/
H A Duu_strtoint.c42 strtoint(const char *s_arg, uint64_t *out, uint32_t base, int sign) argument
67 if (!sign)
132 if (sign) {
/freebsd-9.3-release/sys/boot/ficl/
H A Dmath64.c69 ** the sign of the divisor or is zero, and the quotient is rounded to
71 ** the remainder carries the sign of the dividend or is zero and the
133 ** Returns TRUE if the specified DPINT has its sign bit set.
172 int sign = 1; local
176 sign = -sign;
182 sign = -sign;
187 if (sign > 0)
419 ** 64 bit right shift (unsigned - no sign exten
[all...]
/freebsd-9.3-release/contrib/compiler-rt/lib/
H A Dextendsfdf2.c94 // Break a into a sign and representation of the absolute value
97 const src_rep_t sign = aRep & srcSignMask; local
135 const dst_rep_t result = absResult | (dst_rep_t)sign << (dstBits - srcBits);
H A Dtruncdfsf2.c100 // Break a into a sign and representation of the absolute value
103 const src_rep_t sign = aRep & srcSignMask; local
165 const dst_rep_t result = absResult | sign >> (srcBits - dstBits);
/freebsd-9.3-release/crypto/heimdal/lib/hx509/
H A Dtest_windows.in85 ${hxtool} crl-sign \
/freebsd-9.3-release/lib/libc/stdio/
H A Dvfprintf.c317 char sign; /* sign prefix (' ', '+', '-', or \0) */ local
328 * A: 'sign' holds this value if present; '\0' otherwise
354 int realsz; /* field size expanded by dprec, sign, etc */
497 sign = '\0';
508 if (!sign)
509 sign = ' ';
530 sign = '+';
627 sign = '\0';
638 sign
[all...]

Completed in 317 milliseconds

12345678910