Searched refs:hibits (Results 1 - 9 of 9) sorted by relevance

/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/builtins/ppc/
H A Dfixunstfdi.c13 const doublebits hibits = { .d = x.s.hi }; local
15 const uint32_t highWordMinusOne = (uint32_t)(hibits.x >> 32) - UINT32_C(0x3ff00000);
22 uint64_t result = hibits.x & UINT64_C(0x000fffffffffffff); /* mantissa(hi) */
H A Dfixtfdi.c15 const doublebits hibits = { .d = x.s.hi }; local
17 const uint32_t absHighWord = (uint32_t)(hibits.x >> 32) & UINT32_C(0x7fffffff);
26 int64_t result = hibits.x & INT64_C(0x000fffffffffffff); /* mantissa(hi) */
30 const int64_t hiNegationMask = ((int64_t)(hibits.x)) >> 63;
/netbsd-current/external/lgpl3/gmp/dist/tests/mpf/
H A Dt-eq.c106 int hibits, lshift1, lshift2; local
121 hibits = mpz_get_ui (ds) + 1;
122 mpz_urandomb (ds, rands, hibits);
123 mpz_setbit (ds, hibits - 1); /* make sure msb is set */
145 if (mpf_eq (a, b, lshift1 + hibits) == 0 ||
146 mpf_eq (b, a, lshift1 + hibits) == 0)
148 dump_abort (a, b, lshift1 + hibits, lshift1, lshift2, hibits, 1, test);
151 if (mpf_eq (a, b, lshift1 + hibits + xtra) != 0 ||
152 mpf_eq (b, a, lshift1 + hibits
177 dump_abort(mpf_t a, mpf_t b, int cmp_prec, int lshift1, int lshift2, int hibits, int want, long test) argument
[all...]
/netbsd-current/lib/libm/src/
H A Ds_fma.c91 uint64_t hibits, lobits; local
95 EXTRACT_WORD64(hibits, sum.hi);
96 if ((hibits & 1) == 0) {
97 /* hibits += (int)copysign(1.0, sum.hi * sum.lo) */
99 hibits += 1 - ((hibits ^ lobits) >> 62);
100 INSERT_WORD64(sum.hi, hibits);
115 uint64_t hibits, lobits; local
131 EXTRACT_WORD64(hibits, sum.hi);
132 bits_lost = -((int)(hibits >> 5
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/csky/
H A Dcsky.c3503 unsigned HOST_WIDE_INT bit, shf, rot, lobits, hibits; local
3553 hibits = (unsigned HOST_WIDE_INT)(value & 0xfffff000) + (1 << 12);
3554 if (exact_log2 (hibits) >= 1
3555 && exact_log2 (hibits) <= 30
3558 *x = hibits;
/netbsd-current/external/gpl3/gcc/dist/gcc/config/csky/
H A Dcsky.cc3666 unsigned HOST_WIDE_INT bit, shf, rot, lobits, hibits; local
3716 hibits = (unsigned HOST_WIDE_INT)(value & 0xfffff000) + (1 << 12);
3717 if (exact_log2 (hibits) >= 1
3718 && exact_log2 (hibits) <= 30
3721 *x = hibits;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPInt.cpp846 uint64_t hibits = Tmp.U.pVal[hiWord] << (52 - n % APINT_BITS_PER_WORD);
848 mantissa = hibits | lobits;
/netbsd-current/external/gpl3/gcc/dist/gcc/config/i386/
H A Di386-expand.cc6469 rtx hibits; local
6475 hibits = gen_reg_rtx (V4SImode);
6476 emit_insn (gen_sse2_pshufd (hibits, op1_v4si, GEN_INT (0x93)));
6481 hibits = gen_reg_rtx (V4SImode);
6483 emit_insn (gen_sse2_pshufd (hibits, op1_v4si, GEN_INT (0x4e)));
6488 hibits = gen_reg_rtx (V4SImode);
6490 emit_insn (gen_sse2_pshufd (hibits, op1_v4si, GEN_INT (0x39)));
6496 hibits = op1_v4si;
6505 emit_insn (gen_lshrv4si3 (tmp2, hibits, GEN_INT (32 - (bits & 31))));
/netbsd-current/sys/arch/sparc64/sparc64/
H A Dlocore.s7100 ! flushw ! Make sure we don't have stack probs & lose hibits of %o
7348 ! flushw ! Make sure we don't have stack probs & lose hibits of %o
7407 flushw ! Make sure we don't have stack probs & lose hibits of %o
7795 flushw ! Make sure we don't have stack probs & lose hibits of %o

Completed in 333 milliseconds