代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/340665/3279054
c complex-4.c
main ()
{
if ((__complex__ double) 0.0 != (__complex__ double) (-0.0))
abort ();
if (0.0 != -0.0)
abort ();
exit (0);
}
www.eeworm.com/read/340665/3279143
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/340665/3279247
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/340665/3283755
h std_complex.h
// The template and inlines for the -*- C++ -*- complex number classes.
// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C+
www.eeworm.com/read/340665/3284057
cc complex_value.cc
// { dg-options "-O0" }
// 2000-11-20
// Benjamin Kosnik bkoz@redhat.com
// Copyright (C) 2000, 2003 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library i
www.eeworm.com/read/340665/3284066
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
www.eeworm.com/read/339800/3294840
h std_complex.h
// The template and inlines for the -*- C++ -*- complex number classes.
// Copyright (C) 1997-1999 Cygnus Solutions
//
// This file is part of the GNU ISO C++ Library. This library is free
// softwa
www.eeworm.com/read/336095/3354719
pbt complex_app.pbt
Save Format v3.0(19990112)
appname "complex_app";
applib "complex_app.pbl";
liblist "complex_app.pbl";
type "pb";
www.eeworm.com/read/332396/3398762
xco complex_mult.xco
# BEGIN Project Options
SET flowvendor = Foundation_iSE
SET vhdlsim = True
SET verilogsim = True
SET workingdirectory = C:\work\ISE\c11
SET speedgrade = -12
SET simulationfiles = Behavioral
SET asysym
www.eeworm.com/read/318815/3562607
java complex1.java
package com.javapatterns.immutable.complex;
final public class Complex1 extends Number
implements java.io.Serializable, Cloneable, Comparable
{
/**
* The imaginary unit.
*/
static fi