Searched refs:im (Results 1 - 25 of 119) sorted by relevance

12345

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.brendan/
H A Doverload8.C3 typedef struct{double re,im;} complex; member in struct:__anon5034
4 class Complex{public:double re,im; member in class:Complex
5 inline void operator=(Complex&X){re=X.re; im=X.im;}};
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.brendan/
H A Doverload8.C3 typedef struct{double re,im;} complex; member in struct:__anon3400
4 class Complex{public:double re,im; member in class:Complex
5 inline void operator=(Complex&X){re=X.re; im=X.im;};};
/netbsd-6-1-5-RELEASE/x11/lib/xlibi18n/
H A DMakefile3 SUBDIR= im lc om
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp991.C7 double im; member in class:Complex
8 Complex(double r,double i) : re(r), im(i) {}
19 double nr = cos(arg.re)*cosh(arg.im);
20 double ni = -sin(arg.re)*sinh(arg.im);
H A Dp6611.C6 COMPLEX(double a, double b=0) { re = a; im = b; }
10 double im; member in class:COMPLEX
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp991.C7 double im; member in class:Complex
8 Complex(double r,double i) : re(r), im(i) {}
19 double nr = cos(arg.re)*cosh(arg.im);
20 double ni = -sin(arg.re)*sinh(arg.im);
H A Dp6611.C6 COMPLEX(double a, double b=0) { re = a; im = b; }
10 double im; member in class:COMPLEX
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compat/
H A Dstruct-ret-1.c1 typedef struct { int re; int im; } T; member in struct:__anon5189
11 x.im = arg2;
21 if (result.re != 3 || result.im != 4)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compat/
H A Dstruct-ret-1.c1 typedef struct { int re; int im; } T; member in struct:__anon3555
11 x.im = arg2;
21 if (result.re != 3 || result.im != 4)
/netbsd-6-1-5-RELEASE/dist/ipf/perl/
H A DIsbgraph91 $im=new GD::Image($XGIF,$YGIF);
93 $white=$im->colorAllocate(255,255,255);
94 $black=$im->colorAllocate(0,0,0);
95 $pink=$im->colorAllocate(255,153,153);
96 $red=$im->colorAllocate(255,0,0);
97 $blue=$im->colorAllocate(0,0,255);
98 $green=$im->colorAllocate(0,192,51);
99 $orange=$im->colorAllocate(255,102,0);
100 $pink=$im->colorAllocate(255,153,153);
101 $teal=$im
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/opt/
H A Dpr14888.C10 float re, im; member in class:xcomplex
13 { re*=fact; im*=fact; return *this; }
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/graphite/
H A Dpr42521.c6 void foo(int im, int jm, int cond) argument
13 for (i = 0; i < im; i++)
H A Dpr42771.c7 void foo(int im, int jm, int cond) argument
15 for (i = 0; i < im; i++)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/opt/
H A Dpr14888.C10 float re, im; member in class:xcomplex
13 { re*=fact; im*=fact; return *this; }
/netbsd-6-1-5-RELEASE/external/lgpl2/mpc/dist/src/
H A Dui_ui_sub.c26 mpc_ui_ui_sub (mpc_ptr rop, unsigned long int re, unsigned long int im, argument
32 inex_im = mpfr_ui_sub (MPC_IM (rop), im, MPC_IM (op), MPC_RND_IM (rnd));
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.law/
H A Dctors12.C11 double im; member in class:complex
15 complex() { re=im=0; magic=MAGIC; }
16 complex(double d) { re=d; im=0; magic=MAGIC; }
17 complex(double d, double d2) {re=d; im=d2; magic=MAGIC; }
20 { return o << "(" << c.re << "," << c.im << ")"; }
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/bfin/
H A D20090914-1.c11 fract16 im; member in struct:complex_fract16
27 ((_sum).im, (_sum).re),
28 __builtin_bfin_compose_2x16 ((_a).im, (_a).re),
29 __builtin_bfin_compose_2x16 ((_b).im, (_b).re));
31 (r).im = __builtin_bfin_extract_hi (i);
H A D20090411-1.c11 fract16 im; member in struct:complex_fract16
20 __builtin_bfin_csqu_fr16 (__builtin_bfin_compose_2x16 ((_a).im, (_a).re));
22 (_x).im = __builtin_bfin_extract_hi (i);
H A D20090914-2.c9 fract16 im; member in struct:complex_fract16
21 i = __builtin_bfin_cmplx_mul(__builtin_bfin_compose_2x16((_a).im, (_a).re),
22 __builtin_bfin_compose_2x16((_b).im, (_b).re));
24 (r).im = __builtin_bfin_extract_hi(i);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.law/
H A Dctors12.C11 double im; member in class:complex
15 complex() { re=im=0; magic=MAGIC; }
16 complex(double d) { re=d; im=0; magic=MAGIC; }
17 complex(double d, double d2) {re=d; im=d2; magic=MAGIC; }
20 { return o << "(" << c.re << "," << c.im << ")"; }
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.pt/
H A Dtiemann2.C10 double re, im; member in class:complex
12 complex (double r, double i=0) { re = r; im = i; }
14 void print () { printf ("re = %g; im = %g;\n", re, im); }
18 double c1 = x.re * x.re + x.im * x.im;
19 double c2 = y.re * y.re + y.im * y.im;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.pt/
H A Dtiemann2.C10 double re, im; member in class:complex
12 complex (double r, double i=0) { re = r; im = i; }
14 void print () { printf ("re = %g; im = %g;\n", re, im); }
18 double c1 = x.re * x.re + x.im * x.im;
19 double c2 = y.re * y.re + y.im * y.im;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D981007-1.c5 double re,im; member in struct:complexm
13 ct.im=fabs(i)<1E-300?0.0:i;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D981007-1.c5 double re,im; member in struct:complexm
13 ct.im=fabs(i)<1E-300?0.0:i;
/netbsd-6-1-5-RELEASE/sys/dev/i2o/
H A Diop.c275 struct iop_msg *im; local
384 im = malloc(sizeof(*im) * sc->sc_maxib, M_DEVBUF, M_NOWAIT|M_ZERO);
385 if (im == NULL) {
390 sc->sc_ims = im;
393 for (i = 0; i < sc->sc_maxib; i++, im++) {
397 &im->im_xfer[0].ix_map);
403 im->im_tctx = i;
404 SLIST_INSERT_HEAD(&sc->sc_im_freelist, im, im_chain);
405 cv_init(&im
642 struct iop_msg *im; local
1064 struct iop_msg *im; local
1124 struct iop_msg *im; local
1202 struct iop_msg *im; local
1239 struct iop_msg *im; local
1299 struct iop_msg *im; local
1346 struct iop_msg *im; local
1387 struct iop_msg *im; local
1437 struct iop_msg *im; local
1461 struct iop_msg *im; local
1624 struct iop_msg *im; local
1792 iop_intr_event(device_t dv, struct iop_msg *im, void *reply) argument
1812 struct iop_msg *im; local
1846 iop_msg_free(struct iop_softc *sc, struct iop_msg *im) argument
1864 iop_msg_map(struct iop_softc *sc, struct iop_msg *im, u_int32_t *mb, void *xferaddr, int xfersize, int out, struct proc *up) argument
1967 iop_msg_map_bio(struct iop_softc *sc, struct iop_msg *im, u_int32_t *mb, void *xferaddr, int xfersize, int out) argument
2062 iop_msg_unmap(struct iop_softc *sc, struct iop_msg *im) argument
2134 iop_msg_post(struct iop_softc *sc, struct iop_msg *im, void *xmb, int timo) argument
2177 iop_msg_poll(struct iop_softc *sc, struct iop_msg *im, int timo) argument
2224 iop_msg_wait(struct iop_softc *sc, struct iop_msg *im, int timo) argument
2387 struct iop_msg *im; local
2412 struct iop_msg *im; local
2552 struct iop_msg *im; local
[all...]

Completed in 186 milliseconds

12345