Searched refs:sign (Results 476 - 500 of 1248) sorted by relevance

<<11121314151617181920>>

/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/libbid/
H A Dbid_inline_add.h208 // sign mask
210 // apply sign to coeff. of b
213 // apply sign to coefficient a
218 // get sign
303 // apply sign
315 // apply sign
472 __bid_simple_round64_sticky (UINT64 sign, int exponent, UINT128 P, argument
482 if (sign && (unsigned) (rmode - 1) < 2)
504 return get_BID64 (sign, exponent, C64, rounding_mode, fpsc);
511 __bid_full_round64 (UINT64 sign, in argument
634 __bid_full_round64_remainder(UINT64 sign, int exponent, UINT128 P, int extra_digits, UINT64 remainder_P, int rounding_mode, unsigned *fpsc, unsigned uf_status) argument
[all...]
/netbsd-current/external/lgpl3/mpfr/dist/src/
H A Dget_d128.c63 /* construct the decimal128 Inf with given sign */
70 /* construct the decimal128 zero with given sign */
77 /* construct the decimal128 smallest non-zero with given sign:
86 /* construct the decimal128 largest finite number with given sign */
108 * sign bit has 1 bit
121 int sign = 0; local
123 /* read sign */
126 sign = 1;
345 if (sign)
361 /* we don't propagate the sign bi
[all...]
H A Datan2.c208 int sign; local
226 sign = MPFR_SIGN (tmp);
229 return mpfr_underflow (dest, rnd_mode, sign);
243 /* Use sign(y)*(PI - atan (|y/x|)) */
H A Drem1.c27 /* we return as many bits as we can, keeping just one bit for the sign */
37 If quo is not null, the value stored in *quo has the sign of q,
40 If rem is zero, then it has the sign of x.
60 int compare, inex, q_is_odd, sign, signx = MPFR_SIGN (x); local
94 /* to get rid of sign problems, we compute it separately:
97 thus quo = sign(x/y)*quo(|x|,|y|), rem = sign(x)*rem(|x|,|y|) */
98 sign = (signx == MPFR_SIGN (y)) ? 1 : -1;
134 /* 0 <= |r| <= |my|, r has the same sign as mx */
200 /* take into account sign o
[all...]
H A Dmul.c734 int sign, inexact; local
757 sign = MPFR_MULT_SIGN (MPFR_SIGN (b), MPFR_SIGN (c));
762 MPFR_SET_SIGN (a, sign);
776 MPFR_SET_SIGN (a, sign);
789 MPFR_SET_SIGN (a, sign);
816 sign = MPFR_MULT_SIGN (MPFR_SIGN (b), MPFR_SIGN (c));
827 return mpfr_overflow (a, rnd_mode, sign);
830 sign);
1086 MPFR_RNDRAW (inexact, a, tmp, bq + cq, rnd_mode, sign, ax2++);
1089 MPFR_SET_SIGN (a, sign);
[all...]
H A Dsub1.c25 /* compute sign(b) * (|b| - |c|), with |b| > |c|, diff_exp = EXP(b) - EXP(c)
34 int sign; local
55 sign = mpfr_cmp2 (b, c, &cancel);
57 if (MPFR_UNLIKELY(sign == 0))
59 MPFR_LOG_MSG (("sign=0\n", 0));
68 /* sign != 0, so that cancel has a valid value. */
69 MPFR_LOG_MSG (("sign=%d cancel=%Pd\n", sign, cancel));
73 * If subtraction: sign(a) = sign * sig
[all...]
/netbsd-current/external/lgpl3/mpfr/dist/tests/
H A Dtabs.c220 int sign = RAND_SIGN (); local
223 MPFR_SET_SIGN (x, sign);
229 printf ("Mismatch for sign=%d and x=", sign);
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/i386/
H A Dx86-64-opcode.s165 CVTSS2SIq (%r8),%rax # -- -- F3 49 0f 2d 00 ; OVR 128-bit media instruction override Result is sign extended REX for 64-bit operand size REX to access upper reg.
166 CVTSS2SIq (%rax),%rax # -- -- F3 48 0f 2d 00 ; OVR 128-bit media instruction override Result is sign extended REX for 64-bit operand size
167 CVTSS2SIq (%r8),%r8 # -- -- F3 4D 0f 2d 00 ; OVR 128-bit media instruction override Result is sign extended REX for 64-bit operand size REX to access upper reg.
168 CVTSS2SIq (%rax),%r8 # -- -- F3 4C 0f 2d 00 ; OVR 128-bit media instruction override Result is sign extended REX for 64-bit operand size REX to access upper reg.
169 CVTSS2SIq %xmm0,%rax # -- -- F3 48 0f 2d c0 ; OVR 128-bit media instruction override Result is sign extended REX for 64-bit operand size
170 CVTSS2SIq %xmm15,%r8 # -- -- F3 4D 0f 2d c7 ; OVR 128-bit media instruction override Result is sign extended REX to access upper XMM reg REX to access upper reg.
171 CVTSS2SIq %xmm15,%rax # -- -- F3 49 0f 2d c7 ; OVR 128-bit media instruction override Result is sign extended REX for 64-bit operand size REX to access upper XMM reg
172 CVTSS2SIq %xmm8,%r8 # -- -- F3 4D 0f 2d c0 ; OVR 128-bit media instruction override Result is sign extended REX for 64-bit operand size REX to access upper XMM reg REX to access upper reg.
173 CVTSS2SIq %xmm8,%rax # -- -- F3 49 0f 2d c0 ; OVR 128-bit media instruction override Result is sign extended REX for 64-bit operand size
174 CVTSS2SIq %xmm7,%r8 # -- -- F3 4C 0f 2d c7 ; OVR 128-bit media instruction override Result is sign extende
[all...]
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/evp/
H A Dpmeth_fn.c38 if (!ctx || !ctx->pmeth || !ctx->pmeth->sign) {
56 if (!ctx || !ctx->pmeth || !ctx->pmeth->sign) {
66 return ctx->pmeth->sign(ctx, sig, siglen, tbs, tbslen);
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/libbid/
H A Dbid_inline_add.h208 // sign mask
210 // apply sign to coeff. of b
213 // apply sign to coefficient a
218 // get sign
303 // apply sign
315 // apply sign
472 __bid_simple_round64_sticky (UINT64 sign, int exponent, UINT128 P, argument
482 if (sign && (unsigned) (rmode - 1) < 2)
504 return get_BID64 (sign, exponent, C64, rounding_mode, fpsc);
511 __bid_full_round64 (UINT64 sign, in argument
634 __bid_full_round64_remainder(UINT64 sign, int exponent, UINT128 P, int extra_digits, UINT64 remainder_P, int rounding_mode, unsigned *fpsc, unsigned uf_status) argument
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/ryu/
H A Df2s.c37 bool sign; member in struct:floating_decimal_32
217 fd.sign = ieeeSign;
224 if (v.sign) {
309 // Decode bits into sign, mantissa, and exponent.
/netbsd-current/sys/arch/alpha/alpha/
H A Dtrap.c672 unsigned long sign, expn, frac; local
675 sign = (s & 0x80000000) >> 31;
687 result = (sign << 63) | (expn << 52) | (frac << 29);
694 unsigned long sign, expn, frac; local
697 sign = (r & 0x8000000000000000) >> 63;
704 result = (sign << 31) | (expn << 23) | (frac << 0);
723 unsigned long sign, expn, frlo, frhi; local
726 sign = (f & 0x00008000) >> 15;
737 result = (sign << 63) | (expn << 52) | (frhi << 45) | (frlo << 29);
744 unsigned long sign, exp local
[all...]
/netbsd-current/external/gpl3/gdb/dist/libdecnumber/
H A DdecCommon.c115 /* DECCOMBEXP, DECCOMBWEXP, and DECCOMBMSD are indexed by the sign */
261 if (num->sign!=0 && num->sign!=DECFLOAT_Sign)
262 printf("decFinalize: bad sign [%08lx]\n", (LI)num->sign);
359 if (!num->sign && reround>0) bump=1;
364 if (num->sign && reround>0) bump=1;
447 if (num->sign) needmax=1; /* Infinity iff non-negative */
450 if (!num->sign) needmax=1; /* Infinity iff negative */
495 return decFloatFromBCD(df, num->exponent, umsd, num->sign);
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/libdecnumber/
H A DdecCommon.c115 /* DECCOMBEXP, DECCOMBWEXP, and DECCOMBMSD are indexed by the sign */
261 if (num->sign!=0 && num->sign!=DECFLOAT_Sign)
262 printf("decFinalize: bad sign [%08lx]\n", (LI)num->sign);
359 if (!num->sign && reround>0) bump=1;
364 if (num->sign && reround>0) bump=1;
447 if (num->sign) needmax=1; /* Infinity iff non-negative */
450 if (!num->sign) needmax=1; /* Infinity iff negative */
495 return decFloatFromBCD(df, num->exponent, umsd, num->sign);
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libdecnumber/
H A DdecCommon.c115 /* DECCOMBEXP, DECCOMBWEXP, and DECCOMBMSD are indexed by the sign */
261 if (num->sign!=0 && num->sign!=DECFLOAT_Sign)
262 printf("decFinalize: bad sign [%08lx]\n", (LI)num->sign);
359 if (!num->sign && reround>0) bump=1;
364 if (num->sign && reround>0) bump=1;
447 if (num->sign) needmax=1; /* Infinity iff non-negative */
450 if (!num->sign) needmax=1; /* Infinity iff negative */
495 return decFloatFromBCD(df, num->exponent, umsd, num->sign);
[all...]
/netbsd-current/external/gpl3/gcc/dist/libdecnumber/
H A DdecCommon.c115 /* DECCOMBEXP, DECCOMBWEXP, and DECCOMBMSD are indexed by the sign */
261 if (num->sign!=0 && num->sign!=DECFLOAT_Sign)
262 printf("decFinalize: bad sign [%08lx]\n", (LI)num->sign);
359 if (!num->sign && reround>0) bump=1;
364 if (num->sign && reround>0) bump=1;
447 if (num->sign) needmax=1; /* Infinity iff non-negative */
450 if (!num->sign) needmax=1; /* Infinity iff negative */
495 return decFloatFromBCD(df, num->exponent, umsd, num->sign);
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/m68k/
H A Dlb1sf68.S235 | number, where s=sign, e=exponent, f=fraction. We will call a floating
540 moveq IMM (1), d2 /* sign of result stored in d2 (=1 or =-1) */
545 negb d2 /* change sign because divisor <0 */
547 negl d2 /* change sign because divisor <0 */
727 | unsigned int sign : 1; /* sign bit */
745 bchg IMM (31),sp@(12) | change sign of second operand
766 movel d0,d7 | get d0's sign bit in d7 '
767 addl d1,d1 | check and clear sign bit of a, and gain one
771 movel d2,d6 | save sign i
[all...]
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/m68k/
H A Dlb1sf68.S235 | number, where s=sign, e=exponent, f=fraction. We will call a floating
549 moveq IMM (1), d2 /* sign of result stored in d2 (=1 or =-1) */
554 negb d2 /* change sign because divisor <0 */
556 negl d2 /* change sign because divisor <0 */
736 | unsigned int sign : 1; /* sign bit */
754 bchg IMM (31),sp@(12) | change sign of second operand
775 movel d0,d7 | get d0's sign bit in d7 '
776 addl d1,d1 | check and clear sign bit of a, and gain one
780 movel d2,d6 | save sign i
[all...]
/netbsd-current/external/bsd/ntp/dist/libntp/
H A Dntp_calgps.c161 uint32_t base, days, sign; local
169 sign = (uint32_t)-(days < base);
170 days = sign ^ (days - base);
172 days = base + (sign & clen) + (sign ^ days);
/netbsd-current/external/bsd/jemalloc/dist/src/
H A Dmalloc_io.c61 static char *d2s(intmax_t x, char sign, char *s, size_t *slen_p);
129 /* Swallow leading whitespace and get sign, if any. */
150 * Note where the first non-whitespace/sign character is so that it is
277 d2s(intmax_t x, char sign, char *s, size_t *slen_p) { argument
285 sign = '-';
287 switch (sign) {
297 *s = sign;
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dintrange.d21 private uinteger_t copySign(uinteger_t x, bool sign)
23 // return sign ? -x : x;
24 return (x - cast(uinteger_t)sign) ^ -cast(uinteger_t)sign;
393 // sign extend if necessary.
546 // unsigned or identical sign bits
594 // unsigned or identical sign bits:
791 auto sign = false;
800 sign = true;
815 sign
[all...]
/netbsd-current/lib/libc/stdio/
H A Dvfwprintf.c630 CHAR_T sign; /* sign prefix (' ', '+', '-', or \0) */ local
641 * A: 'sign' holds this value if present; '\0' otherwise
671 int realsz; /* field size expanded by dprec, sign, etc */
879 sign = '\0';
898 if (!sign)
899 sign = ' ';
920 sign = '+';
1032 sign = '\0';
1043 sign
[all...]
/netbsd-current/lib/libutil/
H A Dparsedate.y721 int sign = 1;
727 sign = -sign;
731 sign = -sign;
748 if (sign < 0)
1082 int sign;
1091 sign = c == '-' ? -1 : 1;
1093 /* skip the '-' sign */
1097 sign
[all...]
/netbsd-current/external/gpl3/binutils/dist/opcodes/
H A Dtic30-dis.c289 unsigned long exponent, sign, mant; local
313 sign = (tmsfloat & 0x00800000) << 8;
320 if (sign == 0)
325 if (sign == 0)
333 if (sign)
342 sign = mant = exponent = 0;
343 tmsfloat = sign | exponent | mant;
H A Depiphany-asm.c97 int sign = 0;
103 sign = 1; bits = 3; break;
105 sign = 1; bits = 11; break;
107 sign = 0; bits = 3; break;
109 /* Load/store displacement is a sign-magnitude 12 bit value. */
110 sign = 0; bits = 11; break;
118 errmsg = (sign ? cgen_parse_signed_integer (cd, strp, opindex, valuep)
124 if (sign)
96 int sign = 0; local

Completed in 522 milliseconds

<<11121314151617181920>>