HomeSort by relevance Sort by last modified time
    Searched refs:Imag (Results 1 - 16 of 16) 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 161 UNARYOP_FALLBACK(Real) UNARYOP_FALLBACK(Imag)
RecursiveASTVisitor.h 47 OPERATOR(Not) OPERATOR(LNot) OPERATOR(Real) OPERATOR(Imag) \
    [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 82 /// EmitStoreOfComplex - Store the specified real/imag parts into the
190 // LNot,Real,Imag never return complex.
317 /// load the real and imaginary pieces, returning them as Real/Imag.
327 llvm::Value *Real = nullptr, *Imag = nullptr;
336 Imag = Builder.CreateLoad(ImagP, isVolatile, SrcPtr.getName() + ".imag");
339 return ComplexPairTy(Real, Imag);
342 /// EmitStoreOfComplex - Store the specified real/imag parts into the
374 llvm::Value *Imag = CGF.EmitScalarExpr(IL->getSubExpr());
375 return ComplexPairTy(llvm::Constant::getNullValue(Imag->getType()), Imag)
    [all...]
CGBuiltin.cpp 486 Value *Imag = ComplexVal.second;
488 Imag->getType()->isFPOrFPVectorTy()
489 ? llvm::ConstantFP::getZeroValueForNegation(Imag->getType())
490 : llvm::Constant::getNullValue(Imag->getType());
492 Imag = Builder.CreateFSub(Zero, Imag, "sub");
493 return RValue::getComplex(std::make_pair(Real, Imag));
    [all...]
CGCall.cpp     [all...]
TargetInfo.cpp     [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
go.y     [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
go.y     [all...]
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
go.y     [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
go.y     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 267 void addComplexUnchecked(QualType EltTy, bool Imag) {
269 Entry.ArrayIndex = Imag;
    [all...]
ItaniumMangle.cpp     [all...]

Completed in 409 milliseconds