Home
last modified time | relevance | path

Searched refs:formatType (Results 1 – 24 of 24) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineSamplerBorderSwizzleTests.cpp211 const auto formatType = getFormatType(textureFormat); in getColorAttachmentFormat() local
213 if (formatType == FormatType::SIGNED_INT) in getColorAttachmentFormat()
216 if (formatType == FormatType::UNSIGNED_INT) in getColorAttachmentFormat()
237 const auto formatType = getFormatType(m_params.textureFormat); in initPrograms() local
240 if (formatType == FormatType::SIGNED_INT) in initPrograms()
242 else if (formatType == FormatType::UNSIGNED_INT) in initPrograms()
379 const auto formatType = getFormatType(params.textureFormat); in getExpectedColor() local
384 if (formatType == FormatType::UNSIGNED_INT) in getExpectedColor()
399 else if (formatType == FormatType::SIGNED_INT) in getExpectedColor()
416 DE_ASSERT(formatType == FormatType::FLOAT); in getExpectedColor()
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
Dformatutils.h141 GLuint computePixelBytes(GLenum formatType) const;
146 ANGLE_NO_DISCARD bool computeRowPitch(GLenum formatType,
155 ANGLE_NO_DISCARD bool computeDepthPitch(GLenum formatType,
167 ANGLE_NO_DISCARD bool computeSkipBytes(GLenum formatType,
174 ANGLE_NO_DISCARD bool computePackUnpackEndByte(GLenum formatType,
Dformatutils.cpp1617 GLuint InternalFormat::computePixelBytes(GLenum formatType) const in computePixelBytes()
1619 const auto &typeInfo = GetTypeInfo(formatType); in computePixelBytes()
1654 bool InternalFormat::computeRowPitch(GLenum formatType, in computeRowPitch() argument
1667 CheckedNumeric<GLuint> checkedRowBytes = checkedWidth * computePixelBytes(formatType); in computeRowPitch()
1701 bool InternalFormat::computeDepthPitch(GLenum formatType, in computeDepthPitch() argument
1710 if (!computeRowPitch(formatType, width, alignment, rowLength, &rowPitch)) in computeDepthPitch()
1769 bool InternalFormat::computeSkipBytes(GLenum formatType, in computeSkipBytes() argument
1781 CheckedNumeric<GLuint> checkedPixelBytes(computePixelBytes(formatType)); in computeSkipBytes()
1792 bool InternalFormat::computePackUnpackEndByte(GLenum formatType, in computePackUnpackEndByte() argument
1799 if (!computeRowPitch(formatType, size.width, state.alignment, state.rowLength, &rowPitch)) in computePackUnpackEndByte()
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DNumberFormatRegistrationTest.java45 public NumberFormat createFormat(ULocale loc, int formatType) { in TestRegistration() argument
46 if (formatType == FORMAT_CURRENCY) { in TestRegistration()
DNumberFormatTest.java1521 public NumberFormat createFormat(ULocale loc, int formatType) { in TestRegistration() argument
1522 if (formatType == FORMAT_CURRENCY) { in TestRegistration()
3433 public NumberFormat createFormat(ULocale loc, int formatType) { in TestNumberFormatFactory() argument
3449 public NumberFormat createFormat(Locale loc, int formatType) { in TestNumberFormatFactory() argument
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DNumberFormatRegistrationTest.java42 public NumberFormat createFormat(ULocale loc, int formatType) { in TestRegistration() argument
43 if (formatType == FORMAT_CURRENCY) { in TestRegistration()
DNumberFormatTest.java1518 public NumberFormat createFormat(ULocale loc, int formatType) { in TestRegistration() argument
1519 if (formatType == FORMAT_CURRENCY) { in TestRegistration()
3430 public NumberFormat createFormat(ULocale loc, int formatType) { in TestNumberFormatFactory() argument
3446 public NumberFormat createFormat(Locale loc, int formatType) { in TestNumberFormatFactory() argument
/third_party/skia/third_party/externals/oboe/src/opensles/
DOpenSLESUtilities.cpp69 format_pcm_ex.formatType = SL_ANDROID_DATAFORMAT_PCM_EX; in OpenSLES_createExtendedFormat()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DNumberFormat.java879 public NumberFormat createFormat(ULocale loc, int formatType) { in createFormat() argument
880 return createFormat(loc.toLocale(), formatType); in createFormat()
895 public NumberFormat createFormat(Locale loc, int formatType) { in createFormat() argument
896 return createFormat(ULocale.forLocale(loc), formatType); in createFormat()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DNumberFormat.java941 public NumberFormat createFormat(ULocale loc, int formatType) { in createFormat() argument
942 return createFormat(loc.toLocale(), formatType); in createFormat()
958 public NumberFormat createFormat(Locale loc, int formatType) { in createFormat() argument
959 return createFormat(ULocale.forLocale(loc), formatType); in createFormat()
/third_party/icu/icu4c/source/test/intltest/
Dnmfmapts.cpp274 …virtual NumberFormat* createFormat(const Locale& /* loc */, UNumberFormatStyle formatType) override in createFormat() argument
276 if (formatType == UNUM_CURRENCY) { in createFormat()
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
Dnumfmt.h1206 virtual NumberFormat* createFormat(const Locale& loc, UNumberFormatStyle formatType) = 0;
/third_party/icu/icu4c/source/i18n/unicode/
Dnumfmt.h1206 virtual NumberFormat* createFormat(const Locale& loc, UNumberFormatStyle formatType) = 0;
/third_party/node/deps/icu-small/source/i18n/unicode/
Dnumfmt.h1223 virtual NumberFormat* createFormat(const Locale& loc, UNumberFormatStyle formatType) = 0;
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fShaderImageLoadStoreTests.cpp237 static inline string getShaderSamplerOrImageType (TextureFormat::ChannelType formatType, TextureTyp… in getShaderSamplerOrImageType() argument
239 const char* const formatPart = isFormatTypeUnsignedInteger(formatType) ? "u" in getShaderSamplerOrImageType()
240 : isFormatTypeSignedInteger(formatType) ? "i" in getShaderSamplerOrImageType()
253 static inline string getShaderImageType (TextureFormat::ChannelType formatType, TextureType imageTy… in getShaderImageType() argument
255 return getShaderSamplerOrImageType(formatType, imageType, false); in getShaderImageType()
258 static inline string getShaderSamplerType (TextureFormat::ChannelType formatType, TextureType image… in getShaderSamplerType() argument
260 return getShaderSamplerOrImageType(formatType, imageType, true); in getShaderSamplerType()
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
DCommandBufferGL.cpp184 GLenum formatType = VertexFormatType(attribute.format); in Apply() local
190 attribIndex, components, formatType, vertexBuffer.arrayStride, in Apply()
194 gl.VertexAttribPointer(attribIndex, components, formatType, normalized, in Apply()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
DFramebuffer9.cpp197 gl::FormatType formatType(format, type); in readPixelsImpl() local
/third_party/node/test/fixtures/wpt/resources/
Didlharness.js3150 function formatType(type) { function
3153 result = type.generic + "<" + type.idlType.map(formatType).join(", ") + ">";
3155 result = "(" + type.subtype.map(formatType).join(" or ") + ")";
3169 formatType(m.idlType),
/third_party/openSLES/api/1.1/
DOpenSLES.h333 SLuint32 formatType; member
383 SLuint32 formatType; member
394 SLuint32 formatType; member
/third_party/openSLES/api/1.0/
DOpenSLES.h314 SLuint32 formatType; member
356 SLuint32 formatType; member
/third_party/openSLES/api/1.0.1/
DOpenSLES.h314 SLuint32 formatType; member
357 SLuint32 formatType; member
/third_party/gstreamer/gstplugins_bad/sys/opensles/
Dopenslesringbuffer.c95 format->formatType = SL_DATAFORMAT_PCM; in _opensles_format()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DULocaleTest.java151 public NumberFormat createFormat(ULocale loc, int formatType) { in TestNumberFormat() argument
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DULocaleTest.java150 public NumberFormat createFormat(ULocale loc, int formatType) { in TestNumberFormat() argument