HomeSort by relevance Sort by last modified time
    Searched refs:arraySize (Results 51 - 75 of 239) sorted by null

1 23 4 5 6 7 8 910

  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageTests.cpp 58 int arraySize);
77 int arraySize)
83 , m_arraySize (arraySize)
256 std::string getSizeName (VkImageViewType viewType, const tcu::IVec3& size, int arraySize)
275 caseName << size.x() << "x" << size.y() << "_array_of_" << arraySize;
  /hardware/ti/omap4-aah/test/CameraHal/
camera_test.h 267 int getSupportedParametersCaptureSize(char* parameters, int *optionsCount, param_Array array[], int arraySize);
268 int getSupportedParametersVideoCaptureSize(char* parameters, int *optionsCount, param_Array array[], int arraySize);
269 int getSupportedParametersPreviewSize(char* parameters, int *optionsCount, param_Array array[], int arraySize);
270 int getSupportedParametersThumbnailSize(char* parameters, int *optionsCount, param_Array array[], int arraySize);
271 int getSupportedParametersNames(int width, int height, param_Array array[], int arraySize);
camera_test_menu.cpp     [all...]
  /external/libjpeg-turbo/
turbojpeg-jni.c 190 jsize arraySize=0, actualPitch;
202 arraySize=(y+height-1)*actualPitch + (x+width)*tjPixelSize[pf];
203 if((*env)->GetArrayLength(env, src)*srcElementSize<arraySize)
364 jsize arraySize=0, actualPitch;
387 arraySize=(y+height-1)*actualPitch + (x+width)*tjPixelSize[pf];
388 if((*env)->GetArrayLength(env, src)*srcElementSize<arraySize)
469 jsize arraySize=0;
480 arraySize=(pitch==0)? width*tjPixelSize[pf]*height:pitch*height;
481 if((*env)->GetArrayLength(env, src)*srcElementSize<arraySize)
631 jsize arraySize=0, actualPitch
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeTestsUtil.cpp 75 const deUint32 arraySize)
82 makeImageSubresourceLayers(VK_IMAGE_ASPECT_COLOR_BIT, 0u, 0u, arraySize), // VkImageSubresourceLayers imageSubresource;
vktComputeTestsUtil.hpp 124 const deUint32 arraySize);
  /frameworks/rs/driver/
rsdMeshObj.cpp 63 uint32_t arraySize = elem->mHal.state.fieldArraySizes[fieldIdx];
64 if (arraySize != 1) {
  /external/deqp/framework/opengl/
gluProgramInterfaceQuery.cpp 92 info.arraySize = getProgramResourceUint(gl, program, programInterface, index, GL_ARRAY_SIZE);
gluVarType.hpp 54 VarType (const VarType& elementType, int arraySize); //!< Array type constructor.
  /external/deqp/modules/gles31/functional/
es31fSSBOLayoutCase.hpp 98 void setArraySize (int arraySize);
es31fShaderAtomicOpTests.cpp 205 TCU_CHECK(inVarInfo.arraySize == numValues &&
206 outVarInfo.arraySize == numValues &&
207 groupVarInfo.arraySize == product(m_numWorkGroups));
    [all...]
es31fBasicComputeShaderTests.cpp 182 for (deUint32 ndx = 0; ndx < de::min(valueInfo.arraySize, (deUint32)inputValues.size()); ndx++)
214 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
215 for (deUint32 ndx = 0; ndx < valueInfo.arraySize; ndx++)
299 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
335 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
336 for (deUint32 ndx = 0; ndx < valueInfo.arraySize; ndx++)
407 TCU_CHECK(valueInfo.arraySize == (deUint32)(m_isSized ? m_numValues : 0));
519 TCU_CHECK(value0Info.arraySize == (deUint32)(m_isSized ? m_numValues : 0));
520 TCU_CHECK(value1Info.arraySize == (deUint32)(m_isSized ? m_numValues : 0));
    [all...]
es31fSSBOLayoutTests.cpp 329 BlockBasicUnsizedArrayCase (Context& context, const char* name, const char* description, const VarType& elementType, int arraySize, deUint32 layoutFlags)
336 block.setLastUnsizedArraySize(0, arraySize);
861 const int arraySize = 3;
864 VarType(VarType(type, glu::isDataTypeBoolOrBVec(type) ? glu::PRECISION_LAST : glu::PRECISION_HIGHP), arraySize),
871 VarType(VarType(type, glu::PRECISION_HIGHP), arraySize),
892 const int arraySize = 19;
896 arraySize, layoutFlags[layoutFlagNdx].flags));
902 VarType(type, glu::PRECISION_HIGHP), arraySize,
    [all...]
es31fUniformLocationTests.cpp 817 const int arraySize = (getDataTypeScalarSize(type) > 4 || isDataTypeSampler(type)) ? 3 : 7;
821 UniformInfo uniform (VarType(VarType(createVarType(type), arraySize), arraySize),
825 rng.getInt(0, maxLocations-1-arraySize*arraySize));
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Lists.java 118 @VisibleForTesting static int computeArrayListCapacity(int arraySize) {
119 checkNonnegative(arraySize, "arraySize");
122 return Ints.saturatedCast(5L + arraySize + (arraySize / 10));
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Lists.java 116 @VisibleForTesting static int computeArrayListCapacity(int arraySize) {
117 checkNonnegative(arraySize, "arraySize");
120 return Ints.saturatedCast(5L + arraySize + (arraySize / 10));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderExecutor.hpp 133 deUint32 arraySize,
248 const deUint32 arraySize,
  /external/icu/icu4c/source/test/letest/
letest.cpp 443 le_uint32 *getHexArray(const UnicodeString &numbers, int32_t &arraySize)
447 arraySize = 1;
449 arraySize += 1;
452 le_uint32 *array = NEW_ARRAY(le_uint32, arraySize);
489 float *getFloatArray(const UnicodeString &numbers, int32_t &arraySize)
493 arraySize = 1;
495 arraySize += 1;
498 float *array = NEW_ARRAY(float, arraySize);
    [all...]
  /external/deqp/external/vulkancts/
gen_framework.py 170 def __init__ (self, type, name, arraySize = None):
173 self.arraySize = arraySize
257 fixedArgs = [Variable(fixupType(a.type), a.name, a.arraySize) for a in function.arguments]
508 return ", ".join("%s %s%s" % (v.type, v.name, v.arraySize if v.arraySize != None else "") for v in args)
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageTestsUtil.cpp 211 const deUint32 arraySize)
218 makeImageSubresourceLayers(VK_IMAGE_ASPECT_COLOR_BIT, 0u, 0u, arraySize), // VkImageSubresourceLayers imageSubresource;
vktImageTestsUtil.hpp 148 const deUint32 arraySize);
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutTests.cpp 318 BlockBasicUnsizedArrayCase (tcu::TestContext& testCtx, const char* name, const char* description, const VarType& elementType, int arraySize, deUint32 layoutFlags)
325 block.setLastUnsizedArraySize(0, arraySize);
844 const int arraySize = 3;
847 VarType(VarType(type, glu::isDataTypeBoolOrBVec(type) ? glu::PRECISION_LAST : glu::PRECISION_HIGHP), arraySize),
854 VarType(VarType(type, glu::PRECISION_HIGHP), arraySize),
875 const int arraySize = 19;
879 arraySize, layoutFlags[layoutFlagNdx].flags));
885 VarType(type, glu::PRECISION_HIGHP), arraySize,
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
BloomFilterTest.java 304 int arraySize = Ints.checkedCast(LongMath.divide(numBits, 64, RoundingMode.CEILING));
306 arraySize * Long.SIZE,
  /external/deqp/modules/gles2/functional/
es2fShaderStructTests.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderStructTests.cpp 1155 void setUniform (const glw::Functions& gl, deUint32 programID, const char* name, const tcu::VECTYPE* vec, int arraySize) \
1158 SETUNIFORM(loc, arraySize, vec->getPtr()); \
1181 void setUniform (const glw::Functions& gl, deUint32 programID, const char* name, const float* value, int arraySize)
    [all...]

Completed in 1066 milliseconds

1 23 4 5 6 7 8 910