Home
last modified time | relevance | path

Searched refs:out_exp (Results 1 – 25 of 76) sorted by relevance

1234

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libc/src/math/
H A Dhypotf.cpp97 uint16_t a_exp, b_exp, out_exp; in LLVM_LIBC_ENTRYPOINT() local
124 out_exp = a_exp; in LLVM_LIBC_ENTRYPOINT()
166 ++out_exp; in LLVM_LIBC_ENTRYPOINT()
167 if (out_exp >= FPBits<float>::maxExponent) { in LLVM_LIBC_ENTRYPOINT()
198 if (out_exp == 0) { in LLVM_LIBC_ENTRYPOINT()
199 out_exp = 1; in LLVM_LIBC_ENTRYPOINT()
212 ++out_exp; in LLVM_LIBC_ENTRYPOINT()
213 if (out_exp >= FPBits<float>::maxExponent) { in LLVM_LIBC_ENTRYPOINT()
218 Y |= static_cast<uint32_t>(out_exp) << MantissaWidth<float>::value; in LLVM_LIBC_ENTRYPOINT()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libc/utils/FPUtil/
H A DHypot.h137 uint16_t a_exp, b_exp, out_exp;
165 out_exp = a_exp;
209 ++out_exp;
210 if (out_exp >= FPBits_t::maxExponent) {
241 if (out_exp == 0) {
242 out_exp = 1;
255 ++out_exp;
256 if (out_exp >= FPBits_t::maxExponent) {
261 Y |= static_cast<UIntType>(out_exp) << MantissaWidth<T>::value;
/dports/devel/llvm12/llvm-project-12.0.1.src/libc/utils/FPUtil/
H A DHypot.h137 uint16_t a_exp, b_exp, out_exp;
164 out_exp = a_exp;
208 ++out_exp;
209 if (out_exp >= FPBits_t::maxExponent) {
240 if (out_exp == 0) {
241 out_exp = 1;
254 ++out_exp;
255 if (out_exp >= FPBits_t::maxExponent) {
260 Y |= static_cast<UIntType>(out_exp) << MantissaWidth<T>::value;
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libc/src/__support/FPUtil/
H A DHypot.h137 uint16_t a_exp, b_exp, out_exp;
165 out_exp = a_exp;
209 ++out_exp;
210 if (out_exp >= FPBits_t::maxExponent) {
241 if (out_exp == 0) {
242 out_exp = 1;
255 ++out_exp;
256 if (out_exp >= FPBits_t::maxExponent) {
261 Y |= static_cast<UIntType>(out_exp) << MantissaWidth<T>::value;
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libc/utils/FPUtil/
H A DHypot.h137 uint16_t a_exp, b_exp, out_exp;
165 out_exp = a_exp;
209 ++out_exp;
210 if (out_exp >= FPBits_t::maxExponent) {
241 if (out_exp == 0) {
242 out_exp = 1;
255 ++out_exp;
256 if (out_exp >= FPBits_t::maxExponent) {
261 Y |= static_cast<UIntType>(out_exp) << MantissaWidth<T>::value;
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libc/utils/FPUtil/
H A DHypot.h137 uint16_t a_exp, b_exp, out_exp;
164 out_exp = a_exp;
208 ++out_exp;
209 if (out_exp >= FPBits_t::maxExponent) {
240 if (out_exp == 0) {
241 out_exp = 1;
254 ++out_exp;
255 if (out_exp >= FPBits_t::maxExponent) {
260 Y |= static_cast<UIntType>(out_exp) << MantissaWidth<T>::value;
/dports/devel/llvm13/llvm-project-13.0.1.src/libc/utils/FPUtil/
H A DHypot.h137 uint16_t a_exp, b_exp, out_exp;
165 out_exp = a_exp;
209 ++out_exp;
210 if (out_exp >= FPBits_t::maxExponent) {
241 if (out_exp == 0) {
242 out_exp = 1;
255 ++out_exp;
256 if (out_exp >= FPBits_t::maxExponent) {
261 Y |= static_cast<UIntType>(out_exp) << MantissaWidth<T>::value;
/dports/emulators/riscv-isa-sim/riscv-isa-sim-4f12984/softfloat/
H A Dfall_reciprocal.c91 uint64_t out_exp = (3 * make_mask64(0, e - 1) + ~exp) / 2; in rsqrte7() local
93 return (sign << (s+e)) | (out_exp << s) | out_sig; in rsqrte7()
253 uint64_t out_exp = 2 * make_mask64(0, e - 1) + ~exp; in recip7() local
254 if (out_exp == 0 || out_exp == UINT64_MAX) { in recip7()
256 if (out_exp == UINT64_MAX) { in recip7()
258 out_exp = 0; in recip7()
262 return (sign << (s+e)) | (out_exp << s) | out_sig; in recip7()
/dports/science/py-scikit-fuzzy/scikit-fuzzy-0.4.2/docs/tools/gitwash/
H A Dgitwash_dumper.py59 for in_exp, out_exp in sr_pairs:
61 out_txt = in_exp.sub(out_exp, out_txt)
77 renames = [(re.compile(in_exp), out_exp) for in_exp, out_exp in renames]
85 for in_exp, out_exp in renames:
86 new_fname, n = in_exp.subn(out_exp, fname)
/dports/science/py-nibabel/nibabel-3.2.1/tools/
H A Dgitwash_dumper.py59 for in_exp, out_exp in sr_pairs:
61 out_txt = in_exp.sub(out_exp, out_txt)
77 renames = [(re.compile(in_exp), out_exp) for in_exp, out_exp in renames]
85 for in_exp, out_exp in renames:
86 new_fname, n = in_exp.subn(out_exp, fname)
/dports/science/py-dipy/dipy-1.4.1/tools/
H A Dgitwash_dumper.py59 for in_exp, out_exp in sr_pairs:
61 out_txt = in_exp.sub(out_exp, out_txt)
77 renames = [(re.compile(in_exp), out_exp) for in_exp, out_exp in renames]
85 for in_exp, out_exp in renames:
86 new_fname, n = in_exp.subn(out_exp, fname)
/dports/www/lighttpd/lighttpd-1.4.63/src/t/
H A Dtest_base64.c9 static void check_base64 (size_t out_exp, const char *in, const size_t in_len, const base64_charset… in check_base64() argument
11 …force_assert(out_exp == li_to_base64_no_padding(out, sizeof(out), (const unsigned char *)in, in_le… in check_base64()
14 force_assert(NULL != buffer_append_base64_decode(check, out, out_exp, enc)); in check_base64()
/dports/multimedia/libv4l/linux-5.13-rc2/fs/nfs/
H A Dnfs4renewd.c96 goto out_exp; in nfs4_renew_state()
107 out_exp: in nfs4_renew_state()
/dports/multimedia/v4l_compat/linux-5.13-rc2/fs/nfs/
H A Dnfs4renewd.c96 goto out_exp; in nfs4_renew_state()
107 out_exp: in nfs4_renew_state()
/dports/multimedia/v4l-utils/linux-5.13-rc2/fs/nfs/
H A Dnfs4renewd.c96 goto out_exp; in nfs4_renew_state()
107 out_exp: in nfs4_renew_state()
/dports/lang/smalltalk/smalltalk-3.2.5/libgst/
H A Dreal.c136 int out_exp; in normalize() local
138 out_exp = in->exp; in normalize()
143 out_exp -= SIG_ELEM_BITS; in normalize()
171 out->exp = out_exp - lshift; in normalize()
/dports/math/py-theano/Theano-1.0.5/theano/tensor/tests/
H A Dtest_extra_ops.py700 for out, out_exp in zip(outs, outs_expected):
701 utt.assert_allclose(out, out_exp)
721 for out, out_exp in zip(outs, outs_expected):
722 utt.assert_allclose(out, out_exp)
818 for out, out_exp in zip(outs, outs_expected):
819 utt.assert_allclose(out, out_exp)
840 for out, out_exp in zip(outs, outs_expected):
841 utt.assert_allclose(out, out_exp)
/dports/lang/gnat_util/gcc-6-20180516/gcc/
H A Drecog.c3654 rtx out_exp, in_exp; in store_data_bypass_p() local
3678 out_exp = XVECEXP (out_pat, 0, i); in store_data_bypass_p()
3680 if (GET_CODE (out_exp) == CLOBBER) in store_data_bypass_p()
3683 gcc_assert (GET_CODE (out_exp) == SET); in store_data_bypass_p()
3685 if (reg_mentioned_p (SET_DEST (out_exp), SET_DEST (in_set))) in store_data_bypass_p()
3720 out_exp = XVECEXP (out_pat, 0, j); in store_data_bypass_p()
3722 if (GET_CODE (out_exp) == CLOBBER) in store_data_bypass_p()
3725 gcc_assert (GET_CODE (out_exp) == SET); in store_data_bypass_p()
3727 if (reg_mentioned_p (SET_DEST (out_exp), SET_DEST (in_exp))) in store_data_bypass_p()
/dports/lang/gcc48/gcc-4.8.5/gcc/
H A Drecog.c3628 rtx out_exp, in_exp; in store_data_bypass_p() local
3652 out_exp = XVECEXP (out_pat, 0, i); in store_data_bypass_p()
3654 if (GET_CODE (out_exp) == CLOBBER) in store_data_bypass_p()
3657 gcc_assert (GET_CODE (out_exp) == SET); in store_data_bypass_p()
3659 if (reg_mentioned_p (SET_DEST (out_exp), SET_DEST (in_set))) in store_data_bypass_p()
3694 out_exp = XVECEXP (out_pat, 0, j); in store_data_bypass_p()
3696 if (GET_CODE (out_exp) == CLOBBER) in store_data_bypass_p()
3699 gcc_assert (GET_CODE (out_exp) == SET); in store_data_bypass_p()
3701 if (reg_mentioned_p (SET_DEST (out_exp), SET_DEST (in_exp))) in store_data_bypass_p()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/
H A Drecog.c3678 rtx out_exp, in_exp; in store_data_bypass_p() local
3702 out_exp = XVECEXP (out_pat, 0, i); in store_data_bypass_p()
3704 if (GET_CODE (out_exp) == CLOBBER) in store_data_bypass_p()
3707 gcc_assert (GET_CODE (out_exp) == SET); in store_data_bypass_p()
3709 if (reg_mentioned_p (SET_DEST (out_exp), SET_DEST (in_set))) in store_data_bypass_p()
3744 out_exp = XVECEXP (out_pat, 0, j); in store_data_bypass_p()
3746 if (GET_CODE (out_exp) == CLOBBER) in store_data_bypass_p()
3749 gcc_assert (GET_CODE (out_exp) == SET); in store_data_bypass_p()
3751 if (reg_mentioned_p (SET_DEST (out_exp), SET_DEST (in_exp))) in store_data_bypass_p()
/dports/devel/mingw32-gcc/gcc-4.8.1/gcc/
H A Drecog.c3599 rtx out_exp, in_exp; in store_data_bypass_p() local
3623 out_exp = XVECEXP (out_pat, 0, i); in store_data_bypass_p()
3625 if (GET_CODE (out_exp) == CLOBBER) in store_data_bypass_p()
3628 gcc_assert (GET_CODE (out_exp) == SET); in store_data_bypass_p()
3630 if (reg_mentioned_p (SET_DEST (out_exp), SET_DEST (in_set))) in store_data_bypass_p()
3665 out_exp = XVECEXP (out_pat, 0, j); in store_data_bypass_p()
3667 if (GET_CODE (out_exp) == CLOBBER) in store_data_bypass_p()
3670 gcc_assert (GET_CODE (out_exp) == SET); in store_data_bypass_p()
3672 if (reg_mentioned_p (SET_DEST (out_exp), SET_DEST (in_exp))) in store_data_bypass_p()
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/
H A Drecog.c3654 rtx out_exp, in_exp; in store_data_bypass_p() local
3678 out_exp = XVECEXP (out_pat, 0, i); in store_data_bypass_p()
3680 if (GET_CODE (out_exp) == CLOBBER) in store_data_bypass_p()
3683 gcc_assert (GET_CODE (out_exp) == SET); in store_data_bypass_p()
3685 if (reg_mentioned_p (SET_DEST (out_exp), SET_DEST (in_set))) in store_data_bypass_p()
3720 out_exp = XVECEXP (out_pat, 0, j); in store_data_bypass_p()
3722 if (GET_CODE (out_exp) == CLOBBER) in store_data_bypass_p()
3725 gcc_assert (GET_CODE (out_exp) == SET); in store_data_bypass_p()
3727 if (reg_mentioned_p (SET_DEST (out_exp), SET_DEST (in_exp))) in store_data_bypass_p()
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/config/riscv/
H A Driscv.c4140 rtx out_exp, in_exp; in riscv_store_data_bypass_p() local
4156 out_exp = XVECEXP (out_pat, 0, i); in riscv_store_data_bypass_p()
4157 if ((GET_CODE (out_exp) == CLOBBER) in riscv_store_data_bypass_p()
4158 || (GET_CODE (out_exp) == USE)) in riscv_store_data_bypass_p()
4160 else if (GET_CODE (out_exp) != SET) in riscv_store_data_bypass_p()
4191 out_exp = XVECEXP (out_pat, 0, j); in riscv_store_data_bypass_p()
4192 if ((GET_CODE (out_exp) == CLOBBER) in riscv_store_data_bypass_p()
4193 || (GET_CODE (out_exp) == USE)) in riscv_store_data_bypass_p()
4195 else if (GET_CODE (out_exp) != SET) in riscv_store_data_bypass_p()
/dports/devel/avr-gcc/gcc-10.2.0/gcc/config/riscv/
H A Driscv.c4300 rtx out_exp, in_exp; in riscv_store_data_bypass_p() local
4316 out_exp = XVECEXP (out_pat, 0, i); in riscv_store_data_bypass_p()
4317 if ((GET_CODE (out_exp) == CLOBBER) in riscv_store_data_bypass_p()
4318 || (GET_CODE (out_exp) == USE)) in riscv_store_data_bypass_p()
4320 else if (GET_CODE (out_exp) != SET) in riscv_store_data_bypass_p()
4351 out_exp = XVECEXP (out_pat, 0, j); in riscv_store_data_bypass_p()
4352 if ((GET_CODE (out_exp) == CLOBBER) in riscv_store_data_bypass_p()
4353 || (GET_CODE (out_exp) == USE)) in riscv_store_data_bypass_p()
4355 else if (GET_CODE (out_exp) != SET) in riscv_store_data_bypass_p()
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/config/riscv/
H A Driscv.c4303 rtx out_exp, in_exp; in riscv_store_data_bypass_p() local
4319 out_exp = XVECEXP (out_pat, 0, i); in riscv_store_data_bypass_p()
4320 if ((GET_CODE (out_exp) == CLOBBER) in riscv_store_data_bypass_p()
4321 || (GET_CODE (out_exp) == USE)) in riscv_store_data_bypass_p()
4323 else if (GET_CODE (out_exp) != SET) in riscv_store_data_bypass_p()
4354 out_exp = XVECEXP (out_pat, 0, j); in riscv_store_data_bypass_p()
4355 if ((GET_CODE (out_exp) == CLOBBER) in riscv_store_data_bypass_p()
4356 || (GET_CODE (out_exp) == USE)) in riscv_store_data_bypass_p()
4358 else if (GET_CODE (out_exp) != SET) in riscv_store_data_bypass_p()

1234