Home
last modified time | relevance | path

Searched refs:srcType (Results 1 – 25 of 26) sorted by relevance

12

/external/mesa3d/src/mesa/main/
Dtexstore.c323 GLenum srcFormat, GLenum srcType, in _mesa_make_temp_float_image() argument
331 _mesa_image_row_stride(srcPacking, srcWidth, srcFormat, srcType); in _mesa_make_temp_float_image()
367 srcFormat, srcType, in _mesa_make_temp_float_image()
371 dst, srcFormat, srcType, src, in _mesa_make_temp_float_image()
435 GLenum srcFormat, GLenum srcType, in make_temp_uint_image() argument
442 _mesa_image_row_stride(srcPacking, srcWidth, srcFormat, srcType); in make_temp_uint_image()
476 srcFormat, srcType, in make_temp_uint_image()
480 dst, srcFormat, srcType, src, in make_temp_uint_image()
564 GLenum srcFormat, GLenum srcType, in _mesa_make_temp_ubyte_image() argument
603 _mesa_image_row_stride(srcPacking, srcWidth, srcFormat, srcType); in _mesa_make_temp_ubyte_image()
[all …]
Dpack.c2774 GLenum srcFormat, GLenum srcType, const GLvoid *src, in extract_uint_indexes() argument
2779 ASSERT(srcType == GL_BITMAP || in extract_uint_indexes()
2780 srcType == GL_UNSIGNED_BYTE || in extract_uint_indexes()
2781 srcType == GL_BYTE || in extract_uint_indexes()
2782 srcType == GL_UNSIGNED_SHORT || in extract_uint_indexes()
2783 srcType == GL_SHORT || in extract_uint_indexes()
2784 srcType == GL_UNSIGNED_INT || in extract_uint_indexes()
2785 srcType == GL_INT || in extract_uint_indexes()
2786 srcType == GL_UNSIGNED_INT_24_8_EXT || in extract_uint_indexes()
2787 srcType == GL_HALF_FLOAT_ARB || in extract_uint_indexes()
[all …]
Dpack.h63 GLenum srcFormat, GLenum srcType,
72 GLenum srcFormat, GLenum srcType,
80 GLenum srcFormat, GLenum srcType,
87 GLenum srcFormat, GLenum srcType,
95 GLenum srcType, const GLvoid *source,
110 GLenum srcType, const GLvoid *source,
123 GLenum srcType, const GLvoid *source,
Dtexcompress_s3tc.c174 srcType != GL_UNSIGNED_BYTE || in _mesa_texstore_rgb_dxt1()
183 srcFormat, srcType, srcAddr, in _mesa_texstore_rgb_dxt1()
192 srcFormat, srcType, 0, 0); in _mesa_texstore_rgb_dxt1()
227 srcType != GL_UNSIGNED_BYTE || in _mesa_texstore_rgba_dxt1()
236 srcFormat, srcType, srcAddr, in _mesa_texstore_rgba_dxt1()
245 srcFormat, srcType, 0, 0); in _mesa_texstore_rgba_dxt1()
280 srcType != GL_UNSIGNED_BYTE || in _mesa_texstore_rgba_dxt3()
289 srcFormat, srcType, srcAddr, in _mesa_texstore_rgba_dxt3()
297 srcFormat, srcType, 0, 0); in _mesa_texstore_rgba_dxt3()
332 srcType != GL_UNSIGNED_BYTE || in _mesa_texstore_rgba_dxt5()
[all …]
Dtexstore.h64 GLenum srcFormat, GLenum srcType, \
78 GLenum srcFormat, GLenum srcType,
87 GLenum srcFormat, GLenum srcType,
Dtexcompress_rgtc.c109 srcFormat, srcType, srcAddr, in _mesa_texstore_red_rgtc1()
156 srcFormat, srcType, srcAddr, in _mesa_texstore_signed_red_rgtc1()
204 srcFormat, srcType, srcAddr, in _mesa_texstore_rg_rgtc2()
258 srcFormat, srcType, srcAddr, in _mesa_texstore_signed_rg_rgtc2()
Dtexcompress_fxt1.c72 srcType != GL_UNSIGNED_BYTE || in _mesa_texstore_rgb_fxt1()
81 srcFormat, srcType, srcAddr, in _mesa_texstore_rgb_fxt1()
91 srcFormat, srcType, 0, 0); in _mesa_texstore_rgb_fxt1()
94 srcType) / sizeof(GLubyte); in _mesa_texstore_rgb_fxt1()
123 srcType != GL_UNSIGNED_BYTE || in _mesa_texstore_rgba_fxt1()
131 srcFormat, srcType, srcAddr, in _mesa_texstore_rgba_fxt1()
141 srcFormat, srcType, 0, 0); in _mesa_texstore_rgba_fxt1()
144 srcType) / sizeof(GLubyte); in _mesa_texstore_rgba_fxt1()
Dimage.h98 _mesa_convert_colors(GLenum srcType, const GLvoid *src,
Dfbobject.c2702 GLenum srcType = _mesa_get_format_datatype(srcFormat); in compatible_color_datatypes() local
2705 if (srcType != GL_INT && srcType != GL_UNSIGNED_INT) { in compatible_color_datatypes()
2706 assert(srcType == GL_UNSIGNED_NORMALIZED || in compatible_color_datatypes()
2707 srcType == GL_SIGNED_NORMALIZED || in compatible_color_datatypes()
2708 srcType == GL_FLOAT); in compatible_color_datatypes()
2710 srcType = GL_FLOAT; in compatible_color_datatypes()
2721 return srcType == dstType; in compatible_color_datatypes()
Dimage.c460 _mesa_convert_colors(GLenum srcType, const GLvoid *src, in _mesa_convert_colors() argument
471 ASSERT(srcType != dstType); in _mesa_convert_colors()
473 switch (srcType) { in _mesa_convert_colors()
Ddd.h201 GLenum srcFormat, GLenum srcType );
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/lang/
DSystem.java47 Class<?> srcType = src.getClass(); in arraycopy() local
49 if (!srcType.isArray() || !destType.isArray()) { in arraycopy()
53 Class<?> srcComp = srcType.getComponentType(); in arraycopy()
71 && !srcType.equals(destType)) { in arraycopy()
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_texture.c286 GLenum srcType, GLboolean fbo) in radeonChoose8888TexFormat() argument
298 if ((srcFormat == GL_RGBA && srcType == GL_UNSIGNED_INT_8_8_8_8) || in radeonChoose8888TexFormat()
299 (srcFormat == GL_RGBA && srcType == GL_UNSIGNED_BYTE && !littleEndian) || in radeonChoose8888TexFormat()
300 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_INT_8_8_8_8_REV) || in radeonChoose8888TexFormat()
301 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_BYTE && littleEndian)) { in radeonChoose8888TexFormat()
303 } else if ((srcFormat == GL_RGBA && srcType == GL_UNSIGNED_INT_8_8_8_8_REV) || in radeonChoose8888TexFormat()
304 (srcFormat == GL_RGBA && srcType == GL_UNSIGNED_BYTE && littleEndian) || in radeonChoose8888TexFormat()
305 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_INT_8_8_8_8) || in radeonChoose8888TexFormat()
306 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_BYTE && !littleEndian)) { in radeonChoose8888TexFormat()
/external/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_texture.c286 GLenum srcType, GLboolean fbo) in radeonChoose8888TexFormat() argument
298 if ((srcFormat == GL_RGBA && srcType == GL_UNSIGNED_INT_8_8_8_8) || in radeonChoose8888TexFormat()
299 (srcFormat == GL_RGBA && srcType == GL_UNSIGNED_BYTE && !littleEndian) || in radeonChoose8888TexFormat()
300 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_INT_8_8_8_8_REV) || in radeonChoose8888TexFormat()
301 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_BYTE && littleEndian)) { in radeonChoose8888TexFormat()
303 } else if ((srcFormat == GL_RGBA && srcType == GL_UNSIGNED_INT_8_8_8_8_REV) || in radeonChoose8888TexFormat()
304 (srcFormat == GL_RGBA && srcType == GL_UNSIGNED_BYTE && littleEndian) || in radeonChoose8888TexFormat()
305 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_INT_8_8_8_8) || in radeonChoose8888TexFormat()
306 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_BYTE && !littleEndian)) { in radeonChoose8888TexFormat()
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DExpressionTranslator.java356 private JavaExpression infix(Type destType, Type srcType, String infix, PExpression leftNode, in infix() argument
358 JavaExpression left = cast(srcType, leftNode); in infix()
359 JavaExpression right = cast(srcType, rightNode); in infix()
363 private JavaExpression prefix(Type destType, Type srcType, String prefix, PExpression node) { in prefix() argument
364 return JavaExpression.prefix(destType, prefix, cast(srcType, node)); in prefix()
/external/javassist/src/main/javassist/compiler/
DCodeGen.java897 private boolean invalidDim(int srcType, int srcDim, String srcClass, in invalidDim() argument
902 if (srcType == NULL) in invalidDim()
907 else if (isCast && srcDim == 0 && srcType == CLASS in invalidDim()
1364 int srcType = exprType; in atCastExpr() local
1369 atNumCastExpr(srcType, exprType); // built-in type in atCastExpr()
1390 int srcType = exprType; in checkCastExpr() local
1391 if (invalidDim(srcType, arrayDim, className, type, dim, name, true) in checkCastExpr()
1392 || srcType == VOID || type == VOID) in checkCastExpr()
1396 if (!isRefType(srcType)) in checkCastExpr()
1408 void atNumCastExpr(int srcType, int destType) in atNumCastExpr() argument
[all …]
/external/skia/gm/
Dxfermodes.cpp158 void draw_mode(SkCanvas* canvas, SkXfermode* mode, SrcType srcType, in draw_mode() argument
167 switch (srcType) { in draw_mode()
/external/deqp/modules/gles3/functional/
Des3fFramebufferBlitTests.cpp1022 tcu::TextureChannelClass srcType = tcu::getTextureChannelClass(srcTexFmt.type); in init() local
1027 …if (((srcType == tcu::TEXTURECHANNELCLASS_FLOATING_POINT || srcType == tcu::TEXTURECHANNELCLASS_UN… in init()
1029 …((srcType == tcu::TEXTURECHANNELCLASS_SIGNED_INTEGER) != (dstType == tcu::TEXTURECHANNELCLASS_SIGN… in init()
1030 …((srcType == tcu::TEXTURECHANNELCLASS_UNSIGNED_INTEGER) != (dstType == tcu::TEXTURECHANNELCLASS_UN… in init()
/external/llvm/test/tools/llvm-readobj/Inputs/
Drelocs.py350 srcType, preSrc, dummyReloc, relocsPerDummy = dummyReloc
354 if srcType == "asm":
356 elif srcType == "ir":
/external/clang/lib/Sema/
DSemaCast.cpp324 QualType srcType = src->getType(); in tryDiagnoseOverloadedCast() local
325 if (!destType->isRecordType() && !srcType->isRecordType()) in tryDiagnoseOverloadedCast()
373 << CT << srcType << destType in tryDiagnoseOverloadedCast()
/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnouveau_texture.c237 GLenum srcFormat, GLenum srcType) in nouveau_choose_tex_format() argument
/external/deqp/framework/randomshaders/
DrsgExpression.cpp634 bool isConversionOk (VariableType::Type srcType, VariableType::Type dstType, ConstValueRangeAccess … in isConversionOk() argument
643 return convTable[getBaseTypeConvNdx(srcType)][getBaseTypeConvNdx(dstType)](valueRange); in isConversionOk()
/external/llvm/lib/Target/AArch64/
DAArch64InstrFormats.td3530 RegisterClass srcType, RegisterClass dstType,
3532 : I<(outs dstType:$Rd), (ins srcType:$Rn),
3550 RegisterClass srcType, RegisterClass dstType,
3552 : I<(outs dstType:$Rd), (ins srcType:$Rn, immType:$scale),
3672 RegisterClass srcType, RegisterClass dstType,
3674 : I<(outs dstType:$Rd), (ins srcType:$Rn, immType:$scale),
3689 RegisterClass srcType, RegisterClass dstType,
3691 : I<(outs dstType:$Rd), (ins srcType:$Rn),
3692 asm, "\t$Rd, $Rn", "", [(set (dvt dstType:$Rd), (node srcType:$Rn))]>,
3800 RegisterClass srcType, RegisterClass dstType,
[all …]
/external/clang/include/clang/Sema/
DSema.h8534 bool areLaxCompatibleVectorTypes(QualType srcType, QualType destType);
8535 bool isLaxVectorConversion(QualType srcType, QualType destType);
/external/sqlite/dist/
Dsqlite3.c65763 SQLITE_PRIVATE void sqlite3VdbeMemShallowCopy(Mem *pTo, const Mem *pFrom, int srcType){
65766 if( VdbeMemDynamic(pTo) ){ vdbeClrCopy(pTo,pFrom,srcType); return; }
65770 assert( srcType==MEM_Ephem || srcType==MEM_Static );
65771 pTo->flags |= srcType;

12