Home
last modified time | relevance | path

Searched refs:imag (Results 1 – 25 of 30) sorted by relevance

12

/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/std/
H A Dcomplex261 _M_imag = __z.imag();
452 { return __x.real() == __y.real() && __x.imag() == __y.imag(); }
470 { return __x.real() != __y.real() || __x.imag() != __y.imag(); }
539 { return __z.imag(); }
553 imag(complex<_Tp>& __z)
554 { return __z.imag(); }
559 { return __z.imag(); }
1644 const _Tp __x = _Tp(1.0) - __r2 - __z.imag() * __z.imag();
1762 const _Tp __i2 = __z.imag() * __z.imag();
1826 imag(_Tp)
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/std/
H A Dcomplex268 _M_imag = __z.imag();
459 { return __x.real() == __y.real() && __x.imag() == __y.imag(); }
477 { return __x.real() != __y.real() || __x.imag() != __y.imag(); }
567 { return __z.imag(); }
581 imag(complex<_Tp>& __z)
582 { return __z.imag(); }
587 { return __z.imag(); }
1683 const _Tp __x = _Tp(1.0) - __r2 - __z.imag() * __z.imag();
1801 const _Tp __i2 = __z.imag() * __z.imag();
1865 imag(_Tp)
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/tr1/
H A Dcomplex107 std::complex<_Tp> __t(-__z.imag(), __z.real());
109 return std::complex<_Tp>(__t.imag(), -__t.real());
144 const _Tp __x = _Tp(1.0) - __r2 - __z.imag() * __z.imag();
146 _Tp __num = __z.imag() + _Tp(1.0);
147 _Tp __den = __z.imag() - _Tp(1.0);
223 std::complex<_Tp> __t((__z.real() - __z.imag())
224 * (__z.real() + __z.imag()) + _Tp(1.0),
225 _Tp(2.0) * __z.real() * __z.imag());
262 const _Tp __i2 = __z.imag() * __z.imag();
330 imag(_Tp)
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/tr1/
H A Dcomplex106 std::complex<_Tp> __t(-__z.imag(), __z.real());
108 return std::complex<_Tp>(__t.imag(), -__t.real());
143 const _Tp __x = _Tp(1.0) - __r2 - __z.imag() * __z.imag();
145 _Tp __num = __z.imag() + _Tp(1.0);
146 _Tp __den = __z.imag() - _Tp(1.0);
224 std::complex<_Tp> __t((__z.real() - __z.imag())
225 * (__z.real() + __z.imag()) + _Tp(1.0),
226 _Tp(2.0) * __z.real() * __z.imag());
263 const _Tp __i2 = __z.imag() * __z.imag();
329 imag(_Tp)
[all …]
/dragonfly/gnu/usr.bin/mpc/
H A DMakefile26 get_version.c get_x.c imag.c init2.c init3.c inp_str.c log.c log10.c \
/dragonfly/contrib/gcc-4.7/gcc/
H A Dtree-complex.c117 find_lattice_value_parts (tree real, tree imag) in find_lattice_value_parts() argument
123 i = some_nonzerop (imag); in find_lattice_value_parts()
141 tree real, imag; in find_lattice_value() local
151 imag = TREE_IMAGPART (t); in find_lattice_value()
158 return find_lattice_value_parts (real, imag); in find_lattice_value()
H A Dtree-browser.def77 DEFTBCODE (TB_IMAG, "imag", "Field accessor.")
H A Dfunction.c3261 rtx tmp, real, imag; in assign_parms_unsplit_complex() local
3265 imag = DECL_RTL (VEC_index (tree, fnargs, i + 1)); in assign_parms_unsplit_complex()
3269 imag = gen_lowpart_SUBREG (inner, imag); in assign_parms_unsplit_complex()
3289 emit_move_insn (imem, imag); in assign_parms_unsplit_complex()
3295 tmp = gen_rtx_CONCAT (DECL_MODE (parm), real, imag); in assign_parms_unsplit_complex()
3299 imag = DECL_INCOMING_RTL (VEC_index (tree, fnargs, i + 1)); in assign_parms_unsplit_complex()
3303 imag = gen_lowpart_SUBREG (inner, imag); in assign_parms_unsplit_complex()
3305 tmp = gen_rtx_CONCAT (DECL_MODE (parm), real, imag); in assign_parms_unsplit_complex()
H A Dc-typeck.c3712 tree real, imag; in build_unary_op() local
3719 imag = build_unary_op (EXPR_LOCATION (arg), IMAGPART_EXPR, arg, 1); in build_unary_op()
3721 if (real == error_mark_node || imag == error_mark_node) in build_unary_op()
3724 real, imag); in build_unary_op()
10347 tree real, imag; in build_binary_op() local
10374 imag = build_unary_op (EXPR_LOCATION (orig_op0), IMAGPART_EXPR, in build_binary_op()
10381 imag = build2 (resultcode, real_type, imag, op1); in build_binary_op()
10396 imag = build_unary_op (EXPR_LOCATION (orig_op1), IMAGPART_EXPR, in build_binary_op()
10402 imag = build2 (resultcode, real_type, op0, imag); in build_binary_op()
10409 imag = build1 (NEGATE_EXPR, real_type, imag); in build_binary_op()
[all …]
H A Dcalls.c3523 tree next, imag; in split_complex_types() local
3530 imag = build_tree_list (NULL_TREE, TREE_VALUE (p)); in split_complex_types()
3531 TREE_CHAIN (p) = imag; in split_complex_types()
3532 TREE_CHAIN (imag) = next; in split_complex_types()
H A Dbuiltins.c7384 tree imag = TREE_OPERAND (arg, 1); in fold_builtin_cabs() local
7389 if (real_zerop (imag)) in fold_builtin_cabs()
7394 && operand_equal_p (real, imag, OEP_PURE_SAME)) in fold_builtin_cabs()
7476 if (real_isinf (real) || real_isinf (imag)) in fold_builtin_cproj()
7477 return build_complex_cproj (type, imag->sign); in fold_builtin_cproj()
7484 tree imag = TREE_OPERAND (arg, 1); in fold_builtin_cproj() local
7487 STRIP_NOPS (imag); in fold_builtin_cproj()
7494 && tree_expr_nonnegative_p (imag)) in fold_builtin_cproj()
7501 if (TREE_CODE (imag) == REAL_CST in fold_builtin_cproj()
7502 && real_isinf (TREE_REAL_CST_PTR (imag))) in fold_builtin_cproj()
[all …]
H A Dfold-const.c1249 tree real, imag; in const_binop() local
1256 imag = const_binop (code, i1, i2); in const_binop()
1268 imag = const_binop (PLUS_EXPR, in const_binop()
1335 imag = const_binop (MULT_EXPR, i1, ratio); in const_binop()
1336 imag = const_binop (MINUS_EXPR, imag, r1); in const_binop()
1337 imag = const_binop (code, imag, div); in const_binop()
1356 imag = const_binop (MULT_EXPR, r1, ratio); in const_binop()
1357 imag = const_binop (MINUS_EXPR, i1, imag); in const_binop()
1358 imag = const_binop (code, imag, div); in const_binop()
1367 if (real && imag) in const_binop()
[all …]
H A Dtree.h1532 #define TREE_IMAGPART(NODE) (COMPLEX_CST_CHECK (NODE)->complex.imag)
1537 tree imag; member
H A Dtree.c1560 build_complex (tree type, tree real, tree imag) in build_complex() argument
1565 TREE_IMAGPART (t) = imag; in build_complex()
1567 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag); in build_complex()
/dragonfly/contrib/gcc-8.0/gcc/
H A Dtree-complex.c136 find_lattice_value_parts (tree real, tree imag) in find_lattice_value_parts() argument
142 i = some_nonzerop (imag); in find_lattice_value_parts()
160 tree real, imag; in find_lattice_value() local
169 imag = TREE_IMAGPART (t); in find_lattice_value()
176 return find_lattice_value_parts (real, imag); in find_lattice_value()
H A Dfunction.c3523 rtx tmp, real, imag; in assign_parms_unsplit_complex() local
3527 imag = DECL_RTL (fnargs[i + 1]); in assign_parms_unsplit_complex()
3531 imag = gen_lowpart_SUBREG (inner, imag); in assign_parms_unsplit_complex()
3551 emit_move_insn (imem, imag); in assign_parms_unsplit_complex()
3557 tmp = gen_rtx_CONCAT (DECL_MODE (parm), real, imag); in assign_parms_unsplit_complex()
3561 imag = DECL_INCOMING_RTL (fnargs[i + 1]); in assign_parms_unsplit_complex()
3565 imag = gen_lowpart_SUBREG (inner, imag); in assign_parms_unsplit_complex()
3567 tmp = gen_rtx_CONCAT (DECL_MODE (parm), real, imag); in assign_parms_unsplit_complex()
H A Dfold-const.c1385 tree real, imag; in const_binop() local
1392 imag = const_binop (code, i1, i2); in const_binop()
1404 imag = const_binop (PLUS_EXPR, in const_binop()
1471 imag = const_binop (MULT_EXPR, i1, ratio); in const_binop()
1472 imag = const_binop (MINUS_EXPR, imag, r1); in const_binop()
1473 imag = const_binop (code, imag, div); in const_binop()
1492 imag = const_binop (MULT_EXPR, r1, ratio); in const_binop()
1493 imag = const_binop (MINUS_EXPR, i1, imag); in const_binop()
1494 imag = const_binop (code, imag, div); in const_binop()
1503 if (real && imag) in const_binop()
[all …]
H A Dtree-core.h1338 tree imag; member
H A Dcalls.c4790 tree next, imag; in split_complex_types() local
4797 imag = build_tree_list (NULL_TREE, TREE_VALUE (p)); in split_complex_types()
4798 TREE_CHAIN (p) = imag; in split_complex_types()
4799 TREE_CHAIN (imag) = next; in split_complex_types()
H A Dexpmed.c393 rtx imag = read_complex_part (x, true); in flip_storage_order() local
396 imag = flip_storage_order (GET_MODE_INNER (mode), imag); in flip_storage_order()
398 return gen_rtx_CONCAT (mode, real, imag); in flip_storage_order()
/dragonfly/contrib/gcc-4.7/gcc/cp/
H A Dtypeck.c4394 tree real, imag; in cp_build_binary_op() local
4415 imag = cp_build_unary_op (IMAGPART_EXPR, op0, 1, complain); in cp_build_binary_op()
4421 imag = build2 (resultcode, real_type, imag, op1); in cp_build_binary_op()
4440 imag = build2 (resultcode, real_type, op0, imag); in cp_build_binary_op()
4447 imag = build1 (NEGATE_EXPR, real_type, imag); in cp_build_binary_op()
4454 imag = fold_if_not_in_template (imag); in cp_build_binary_op()
4455 result = build2 (COMPLEX_EXPR, result_type, real, imag); in cp_build_binary_op()
5192 tree real, imag; in cp_build_unary_op() local
5196 imag = cp_build_unary_op (IMAGPART_EXPR, arg, 1, complain); in cp_build_unary_op()
5198 if (real == error_mark_node || imag == error_mark_node) in cp_build_unary_op()
[all …]
H A Dcall.c5797 tree imag = CONSTRUCTOR_ELT (expr, 1)->value; in convert_like_real() local
5800 imag = perform_implicit_conversion (TREE_TYPE (totype), in convert_like_real()
5801 imag, complain); in convert_like_real()
5802 expr = build2 (COMPLEX_EXPR, totype, real, imag); in convert_like_real()
/dragonfly/contrib/gcc-8.0/gcc/cp/
H A Dtypeck.c5244 tree real, imag; in cp_build_binary_op() local
5265 imag = cp_build_unary_op (IMAGPART_EXPR, op0, true, complain); in cp_build_binary_op()
5271 imag = build2 (resultcode, real_type, imag, op1); in cp_build_binary_op()
5285 imag = cp_build_unary_op (IMAGPART_EXPR, op1, true, complain); in cp_build_binary_op()
5290 imag = build2 (resultcode, real_type, op0, imag); in cp_build_binary_op()
5297 imag = build1 (NEGATE_EXPR, real_type, imag); in cp_build_binary_op()
5303 result = build2 (COMPLEX_EXPR, result_type, real, imag); in cp_build_binary_op()
6199 tree real, imag; in cp_build_unary_op() local
6203 imag = cp_build_unary_op (IMAGPART_EXPR, arg, true, complain); in cp_build_unary_op()
6205 if (real == error_mark_node || imag == error_mark_node) in cp_build_unary_op()
[all …]
H A Dcall.c6910 tree imag = CONSTRUCTOR_ELT (expr, 1)->value; in convert_like_real() local
6913 imag = perform_implicit_conversion (TREE_TYPE (totype), in convert_like_real()
6914 imag, complain); in convert_like_real()
6915 expr = build2 (COMPLEX_EXPR, totype, real, imag); in convert_like_real()
/dragonfly/contrib/gcc-8.0/gcc/c/
H A Dc-typeck.c4424 tree real, imag; in build_unary_op() local
4434 imag = build_unary_op (EXPR_LOCATION (arg), IMAGPART_EXPR, arg, in build_unary_op()
4437 if (real == error_mark_node || imag == error_mark_node) in build_unary_op()
4440 real, imag); in build_unary_op()
11892 tree real, imag; in build_binary_op() local
11919 imag = build_unary_op (EXPR_LOCATION (orig_op0), IMAGPART_EXPR, in build_binary_op()
11926 imag = build2 (resultcode, real_type, imag, op1); in build_binary_op()
11941 imag = build_unary_op (EXPR_LOCATION (orig_op1), IMAGPART_EXPR, in build_binary_op()
11947 imag = build2 (resultcode, real_type, op0, imag); in build_binary_op()
11954 imag = build1 (NEGATE_EXPR, real_type, imag); in build_binary_op()
[all …]

12