HomeSort by relevance Sort by last modified time
    Searched refs:Imag (Results 1 - 13 of 13) sorted by null

  /prebuilts/misc/common/swig/include/2.0.11/python/
pycomplex.swg 4 the complex Constructor method, and the Real and Imag complex
11 %define %swig_fromcplx_conv(Type, Real, Imag)
17 return PyComplex_FromDoubles(Real(c), Imag(c));
23 %define %swig_cplxdbl_conv(Type, Constructor, Real, Imag)
44 %swig_fromcplx_conv(Type, Real, Imag);
48 %define %swig_cplxflt_conv(Type, Constructor, Real, Imag)
76 %swig_fromcplx_conv(Type, Real, Imag);
79 #define %swig_cplxflt_convn(Type, Constructor, Real, Imag) \
80 %swig_cplxflt_conv(Type, Constructor, Real, Imag)
83 #define %swig_cplxdbl_convn(Type, Constructor, Real, Imag) \
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/octave/
octcomplex.swg 4 the complex Constructor method, and the Real and Imag complex
11 %define %swig_fromcplx_conv(Type, OctConstructor, Real, Imag)
17 return octave_value(OctConstructor(Real(c), Imag(c)));
23 %define %swig_cplxdbl_conv(Type, Constructor, Real, Imag)
33 *val=Constructor(c.real(),c.imag());
48 %swig_fromcplx_conv(Type, Complex, Real, Imag);
52 %define %swig_cplxflt_conv(Type, Constructor, Real, Imag)
62 double im = c.imag();
84 %swig_fromcplx_conv(Type, FloatComplex, Real, Imag);
87 #define %swig_cplxflt_convn(Type, Constructor, Real, Imag) \
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
rubycomplex.swg 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)
    [all...]
  /external/clang/include/clang/AST/
APValue.h 72 APSInt Real, Imag;
73 ComplexAPSInt() : Real(1), Imag(1) {}
76 APFloat Real, Imag;
77 ComplexAPFloat() : Real(0.0), Imag(0.0) {}
226 return ((ComplexAPSInt*)(char*)Data.buffer)->Imag;
242 return ((ComplexAPFloat*)(char*)Data.buffer)->Imag;
367 ((ComplexAPSInt *)(char *)Data.buffer)->Imag = std::move(I);
374 ((ComplexAPFloat *)(char *)Data.buffer)->Imag = std::move(I);
StmtVisitor.h 159 UNARYOP_FALLBACK(Real) UNARYOP_FALLBACK(Imag)
DataRecursiveASTVisitor.h 44 OPERATOR(Not) OPERATOR(LNot) OPERATOR(Real) OPERATOR(Imag) \
    [all...]
RecursiveASTVisitor.h 44 OPERATOR(Not) OPERATOR(LNot) OPERATOR(Real) OPERATOR(Imag) \
    [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 78 /// EmitStoreOfComplex - Store the specified real/imag parts into the
183 // LNot,Real,Imag never return complex.
294 /// load the real and imaginary pieces, returning them as Real/Imag.
309 llvm::Value *Real=nullptr, *Imag=nullptr;
321 Imag = Builder.CreateAlignedLoad(ImagP, AlignI, isVolatile,
322 SrcPtr->getName() + ".imag");
324 return ComplexPairTy(Real, Imag);
327 /// EmitStoreOfComplex - Store the specified real/imag parts into the
337 llvm::Value *ImagPtr = Builder.CreateStructGEP(Ptr, 1, "imag");
366 llvm::Value *Imag = CGF.EmitScalarExpr(IL->getSubExpr())
    [all...]
CGBuiltin.cpp 264 Value *Imag = ComplexVal.second;
266 Imag->getType()->isFPOrFPVectorTy()
267 ? llvm::ConstantFP::getZeroValueForNegation(Imag->getType())
268 : llvm::Constant::getNullValue(Imag->getType());
270 Imag = Builder.CreateFSub(Zero, Imag, "sub");
271 return RValue::getComplex(std::make_pair(Real, Imag));
    [all...]
CGCall.cpp 646 llvm::Value *ImagAddr = Builder.CreateStructGEP(LV.getAddress(), 1, "imag");
    [all...]
TargetInfo.cpp     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 249 void addComplexUnchecked(QualType EltTy, bool Imag) {
251 Entry.ArrayIndex = Imag;
    [all...]
ItaniumMangle.cpp     [all...]

Completed in 382 milliseconds