代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/233448/4682484
c complex-3.c
struct complex
{
float r;
float i;
};
struct complex cmplx (float, float);
struct complex
f (float a, float b)
{
struct complex c;
c.r = a;
c.i = b;
return c;
}
main ()
{
struct compl
www.eeworm.com/read/233448/4682611
c complex-6.c
/* This test tests complex conjugate and passing/returning of
complex parameter. */
#include
#include
int err;
#define TEST(TYPE, FUNC) \
__complex__ TYPE \
ctest_
www.eeworm.com/read/233448/4683265
c complex-1.c
extern void u (int, int);
extern void v (float, float);
void f (__complex__ int x)
{
u (0, x);
}
void g (__complex__ float x)
{
v (0, x);
}
www.eeworm.com/read/233448/4684075
c complex-2.c
/* Allow complex types in system headers even with -std=iso9899:1990
-pedantic-errors. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:19
www.eeworm.com/read/233448/4684344
c complex-1.c
/* { dg-do run } */
/* { dg-options "-O" } */
/* Verify that the 6th complex floating-point argument is
correctly passed as unnamed argument on SPARC64. */
extern void abort(void);
void foo(
www.eeworm.com/read/233448/4685062
h complex-2.h
/* Allow complex types in system headers even with -std=iso9899:1990
-pedantic-errors. Header file. */
#pragma GCC system_header
_Complex double x;
www.eeworm.com/read/233448/4685568
c complex-3.c
/* Verify that rtl expansion cleanup doesn't get too aggressive about
code dealing with complex CONCATs. */
/* { dg-do run } */
/* { dg-options "-O -fno-tree-sra" } */
extern void abort (void);
e
www.eeworm.com/read/233448/4690292
h std_complex.h
// The template and inlines for the -*- C++ -*- complex number classes.
// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
// Free Software Foundation, Inc.
//
// This file is part
www.eeworm.com/read/233448/4691943
cc complex_value.cc
// { dg-do run { xfail broken_cplxf_arg } }
// { dg-options "-O0" }
// 2000-11-20
// Benjamin Kosnik bkoz@redhat.com
// Copyright (C) 2000, 2003, 2004 Free Software Foundation, Inc.
//
// This file i
www.eeworm.com/read/233448/4691946
cc buggy_complex.cc
// 2000-02-09
// Gabriel Dos Reis
// Copyright (C) 1999 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// softwa