| /src/external/apache2/llvm/dist/clang/lib/Headers/openmp_wrappers/ |
| complex_cmath.h | 35 return hypot(__c.real(), __c.imag()); 41 return atan2(__c.imag(), __c.real()); 61 if (std::isinf(__c.imag())) 62 return abs(__c.imag()); 63 return __c.real() * __c.real() + __c.imag() * __c.imag(); 69 return std::complex<_Tp>(__c.real(), -__c.imag()); 76 if (std::isinf(__c.real()) || std::isinf(__c.imag())) 77 __r = std::complex<_Tp>(INFINITY, copysign(_Tp(0), __c.imag())); 122 if (std::isinf(__x.imag())) [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ppc/ |
| divtc3.c | 41 DD imag = { .ld = __gcc_qdiv(imagNumerator, denom) }; local 45 imag.s.hi = crt_scalbn(imag.s.hi, -ilogbw); 46 imag.s.lo = crt_scalbn(imag.s.lo, -ilogbw); 48 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi)) 59 imag.s.hi = crt_copysign(CRT_INFINITY,cDD.s.hi) * bDD.s.hi; 60 imag.s.lo = 0.0; 70 imag.s.hi = CRT_INFINITY * (bDD.s.hi*cDD.s.hi - aDD.s.hi*dDD.s.hi); 71 imag.s.lo = 0.0 [all...] |
| multc3.c | 29 DD imag = { .ld = __gcc_qadd(ad,bc) }; local 31 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi)) 80 imag.s.hi = CRT_INFINITY * (aDD.s.hi*dDD.s.hi + bDD.s.hi*cDD.s.hi); 81 imag.s.lo = 0.0; 87 __imag__ z = imag.ld;
|
| /src/external/lgpl3/mpc/dist/tests/ |
| tpl_mpc.c | 44 tpl_read_ternary(datafile_context, &ternarypair->imag);
|
| print_parameter.c | 102 MPFR_INEX_STR (params->P[index].mpc_inex_data.imag));
|
| check_data.c | 59 expected->mpc_inex_data.imag);
|
| Makefile.am | 61 div_ui.dsc exp.dsc fma.dsc fr_div.dsc fr_sub.dsc imag.dsc log.dsc \
|
| double_rounding.c | 135 params->P[offset].mpc_inex_data.imag = inex_im;
|
| mpc-tests.h | 202 int imag; member in struct:__anon8640
|
| /src/external/lgpl3/mpc/dist/src/ |
| Makefile.am | 27 get_version.c get_x.c imag.c init2.c init3.c inp_str.c log.c log10.c \
|
| /src/external/lgpl3/mpc/lib/libmpc/ |
| Makefile | 55 imag.c \
|
| /src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| trans-const.cc | 354 tree imag = gfc_conv_mpfr_to_tree (mpc_imagref (expr->value.complex), local 358 real, imag);
|
| primary.cc | 230 convert_complex (gfc_expr *real, gfc_expr *imag, int kind) 235 mpc_set_fr_fr (e->value.complex, real->value.real, imag->value.real, 1416 gfc_expr *e, *real, *imag; local 1424 real = imag = e = NULL; 1462 m = match_complex_part (&imag); 1488 if (imag->ts.type == BT_REAL) 1489 kind = gfc_kind_max (real, imag); 1495 if (imag->ts.type == BT_REAL) 1496 kind = imag->ts.kind; 1506 if (imag->ts.type != BT_REAL || kind != imag->ts.kind [all...] |
| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| trans-const.cc | 354 tree imag = gfc_conv_mpfr_to_tree (mpc_imagref (expr->value.complex), local 358 real, imag);
|
| primary.cc | 230 convert_complex (gfc_expr *real, gfc_expr *imag, int kind) 235 mpc_set_fr_fr (e->value.complex, real->value.real, imag->value.real, 1408 gfc_expr *e, *real, *imag; local 1416 real = imag = e = NULL; 1454 m = match_complex_part (&imag); 1480 if (imag->ts.type == BT_REAL) 1481 kind = gfc_kind_max (real, imag); 1487 if (imag->ts.type == BT_REAL) 1488 kind = imag->ts.kind; 1498 if (imag->ts.type != BT_REAL || kind != imag->ts.kind [all...] |
| /src/external/bsd/pcc/dist/pcc/cc/ccom/ |
| pftn.c | 1715 int class, qual, sig, uns, cmplx, imag, err, align; member in struct:typctx 1842 case IMAG: 1843 tc->imag = 1; 1869 if (tc.cmplx || tc.imag) { 1872 if ((tc.cmplx && tc.imag) || tc.sig || tc.uns || 2984 static char *real, *imag; variable 3004 imag = addname("__imag"); 3010 soumemb(p, imag, 0); 3113 p = comop(p, buildtree(ASSIGN, structref(ccopy(q), DOT, imag), i)); 3125 structref(ccopy(q), DOT, imag), [all...] |
| /src/external/bsd/pcc/dist/pcc/cc/cxxcom/ |
| pftn.c | 1731 int class, qual, sig, uns, cmplx, imag, err; member in struct:typctx 1841 case IMAG: 1842 tc->imag = 1; 1867 if (tc.cmplx || tc.imag) { 1870 if ((tc.cmplx && tc.imag) || tc.sig || tc.uns || 2957 static char *real, *imag; variable 2975 imag = addname("__imag"); 2981 soumemb(p, imag, 0); 3048 p = comop(p, buildtree(ASSIGN, structref(ccopy(q), DOT, imag), i)); 3060 structref(ccopy(q), DOT, imag), [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| gimple-range-fold.cc | 406 wide_int imag = wi::to_wide (TREE_IMAGPART (cst)); local 407 res.intersect (imag, imag); 432 tree imag = TREE_REALPART (cst); local 433 int_range<2> tmp (imag, imag);
|
| tree-complex.cc | 81 imag PHIs if real and/or imag PHIs contain temporarily 135 and IMAG. */ 138 find_lattice_value_parts (tree real, tree imag) 144 i = some_nonzerop (imag); 162 tree real, imag; local 171 imag = TREE_IMAGPART (t); 178 return find_lattice_value_parts (real, imag); 380 the real/imag from/to 0/1; the ^ performs the comparison. */ 483 imag_p ? "$imag" : "$real" [all...] |
| function.cc | 2395 because the usual place might not have the imag part 3613 rtx tmp, real, imag; 3617 imag = DECL_RTL (fnargs[i + 1]); 3621 imag = gen_lowpart_SUBREG (inner, imag); 3632 /* split_complex_arg put the real and imag parts in 3641 emit_move_insn (imem, imag); 3647 tmp = gen_rtx_CONCAT (DECL_MODE (parm), real, imag); 3651 imag = DECL_INCOMING_RTL (fnargs[i + 1]); 3655 imag = gen_lowpart_SUBREG (inner, imag) 3600 rtx tmp, real, imag; local [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| valarith.c | 1776 struct value *imag = value_imaginary_part (arg1); 1779 imag = value_neg (imag); 1780 return value_literal_complex (real, imag, type); 1828 struct value *imag = value_imaginary_part (arg1); 1830 imag = value_neg (imag); 1831 return value_literal_complex (real, imag, type); 1771 struct value *imag = value_imaginary_part (arg1); local 1823 struct value *imag = value_imaginary_part (arg1); local
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| valarith.c | 1776 struct value *imag = value_imaginary_part (arg1); 1779 imag = value_neg (imag); 1780 return value_literal_complex (real, imag, type); 1828 struct value *imag = value_imaginary_part (arg1); 1830 imag = value_neg (imag); 1831 return value_literal_complex (real, imag, type); 1771 struct value *imag = value_imaginary_part (arg1); local 1823 struct value *imag = value_imaginary_part (arg1); local
|
| /src/external/gpl3/gcc/dist/gcc/ |
| gimple-range-fold.cc | 501 int_range<1> imag (TREE_TYPE (TREE_IMAGPART (cst)), w, w); 502 res.intersect (imag); 528 wide_int imag = wi::to_wide (TREE_REALPART (cst)); local 529 int_range<2> tmp (TREE_TYPE (TREE_REALPART (cst)), imag, imag);
|
| convert.cc | 1017 tree imag = convert (subtype, integer_zero_node); local 1018 if (error_operand_p (real) || error_operand_p (imag)) 1020 return build2 (COMPLEX_EXPR, type, real, imag);
|
| tree-complex.cc | 81 imag PHIs if real and/or imag PHIs contain temporarily 135 and IMAG. */ 138 find_lattice_value_parts (tree real, tree imag) 144 i = some_nonzerop (imag); 162 tree real, imag; local 171 imag = TREE_IMAGPART (t); 178 return find_lattice_value_parts (real, imag); 385 the real/imag from/to 0/1; the ^ performs the comparison. */ 488 imag_p ? "$imag" : "$real" [all...] |