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

1 2 3

  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
LigatureEntry.java 20 public LigatureEntry(int ligature, int[] componentChars, int componentCount)
22 this.componentChars = new int[componentCount];
24 System.arraycopy(componentChars, 0, this.componentChars, 0, componentCount);
LigatureTreeWalker.java 22 protected int componentCount;
31 componentCount = 0;
39 componentChars[componentCount] = ch;
40 componentCount += 1;
45 if (componentCount > 0) {
46 componentCount -= 1;
63 ligatureSet.addElement(new LigatureEntry(lig, componentChars, componentCount));
  /external/deqp/modules/gles3/stress/
es3sVertexArrayTests.cpp 179 for (int componentCount = 2; componentCount < 5; componentCount++)
186 const int stride = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::inputTypeSize(m_type) * componentCount)) : (strides[strideNdx]);
187 const int alignment = (packed) ? (Array::inputTypeSize(m_type) * componentCount) : (Array::inputTypeSize(m_type));
190 std::string name = Array::storageToString(storages[storageNdx]) + "_stride" + typeToString(stride) + "_components" + typeToString(componentCount) + "_quads" + typeToString(counts[countNdx]);
192 if((m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_10) && componentCount != 4)
199 componentCount,
292 const int componentCount = (packed) ? (4) : (2);
293 const int stride = (strides[strideNdx] < 0) ? ((packed) ? (8) : (Array::inputTypeSize(m_type) * componentCount)) : (strides[strideNdx])
    [all...]
es3sDrawTests.cpp 245 spec.attribs[0].componentCount = 4;
256 spec.attribs[1].componentCount = 2;
550 attribSpec.componentCount = random.getInt(1, 4);
561 if (attribSpec.stride && attribSpec.componentCount * gls::DrawTestSpec::inputTypeSize(attribSpec.inputType) > attribSpec.stride)
587 if (spec.attribs[0].componentCount == 1)
  /external/deqp/modules/gles3/functional/
es3fVertexArrayTest.cpp 176 for (int componentCount = 2; componentCount < 5; componentCount++)
183 const int stride = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::inputTypeSize(m_type) * componentCount)) : (strides[strideNdx]);
184 const int alignment = (packed) ? (Array::inputTypeSize(m_type) * componentCount) : (Array::inputTypeSize(m_type));
187 std::string name = Array::storageToString(storages[storageNdx]) + "_stride" + typeToString(stride) + "_components" + typeToString(componentCount) + "_quads" + typeToString(counts[countNdx]);
189 if((m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_10) && componentCount != 4)
196 componentCount,
289 const int componentCount = (packed) ? (4) : (2);
290 const int stride = (strides[strideNdx] < 0) ? ((packed) ? (8) : (Array::inputTypeSize(m_type) * componentCount)) : (strides[strideNdx])
    [all...]
es3fVertexArrayObjectTests.cpp 101 int componentCount;
330 case GL_FLOAT: stride = buffer.componentCount * (int)sizeof(GLfloat); break;
331 case GL_INT: stride = buffer.componentCount * (int)sizeof(GLint); break;
332 case GL_UNSIGNED_INT: stride = buffer.componentCount * (int)sizeof(GLuint); break;
333 case GL_SHORT: stride = buffer.componentCount * (int)sizeof(GLshort); break;
334 case GL_UNSIGNED_SHORT: stride = buffer.componentCount * (int)sizeof(GLushort); break;
335 case GL_BYTE: stride = buffer.componentCount * (int)sizeof(GLbyte); break;
336 case GL_UNSIGNED_BYTE: stride = buffer.componentCount * (int)sizeof(GLubyte); break;
349 for (int componentNdx = 0; componentNdx < buffer.componentCount; componentNdx++)
906 case GL_FLOAT: stride = buffer.componentCount * (int)sizeof(GLfloat); break
    [all...]
es3fDrawTests.cpp 122 spec.attribs[0].componentCount = 4;
133 spec.attribs[1].componentCount = 2;
200 spec.attribs[0].componentCount = 2;
235 spec.attribs[0].componentCount = 4;
246 spec.attribs[1].componentCount = 2;
281 spec.attribs[0].componentCount = 4;
293 spec.attribs[1].componentCount = 2;
306 spec.attribs[2].componentCount = 3;
341 spec.attribs[0].componentCount = 2;
352 int componentCount;
    [all...]
  /external/deqp/modules/gles2/stress/
es2sVertexArrayTests.cpp 86 const int componentCount = 2;
87 const int stride = (strides[strideNdx] < 0 ? Array::inputTypeSize(inputTypes[inputTypeNdx]) * componentCount : strides[strideNdx]);
93 componentCount,
150 for (int componentCount = 2; componentCount < 5; componentCount++)
156 const int stride = (strides[strideNdx] < 0 ? Array::inputTypeSize(inputTypes[inputTypeNdx]) * componentCount : strides[strideNdx]);
163 componentCount,
es2sDrawTests.cpp 64 spec.attribs[0].componentCount = 4;
75 spec.attribs[1].componentCount = 2;
336 attribSpec.componentCount = random.getInt(1, 4);
347 if (attribSpec.stride && attribSpec.componentCount * gls::DrawTestSpec::inputTypeSize(attribSpec.inputType) > attribSpec.stride)
373 if (spec.attribs[0].componentCount == 1)
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
ShaderProgram.java 144 public void setAttributeValues(String attributeName, float[] data, int componentCount) {
145 if (!setShaderAttributeValues(attributeName, data, componentCount)) {
154 int componentCount,
161 componentCount,
291 int componentCount);
296 int componentCount,
  /external/deqp/modules/glshared/
glsVertexArrayTests.cpp     [all...]
glsDrawTest.hpp 189 static AttributeSpec createAttributeArray (InputType inputType, OutputType outputType, Storage storage, Usage usage, int componentCount, int offset, int stride, bool normalize, int instanceDivisor);
190 static AttributeSpec createDefaultAttribute (InputType inputType, OutputType outputType, int componentCount); //!< allowed inputType values: INPUTTYPE_INT, INPUTTYPE_UNSIGNED_INT, INPUTTYPE_FLOAT
196 int componentCount;
glsDrawTest.cpp     [all...]
  /external/deqp/modules/gles2/functional/
es2fVertexArrayTest.cpp 85 const int componentCount = 2;
86 const int stride = (strides[strideNdx] < 0 ? Array::inputTypeSize(inputTypes[inputTypeNdx]) * componentCount : strides[strideNdx]);
92 componentCount,
149 for (int componentCount = 2; componentCount < 5; componentCount++)
155 const int stride = (strides[strideNdx] < 0 ? Array::inputTypeSize(inputTypes[inputTypeNdx]) * componentCount : strides[strideNdx]);
162 componentCount,
356 for (int componentCount = 2; componentCount < 5; componentCount++
    [all...]
es2fDrawTests.cpp 91 spec.attribs[0].componentCount = 4;
102 spec.attribs[1].componentCount = 2;
164 spec.attribs[0].componentCount = 2;
199 spec.attribs[0].componentCount = 4;
210 spec.attribs[1].componentCount = 2;
245 spec.attribs[0].componentCount = 2;
256 int componentCount;
265 const std::string desc = gls::DrawTestSpec::inputTypeToString(iopairs[ioNdx].input) + de::toString(iopairs[ioNdx].componentCount) + " to " + gls::DrawTestSpec::outputTypeToString(iopairs[ioNdx].output);
271 spec.attribs[1].componentCount = iopairs[ioNdx].componentCount;
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
ImageHeaderParser.java 217 int tagOffset, tagType, formatCode, componentCount;
238 componentCount = segmentData.getInt32(tagOffset + 4);
240 if (componentCount < 0) {
249 + " componentCount=" + componentCount);
252 final int byteCount = componentCount + BYTES_PER_FORMAT[formatCode];
277 //assume componentCount == 1 && fmtCode == 3
  /external/swiftshader/src/Shader/
SamplerCore.cpp 190 int componentCount = textureComponentCount();
243 if(componentCount < 2) c.y = Short4(defaultColorValue);
244 if(componentCount < 3) c.z = Short4(defaultColorValue);
245 if(componentCount < 4) c.w = Short4(0x1000);
443 int componentCount = textureComponentCount();
502 if(componentCount < 2) c.y = Float4(defaultColorValue);
503 if(componentCount < 3) c.z = Float4(defaultColorValue);
504 if(componentCount < 4) c.w = Float4(1.0f);
789 int componentCount = textureComponentCount();
848 if(componentCount >= 1
    [all...]
  /external/deqp/modules/gles31/functional/
es31fDrawElementsBaseVertexTests.cpp 149 spec.attribs[0].componentCount = 4;
160 spec.attribs[1].componentCount = 2;
643 spec.attribs[0].componentCount = 2;
679 spec.attribs[0].componentCount = 4;
690 spec.attribs[1].componentCount = 2;
726 spec.attribs[0].componentCount = 4;
738 spec.attribs[1].componentCount = 2;
751 spec.attribs[2].componentCount = 3;
787 spec.attribs[0].componentCount = 2;
798 int componentCount;
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
LevelBuilder.java 188 final int componentCount = backgroundObject.getCount();
189 for (int x = componentCount - 1; x >= 0; x--) {
  /external/deqp/external/vulkancts/modules/vulkan/renderpass/
vktRenderPassMultisampleResolveTests.cpp 1148 const int componentCount (tcu::getNumUsedChannels(format.order));
1179 componentCount > 1 ? clearValue : 0.0f,
1180 componentCount > 2 ? clearValue : 0.0f,
1181 componentCount > 3 ? clearValue : 1.0f)
    [all...]
vktRenderPassMultisampleTests.cpp     [all...]
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/exif/
ExifTag.java 120 ExifTag(short tagId, short type, int componentCount, int ifd, boolean hasDefinedComponentCount) {
123 mComponentCountActual = componentCount;
  /external/deqp/modules/gles31/stress/
es31sDrawTests.cpp 484 attribSpec.componentCount = random.getInt(1, 4);
495 if (attribSpec.stride && attribSpec.componentCount * gls::DrawTestSpec::inputTypeSize(attribSpec.inputType) > attribSpec.stride)
521 if (spec.attribs[0].componentCount == 1)
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineVertexInputTests.cpp 550 const int componentCount = VertexInputTest::s_glslTypeDescriptions[attributeInfo.glslType].vertexInputComponentCount;
552 const deUint32 totalComponentCount = componentCount * vertexInputCount;
562 for (int rowNdx = 0; rowNdx < componentCount; rowNdx++)
572 if (componentCount > 1)
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifTag.java 127 ExifTag(short tagId, short type, int componentCount, int ifd,
131 mComponentCountActual = componentCount;
    [all...]

Completed in 2390 milliseconds

1 2 3