HomeSort by relevance Sort by last modified time
    Searched refs:destType (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/swiftshader/src/Reactor/
Nucleus.hpp 106 static Value *createTrunc(Value *V, Type *destType);
107 static Value *createZExt(Value *V, Type *destType);
108 static Value *createSExt(Value *V, Type *destType);
109 static Value *createFPToSI(Value *V, Type *destType);
110 static Value *createSIToFP(Value *V, Type *destType);
111 static Value *createFPTrunc(Value *V, Type *destType);
112 static Value *createFPExt(Value *V, Type *destType);
113 static Value *createBitCast(Value *V, Type *destType);
SubzeroReactor.cpp 994 static Value *createCast(Ice::InstCast::OpKind op, Value *v, Type *destType)
996 if(v->getType() == T(destType))
1001 Ice::Variable *result = ::function->makeVariable(T(destType));
1008 Value *Nucleus::createTrunc(Value *v, Type *destType)
1010 return createCast(Ice::InstCast::Trunc, v, destType);
1013 Value *Nucleus::createZExt(Value *v, Type *destType)
1015 return createCast(Ice::InstCast::Zext, v, destType);
1018 Value *Nucleus::createSExt(Value *v, Type *destType)
1020 return createCast(Ice::InstCast::Sext, v, destType);
1023 Value *Nucleus::createFPToSI(Value *v, Type *destType)
    [all...]
LLVMReactor.cpp 606 Value *Nucleus::createTrunc(Value *v, Type *destType)
608 return V(::builder->CreateTrunc(v, T(destType)));
611 Value *Nucleus::createZExt(Value *v, Type *destType)
613 return V(::builder->CreateZExt(v, T(destType)));
616 Value *Nucleus::createSExt(Value *v, Type *destType)
618 return V(::builder->CreateSExt(v, T(destType)));
621 Value *Nucleus::createFPToSI(Value *v, Type *destType)
623 return V(::builder->CreateFPToSI(v, T(destType)));
626 Value *Nucleus::createSIToFP(Value *v, Type *destType)
628 return V(::builder->CreateSIToFP(v, T(destType)));
    [all...]
  /external/libusb/msvc/
ddk_build.cmd 42 set destType=Win32
45 set destType=x64
50 set dstPath=%destType%\Debug
52 set dstPath=%destType%\Release
55 if exist %destType% goto md2
56 mkdir %destType%
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaExpression.java 163 public JavaExpression cast(Type destType) {
164 return (type != destType) ? destType.cast(this) : this;
ExpressionTranslator.java 356 private JavaExpression infix(Type destType, Type srcType, String infix, PExpression leftNode,
360 return JavaExpression.infix(destType, infix, left, right);
363 private JavaExpression prefix(Type destType, Type srcType, String prefix, PExpression node) {
364 return JavaExpression.prefix(destType, prefix, cast(srcType, node));
  /external/javassist/src/main/javassist/compiler/
JvstTypeChecker.java 117 int destType = MemberResolver.descToType(pt.getDescriptor());
118 exprType = destType;
CodeGen.java 898 int destType, int destDim, String destClass,
904 else if (destDim == 0 && destType == CLASS
    [all...]
JvstCodeGen.java 190 int destType = MemberResolver.descToType(pt.getDescriptor());
191 atNumCastExpr(exprType, destType);
192 exprType = destType;
  /external/clang/lib/Sema/
SemaCast.cpp 51 CastOperation(Sema &S, QualType destType, ExprResult src)
52 : Self(S), SrcExpr(src), DestType(destType),
53 ResultType(destType.getNonLValueExprType(S.Context)),
54 ValueKind(Expr::getValueKindForType(destType)),
67 QualType DestType;
120 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange);
127 if (Self.CheckObjCARCConversion(OpRange, DestType, src, CCK) ==
158 QualType DestType, bool CStyle,
163 QualType DestType, bool CStyle
    [all...]
SemaExpr.cpp     [all...]
SemaExprObjC.cpp     [all...]
SemaInit.cpp     [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 370 TypeBearer destType = (dest != null) ? dest : Type.VOID;
492 rop = Rops.ropFor(ropOpcode, destType, sources, cst);
574 rop = Rops.ropFor(ropOpcode, destType, sources, cst);
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/SPIRV/
GlslangToSpv.cpp     [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/glslang/SPIRV/
GlslangToSpv.cpp     [all...]
  /external/mesa3d/src/mesa/swrast/
s_drawpix.c 268 const GLenum destType = GL_UNSIGNED_BYTE;
283 _mesa_unpack_stencil_span(ctx, width, destType, values,
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 651 llvm::Type *destType = ConvertType(E->getType());
666 unsigned TotalSize = CGM.getDataLayout().getTypeAllocSize(destType);
684 return llvm::ConstantExpr::getAddrSpaceCast(C, destType);
    [all...]
CGCall.cpp     [all...]
CGExpr.cpp 50 llvm::PointerType *destType = Int8PtrTy;
52 destType = llvm::Type::getInt8PtrTy(getLLVMContext(), addressSpace);
54 if (value->getType() == destType) return value;
55 return Builder.CreateBitCast(value, destType);
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_drawpixels.c 816 GLenum destType = GL_UNSIGNED_BYTE;
821 _mesa_unpack_stencil_span(ctx, width, destType, sValues,
    [all...]
  /prebuilts/tools/common/m2/repository/org/checkerframework/dataflow/1.8.10/
dataflow-1.8.10.jar 
  /external/guice/extensions/persist/lib/
javassist.jar 
  /external/mesa3d/src/mesa/drivers/common/
meta.c     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 654 milliseconds

1 2 3 4