Searched refs:destType (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A Dcopyimage.h23 template <typename destType, typename colorDataType>
26 template <typename sourceType, typename destType, typename colorDataType>
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
H A DExtensions3DUtil.h29 static bool canUseCopyTextureCHROMIUM(GLenum destFormat, GLenum destType, GLint level);
H A DExtensions3DUtil.cpp84 bool Extensions3DUtil::canUseCopyTextureCHROMIUM(GLenum destFormat, GLenum destType, GLint level) argument
89 && destType == GL_UNSIGNED_BYTE
H A DDrawingBuffer.h159 GLenum destType, GLint level, bool premultiplyAlpha, bool flipY, bool fromFrontBuffer = false);
H A DDrawingBuffer.cpp445 bool DrawingBuffer::copyToPlatformTexture(WebGraphicsContext3D* context, Platform3DObject texture, GLenum internalFormat, GLenum destType, GLint level, bool premultiplyAlpha, bool flipY, bool fromFrontBuffer) argument
462 if (!Extensions3DUtil::canUseCopyTextureCHROMIUM(internalFormat, destType, level))
486 context->copyTextureCHROMIUM(GL_TEXTURE_2D, sourceTexture, texture, level, internalFormat, destType);
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJavaExpression.java163 public JavaExpression cast(Type destType) { argument
164 return (type != destType) ? destType.cast(this) : this;
H A DExpressionTranslator.java356 private JavaExpression infix(Type destType, Type srcType, String infix, PExpression leftNode, argument
360 return JavaExpression.infix(destType, infix, left, right);
363 private JavaExpression prefix(Type destType, Type srcType, String prefix, PExpression node) { argument
364 return JavaExpression.prefix(destType, prefix, cast(srcType, node));
/external/chromium_org/third_party/angle/src/common/
H A Dmathutil.h140 template <typename destType, typename sourceType>
141 destType bitCast(const sourceType &source)
143 size_t copySize = std::min(sizeof(destType), sizeof(sourceType));
144 destType output;
/external/javassist/src/main/javassist/compiler/
H A DJvstTypeChecker.java117 int destType = MemberResolver.descToType(pt.getDescriptor());
118 exprType = destType;
H A DCodeGen.java898 int destType, int destDim, String destClass,
904 else if (destDim == 0 && destType == CLASS
1408 void atNumCastExpr(int srcType, int destType) argument
1411 if (srcType == destType)
1416 int dtype = typePrecedence(destType);
1422 if (destType == DOUBLE)
1424 else if (destType == FLOAT)
1426 else if (destType == LONG)
1428 else if (destType == SHORT)
1430 else if (destType
897 invalidDim(int srcType, int srcDim, String srcClass, int destType, int destDim, String destClass, boolean isCast) argument
[all...]
H A DJvstCodeGen.java190 int destType = MemberResolver.descToType(pt.getDescriptor());
191 atNumCastExpr(exprType, destType);
192 exprType = destType;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageBuffer.cpp169 bool ImageBuffer::copyToPlatformTexture(WebGraphicsContext3D* context, Platform3DObject texture, GLenum internalFormat, GLenum destType, GLint level, bool premultiplyAlpha, bool flipY) argument
174 if (!Extensions3DUtil::canUseCopyTextureCHROMIUM(internalFormat, destType, level))
201 context->copyTextureCHROMIUM(GL_TEXTURE_2D, sourceTexture, texture, level, internalFormat, destType);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DBlit11.h101 void addSwizzleShaderToMap(GLenum destType, D3D11_SRV_DIMENSION viewDimension, ID3D11PixelShader *ps);
H A Dformatutils11.cpp106 GLenum destType; member in struct:rx::d3d11::D3D11FastCopyFormat
109 D3D11FastCopyFormat(GLenum destFormat, GLenum destType, ColorCopyFunction copyFunction) argument
110 : destFormat(destFormat), destType(destType), copyFunction(copyFunction)
238 info.fastCopyFunctions.insert(std::make_pair(std::make_pair(i->second.destFormat, i->second.destType), i->second.copyFunction));
H A DBlit11.cpp935 void Blit11::addSwizzleShaderToMap(GLenum destType, D3D11_SRV_DIMENSION viewDimension, ID3D11PixelShader *ps) argument
938 params.mDestinationType = destType;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A Dformatutils9.cpp29 GLenum destType; member in struct:rx::d3d9::D3D9FastCopyFormat
32 D3D9FastCopyFormat(GLenum destFormat, GLenum destType, ColorCopyFunction copyFunction) argument
33 : destFormat(destFormat), destType(destType), copyFunction(copyFunction)
89 info.fastCopyFunctions.insert(std::make_pair(std::make_pair(i->second.destFormat, i->second.destType), i->second.copyFunction));
/external/clang/lib/Sema/
H A DSemaCast.cpp50 CastOperation(Sema &S, QualType destType, ExprResult src) argument
51 : Self(S), SrcExpr(src), DestType(destType),
52 ResultType(destType.getNonLValueExprType(S.Context)),
53 ValueKind(Expr::getValueKindForType(destType)),
313 QualType destType,
330 if (!destType->isRecordType() && !srcType->isRecordType())
333 InitializedEntity entity = InitializedEntity::InitializeTemporary(destType);
378 << CT << srcType << destType
388 SourceRange opRange, Expr *src, QualType destType,
391 tryDiagnoseOverloadedCast(S, castType, opRange, src, destType,
311 tryDiagnoseOverloadedCast(Sema &S, CastType CT, SourceRange range, Expr *src, QualType destType, bool listInitialization) argument
387 diagnoseBadCast(Sema &S, unsigned msg, CastType castType, SourceRange opRange, Expr *src, QualType destType, bool listInitialization) argument
[all...]
H A DSemaExpr.cpp5614 QualType destType = S.Context.getPointerType(S.Context.VoidTy); local
5615 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast);
5616 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
5617 return destType;
5647 QualType destType = S.Context.getPointerType(destPointee); local
5649 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_NoOp);
5651 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
5652 return destType;
5657 QualType destType = S.Context.getPointerType(destPointee); local
5659 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_NoO
5917 QualType destType = Context.getPointerType(destPointee); local
5937 QualType destType = Context.getPointerType(destPointee); local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_drawpix.c266 const GLenum destType = GL_UNSIGNED_BYTE; local
281 _mesa_unpack_stencil_span(ctx, width, destType, values,
/external/mesa3d/src/mesa/swrast/
H A Ds_drawpix.c266 const GLenum destType = GL_UNSIGNED_BYTE; local
281 _mesa_unpack_stencil_span(ctx, width, destType, values,
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp604 llvm::Type *destType = ConvertType(E->getType());
619 unsigned TotalSize = CGM.getDataLayout().getTypeAllocSize(destType);
637 return llvm::ConstantExpr::getAddrSpaceCast(C, destType);
H A DCGCall.cpp2128 llvm::PointerType *destType = local
2133 args.add(RValue::get(llvm::ConstantPointerNull::get(destType)),
2139 llvm::Value *temp = CGF.CreateTempAlloca(destType->getElementType(),
2152 cast<llvm::PointerType>(destType->getElementType()));
2169 llvm::ConstantPointerNull::get(destType),
2192 src = CGF.Builder.CreateBitCast(src, destType->getElementType(),
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_drawpixels.c886 GLenum destType = GL_UNSIGNED_BYTE; local
891 _mesa_unpack_stencil_span(ctx, width, destType, sValues,
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_drawpixels.c886 GLenum destType = GL_UNSIGNED_BYTE; local
891 _mesa_unpack_stencil_span(ctx, width, destType, sValues,
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebGraphicsContext3D.h410 WGC3Duint destId, WGC3Dint level, WGC3Denum internalFormat, WGC3Denum destType) { }
409 copyTextureCHROMIUM(WGC3Denum target, WGC3Duint sourceId, WGC3Duint destId, WGC3Dint level, WGC3Denum internalFormat, WGC3Denum destType) argument

Completed in 612 milliseconds

12