代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/366702/2867319
c complex2.c
// PR 22022
// { dg-do compile }
// { dg-options "-O2" }
_Complex float f();
_Complex float g();
_Complex float h()throw();
void i(_Complex float)throw();
void j(void)
{
_Complex float x = h();
www.eeworm.com/read/366702/2867395
c complex1.c
// PR tree-opt/21994
// { dg-do compile }
// { dg-options "-O2" }
_Complex float f(void);
_Complex float g(void) throw()
{
return f();
}
www.eeworm.com/read/366702/2867440
c complex6.c
// PR 30168
// { dg-do compile }
// { dg-options "-O2" }
struct aaa
{
aaa(_Complex float __z) ;
_Complex float _M_value;
};
aaa::aaa(_Complex float __z)
{
__z*=2.0f;
_M_value = __z;
}
www.eeworm.com/read/366702/2868159
c complex1.c
// PR middle-end/18882
// Origin: Petr Mikulik
// Testcase by Wolfgang Bangerth
// { dg-do run }
// { dg-options "" }
extern "C" void abort ();
struc
www.eeworm.com/read/366702/2871126
c complex1.c
// { dg-do run }
// { dg-options "" }
// This test makes sure that the stuff in lex.c (real_yylex) is
// set up to handle real and imag numbers correctly. This test is against
// a bug where the co
www.eeworm.com/read/366702/2878040
c complex-2.c
__complex__ double
f (__complex__ double x, __complex__ double y)
{
x += y;
return x;
}
__complex__ double ag = 1.0 + 1.0i;
__complex__ double bg = -2.0 + 2.0i;
main ()
{
__complex__ double a,
www.eeworm.com/read/366702/2878115
c complex-1.c
/* Test for builtin conj, creal, cimag. */
/* Origin: Joseph Myers */
extern float _Complex conjf (float _Complex);
extern double _Complex conj (double _Complex);
extern long doubl
www.eeworm.com/read/366702/2878332
c complex-7.c
/* Test argument passing of complex values. The MIPS64 compiler had a
bug when they were split between registers and the stack. */
/* Origin: Joseph Myers */
volatile _
www.eeworm.com/read/366702/2878379
c complex-1.c
double
g0 (double x)
{
return 1.0;
}
double
g1 (double x)
{
return -1.0;
}
double
g2 (double x)
{
return 0.0;
}
__complex__ double
xcexp (__complex__ double x)
{
double r;
r = g0 (__real
www.eeworm.com/read/366702/2878570
c complex-5.c
float __complex__
p (float __complex__ a, float __complex__ b)
{
return a + b;
}
float __complex__ x = 1.0 + 14.0 * (1.0fi);
float __complex__ y = 7.0 + 5.0 * (1.0fi);
float __complex__ w = 8.