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

1234567891011

/freebsd-11.0-release/lib/msun/src/
H A Ds_cosl.c59 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.c76 sgn = (n&1)&(hx>>31); /* even n -- 0, odd n -- sign(x) */
220 int32_t sign; local
231 sign = 1;
234 sign = 1 - ((n&1)<<1);
237 if(n==1) return(sign*__ieee754_y1(x));
273 if(sign>0) return b; else return -b;
/freebsd-11.0-release/tools/tools/zfsboottest/
H A DMakefile18 -W -Wextra -Wno-sign-compare -Wno-unused-parameter
/freebsd-11.0-release/contrib/libucl/lua/
H A DMakefile.am4 -Wall -W -Wno-unused-parameter -Wno-pointer-sign
/freebsd-11.0-release/contrib/libucl/src/
H A DMakefile.am5 -Wall -W -Wno-unused-parameter -Wno-pointer-sign
/freebsd-11.0-release/crypto/openssl/crypto/evp/
H A Dp_sign.c127 if (ctx->digest->sign == NULL) {
131 return (ctx->digest->sign(ctx->digest->type, m, m_len, sigret, siglen,
/freebsd-11.0-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-11.0-release/crypto/openssl/crypto/bn/
H A Dbn_gcd.c231 int sign; local
270 sign = -1;
275 * -sign*X*a == B (mod |n|),
276 * sign*Y*a == A (mod |n|).
292 * (1) -sign*X*a == B (mod |n|),
293 * (2) sign*Y*a == A (mod |n|)
347 * (1) -sign*X*a == B (mod |n|),
348 * (2) sign*Y*a == A (mod |n|),
353 /* -sign*(X + Y)*a == B - A (mod |n|) */
363 /* sign*(
549 int sign; local
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DAPFloat.cpp117 appropriate sign. */
600 sign = rhs.sign;
623 sign = Negative;
696 sign = rhs.sign;
785 sign != rhs.sign)
799 sign = 0;
810 sign
[all...]
/freebsd-11.0-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.
446 word1 = ((generic_floating_point_number.sign == '+')
562 word1 = ((generic_floating_point_number.sign == '+')
635 don't get a sticky sign bit after shifting right, and that
/freebsd-11.0-release/contrib/wpa/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member in struct:__anon5771
391 * and sign to positive */
394 a->sign = MP_ZPOS;
418 a->sign = MP_ZPOS;
428 /* get sign of both inputs */
429 sa = a->sign;
430 sb = b->sign;
435 /* add their magnitudes, copy the sign */
436 c->sign = sa;
442 /* the sign o
[all...]
/freebsd-11.0-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-11.0-release/libexec/rtld-elf/
H A Drtld_printf.c130 int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot; local
154 sign = 0; dot = 0; dwidth = 0; upper = 0;
164 sign = 1;
244 sign = 1;
285 sign = 0;
293 if (sign)
330 sign = 1;
336 sign = 0;
372 if (sign && (intmax_t)num < 0) {
/freebsd-11.0-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-11.0-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-11.0-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-11.0-release/crypto/heimdal/lib/hx509/
H A Dtest_windows.in85 ${hxtool} crl-sign \
/freebsd-11.0-release/crypto/openssl/crypto/ec/
H A Decp_nistputil.c164 * "sign-alternating {+-1}-representation".
186 * The sign-alternating property implies that the resulting digit values are
195 * recoded digit to *sign (0 for positive, 1 for negative) and *digit (absolute
202 void ec_GFp_nistp_recode_scalar_bits(unsigned char *sign, argument
213 *sign = s & 1;
/freebsd-11.0-release/lib/libc/stdio/
H A Dvfprintf.c318 char sign; /* sign prefix (' ', '+', '-', or \0) */ local
329 * A: 'sign' holds this value if present; '\0' otherwise
355 int realsz; /* field size expanded by dprec, sign, etc */
501 sign = '\0';
512 if (!sign)
513 sign = ' ';
534 sign = '+';
631 sign = '\0';
642 sign
[all...]
H A Dvfwprintf.c400 wchar_t sign; /* sign prefix (' ', '+', '-', or \0) */ local
410 * A: 'sign' holds this value if present; '\0' otherwise
435 int realsz; /* field size expanded by dprec, sign, etc */
574 sign = '\0';
585 if (!sign)
586 sign = ' ';
607 sign = '+';
692 sign = '\0';
703 sign
[all...]
/freebsd-11.0-release/contrib/tcsh/
H A Dtc.printf.c72 int sign = 0; local
164 sign = 1;
170 if (sign)
316 sign = 0;

Completed in 283 milliseconds

1234567891011