/external/mesa3d/src/mesa/main/ |
D | pack.h | 51 GLenum dstType, GLvoid *dest, 58 GLenum dstType, GLvoid *dest, const GLubyte *source, 64 GLenum dstType, GLvoid *dest, GLuint depthMax, 70 GLenum dstType, const GLfloat *depthSpan, 76 GLenum dstType, GLuint *dest,
|
D | pack.c | 500 GLenum dstType, GLvoid *dest, in _mesa_unpack_stencil_span() argument 518 assert(dstType == GL_UNSIGNED_BYTE || in _mesa_unpack_stencil_span() 519 dstType == GL_UNSIGNED_SHORT || in _mesa_unpack_stencil_span() 520 dstType == GL_UNSIGNED_INT || in _mesa_unpack_stencil_span() 521 dstType == GL_FLOAT_32_UNSIGNED_INT_24_8_REV); in _mesa_unpack_stencil_span() 532 dstType == GL_UNSIGNED_BYTE) { in _mesa_unpack_stencil_span() 538 dstType == GL_UNSIGNED_INT && in _mesa_unpack_stencil_span() 571 switch (dstType) { in _mesa_unpack_stencil_span() 613 GLenum dstType, GLvoid *dest, const GLubyte *source, in _mesa_pack_stencil_span() argument 631 switch (dstType) { in _mesa_pack_stencil_span() [all …]
|
D | blit.c | 104 GLenum dstType = _mesa_get_format_datatype(dstFormat); in compatible_color_datatypes() local 114 if (dstType != GL_INT && dstType != GL_UNSIGNED_INT) { in compatible_color_datatypes() 115 assert(dstType == GL_UNSIGNED_NORMALIZED || in compatible_color_datatypes() 116 dstType == GL_SIGNED_NORMALIZED || in compatible_color_datatypes() 117 dstType == GL_FLOAT); in compatible_color_datatypes() 119 dstType = GL_FLOAT; in compatible_color_datatypes() 122 return srcType == dstType; in compatible_color_datatypes()
|
D | image.c | 475 GLenum dstType, GLvoid *dst, in _mesa_convert_colors() argument 485 assert(srcType != dstType); in _mesa_convert_colors() 489 if (dstType == GL_UNSIGNED_SHORT) { in _mesa_convert_colors() 508 assert(dstType == GL_FLOAT); in _mesa_convert_colors() 522 if (dstType == GL_UNSIGNED_BYTE) { in _mesa_convert_colors() 541 assert(dstType == GL_FLOAT); in _mesa_convert_colors() 555 if (dstType == GL_UNSIGNED_BYTE) { in _mesa_convert_colors() 570 assert(dstType == GL_UNSIGNED_SHORT); in _mesa_convert_colors()
|
D | texstore.c | 151 GLenum dstType; in _mesa_texstore_z32() local 158 dstType = GL_UNSIGNED_INT; in _mesa_texstore_z32() 160 dstType = GL_FLOAT; in _mesa_texstore_z32() 171 dstType, dstRow, in _mesa_texstore_z32() 827 GLenum dstType; in _mesa_texstore_needs_transfer_ops() local 844 dstType = _mesa_get_format_datatype(dstFormat); in _mesa_texstore_needs_transfer_ops() 846 return dstType != GL_INT && dstType != GL_UNSIGNED_INT && in _mesa_texstore_needs_transfer_ops()
|
D | image.h | 102 GLenum dstType, GLvoid *dst,
|
/external/skia/src/shaders/ |
D | SkShaderBase.h | 63 DstType dstType, SkColorSpace* dstColorSpace) in ContextRec() 67 , fPreferredDstType(dstType) in ContextRec()
|
/external/deqp/modules/gles3/functional/ |
D | es3fFramebufferBlitTests.cpp | 1025 tcu::TextureChannelClass dstType = tcu::getTextureChannelClass(dstTexFmt.type); in init() local 1028 …(dstType == tcu::TEXTURECHANNELCLASS_FLOATING_POINT || dstType == tcu::TEXTURECHANNELCLASS_UNSIGNE… 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/icu/icu4c/source/i18n/unicode/ |
D | tzfmt.h | 724 …odeString& formatSpecific(const TimeZone& tz, UTimeZoneNameType stdType, UTimeZoneNameType dstType,
|
/external/skia/src/sksl/ |
D | SkSLSPIRVCodeGenerator.h | 169 void writeMatrixCopy(SpvId id, SpvId src, const Type& srcType, const Type& dstType,
|
D | SkSLSPIRVCodeGenerator.cpp | 1575 const Type& dstType, OutputStream& out) { in writeMatrixCopy() argument
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | TimeZoneFormat.java | 1710 …private String formatSpecific(TimeZone tz, NameType stdType, NameType dstType, long date, Output<T… 1712 assert(dstType == NameType.LONG_DAYLIGHT || dstType == NameType.SHORT_DAYLIGHT); 1716 getTimeZoneNames().getDisplayName(ZoneMeta.getCanonicalCLDRID(tz), dstType, date) :
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | TimeZoneFormat.java | 1780 …private String formatSpecific(TimeZone tz, NameType stdType, NameType dstType, long date, Output<T… 1782 assert(dstType == NameType.LONG_DAYLIGHT || dstType == NameType.SHORT_DAYLIGHT); 1786 getTimeZoneNames().getDisplayName(ZoneMeta.getCanonicalCLDRID(tz), dstType, date) :
|
/external/mesa3d/src/mesa/swrast/ |
D | s_span.c | 1420 GLenum dstType = GL_FLOAT; in _swrast_read_rgba_span() local 1475 if (dstType == GL_UNSIGNED_BYTE) { in _swrast_read_rgba_span() 1479 else if (dstType == GL_FLOAT) { in _swrast_read_rgba_span()
|
/external/deqp/framework/randomshaders/ |
D | rsgExpression.cpp | 634 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/ |
D | AArch64InstrFormats.td | 3527 RegisterClass srcType, RegisterClass dstType, 3529 : I<(outs dstType:$Rd), (ins srcType:$Rn), 3547 RegisterClass srcType, RegisterClass dstType, 3549 : I<(outs dstType:$Rd), (ins srcType:$Rn, immType:$scale), 3669 RegisterClass srcType, RegisterClass dstType, 3671 : I<(outs dstType:$Rd), (ins srcType:$Rn, immType:$scale), 3686 RegisterClass srcType, RegisterClass dstType, 3688 : I<(outs dstType:$Rd), (ins srcType:$Rn), 3689 asm, "\t$Rd, $Rn", "", [(set (dvt dstType:$Rd), (node srcType:$Rn))]>, 3797 RegisterClass srcType, RegisterClass dstType, [all …]
|
/external/icu/icu4c/source/i18n/ |
D | tzfmt.cpp | 1348 …oneFormat::formatSpecific(const TimeZone& tz, UTimeZoneNameType stdType, UTimeZoneNameType dstType, in formatSpecific() argument 1365 fTimeZoneNames->getDisplayName(UnicodeString(TRUE, canonicalID, -1), dstType, date, name); in formatSpecific()
|