Home | History | Annotate | Download | only in ruby

Lines Matching refs:Imag

4   the complex Constructor method, and the Real and Imag complex
27 static ID imag_id = rb_intern("imag");
43 static ID imag_id = rb_intern("imag");
55 %define %swig_fromcplx_conv(Type, Real, Imag)
62 VALUE im = rb_float_new(Imag(c));
69 %define %swig_cplxdbl_conv(Type, Constructor, Real, Imag)
80 VALUE imag = SWIG_Complex_Imaginary(o);
84 SWIG_AsVal_double( imag, &im );
99 %swig_fromcplx_conv(Type, Real, Imag);
103 %define %swig_cplxflt_conv(Type, Constructor, Real, Imag)
113 VALUE imag = SWIG_Complex_Imaginary(o);
117 SWIG_AsVal_double( imag, &im );
138 %swig_fromcplx_conv(Type, Real, Imag);
141 #define %swig_cplxflt_convn(Type, Constructor, Real, Imag) \
142 %swig_cplxflt_conv(Type, Constructor, Real, Imag)
145 #define %swig_cplxdbl_convn(Type, Constructor, Real, Imag) \
146 %swig_cplxdbl_conv(Type, Constructor, Real, Imag)