HomeSort by: relevance | last modified time | path
    Searched refs:real_value (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/external/gpl3/gcc.old/dist/gcc/d/
longdouble.h 21 struct real_value;
27 /* Return the hidden real_value from the longdouble type. */
28 const real_value &rv (void) const
29 { return *(const real_value *) this; }
31 real_value &rv (void)
32 { return *(real_value *) this; }
42 void set (real_value &d);
d-ctfloat.cc 56 real_value rx = x.rv ();
57 real_value ry = y.rv ();
d-longdouble.cc 43 /* Assign a real_value to a longdouble type. */
46 longdouble::set (real_value &d)
149 real_value q;
d-target.cc 187 Should ensure that our real_t type is able to represent real_value. */
188 gcc_assert (sizeof (real_t) >= sizeof (real_value));
d-builtins.cc 365 real_value re = TREE_REAL_CST (TREE_REALPART (cst));
366 real_value im = TREE_REAL_CST (TREE_IMAGPART (cst));
377 real_value value = TREE_REAL_CST (cst);
  /src/external/gpl3/gcc/dist/gcc/
inchash.cc 36 hash::add_real_value (const real_value &v)
fold-const-call.cc 88 do_mpfr_ckconv (real_value *result, mpfr_srcptr m, bool inexact,
122 do_mpfr_arg1 (real_value *result,
124 const real_value *arg, const real_format *format)
151 do_mpfr_sincos (real_value *result_sin, real_value *result_cos,
152 const real_value *arg, const real_format *format)
182 do_mpfr_arg2 (real_value *result,
184 const real_value *arg0, const real_value *arg1,
215 do_mpfr_arg2 (real_value *result
    [all...]
fixed-value.cc 54 /* Check REAL_VALUE against the range of the fixed-point mode.
62 check_real_for_fixed_mode (REAL_VALUE_TYPE *real_value, machine_mode mode)
74 if (real_compare (LT_EXPR, real_value, &min_value))
76 if (real_compare (EQ_EXPR, real_value, &max_value))
79 if (real_compare (GT_EXPR, real_value, &max_value))
113 REAL_VALUE_TYPE real_value, fixed_value, base_value; local
121 real_from_string (&real_value, str);
122 temp = check_real_for_fixed_mode (&real_value, f->mode);
130 real_arithmetic (&fixed_value, MULT_EXPR, &real_value, &base_value);
157 REAL_VALUE_TYPE real_value, base_value, fixed_value local
1037 REAL_VALUE_TYPE real_value, fixed_value, base_value; local
1095 REAL_VALUE_TYPE base_value, fixed_value, real_value; local
    [all...]
inchash.h 91 void add_real_value (const class real_value &v);
real.h 39 struct GTY(()) real_value {
68 #define REAL_VALUE_TYPE struct real_value
tree-core.h 33 struct real_value;
1495 struct real_value value;
  /src/external/gpl3/gcc.old/dist/gcc/
fold-const-call.cc 88 do_mpfr_ckconv (real_value *result, mpfr_srcptr m, bool inexact,
122 do_mpfr_arg1 (real_value *result,
124 const real_value *arg, const real_format *format)
153 do_mpfr_sincos (real_value *result_sin, real_value *result_cos,
154 const real_value *arg, const real_format *format)
184 do_mpfr_arg2 (real_value *result,
186 const real_value *arg0, const real_value *arg1,
217 do_mpfr_arg2 (real_value *result
    [all...]
fixed-value.cc 54 /* Check REAL_VALUE against the range of the fixed-point mode.
62 check_real_for_fixed_mode (REAL_VALUE_TYPE *real_value, machine_mode mode)
74 if (real_compare (LT_EXPR, real_value, &min_value))
76 if (real_compare (EQ_EXPR, real_value, &max_value))
79 if (real_compare (GT_EXPR, real_value, &max_value))
113 REAL_VALUE_TYPE real_value, fixed_value, base_value; local
121 real_from_string (&real_value, str);
122 temp = check_real_for_fixed_mode (&real_value, f->mode);
130 real_arithmetic (&fixed_value, MULT_EXPR, &real_value, &base_value);
157 REAL_VALUE_TYPE real_value, base_value, fixed_value local
1037 REAL_VALUE_TYPE real_value, fixed_value, base_value; local
1095 REAL_VALUE_TYPE base_value, fixed_value, real_value; local
    [all...]
real.h 39 struct GTY(()) real_value {
68 #define REAL_VALUE_TYPE struct real_value
tree-core.h 33 struct real_value;
1464 struct real_value * real_cst_ptr;
  /src/external/lgpl3/mpc/dist/src/
set_x_x.c 24 #define MPC_SET_X_X(type, z, real_value, imag_value, rnd) \
25 MPC_SET_X_Y (type, type, z, real_value, imag_value, rnd)
set_x.c 30 #define MPC_SET_X(real_t, z, real_value, rnd) \
33 _inex_re = (mpfr_set_ ## real_t) (mpc_realref (z), (real_value), MPC_RND_RE (rnd)); \
mpc.h 349 #define MPC_SET_X_Y(real_t, imag_t, z, real_value, imag_value, rnd) \
352 _inex_re = (mpfr_set_ ## real_t) (mpc_realref (z), (real_value), MPC_RND_RE (rnd)); \
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 868 uint64_t real_value = Value - 4; local
871 real_value = -real_value;
872 out |= ((real_value >> 1) & 0x1) << 11;
873 out |= ((real_value >> 1) & 0x7fe);
  /src/external/gpl3/gcc/dist/gcc/jit/
jit-playback.cc 1030 REAL_VALUE_TYPE real_value; local
1031 real_from_integer (&real_value, VOIDmode, value, SIGNED);
1032 tree inner = build_real (inner_type, real_value);
1054 REAL_VALUE_TYPE real_value; local
1055 real_from_integer (&real_value, VOIDmode, value, SIGNED);
1056 tree inner = build_real (inner_type, real_value);
1077 REAL_VALUE_TYPE real_value; local
1087 real_from_target (&real_value, as_long_ints, DFmode);
1088 tree inner = build_real (inner_type, real_value);
  /src/external/gpl3/gcc.old/dist/gcc/jit/
jit-playback.cc 893 REAL_VALUE_TYPE real_value; local
894 real_from_integer (&real_value, VOIDmode, value, SIGNED);
895 tree inner = build_real (inner_type, real_value);
917 REAL_VALUE_TYPE real_value; local
918 real_from_integer (&real_value, VOIDmode, value, SIGNED);
919 tree inner = build_real (inner_type, real_value);
940 REAL_VALUE_TYPE real_value; local
950 real_from_target (&real_value, as_long_ints, DFmode);
951 tree inner = build_real (inner_type, real_value);
  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
region.cc 769 const real_value *rv1 = TREE_REAL_CST_PTR (t1);
770 const real_value *rv2 = TREE_REAL_CST_PTR (t2);
  /src/external/gpl3/gcc/dist/gcc/analyzer/
region.cc 1268 const real_value *rv1 = TREE_REAL_CST_PTR (t1);
1269 const real_value *rv2 = TREE_REAL_CST_PTR (t2);
  /src/external/gpl3/gcc/dist/gcc/config/aarch64/
aarch64-builtins.cc 3651 real_value a0 = (TREE_REAL_CST (args[0]));
3652 real_value a1 = (TREE_REAL_CST (args[1]));
3658 real_value res = dconst2;
3671 real_value const_part = a0_cst_p
  /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/
aarch64-builtins.cc 3085 real_value a0 = (TREE_REAL_CST (args[0]));
3086 real_value a1 = (TREE_REAL_CST (args[1]));
3092 real_value res = dconst2;
3105 real_value const_part = a0_cst_p

Completed in 50 milliseconds

1 2