Searched defs:arraySize (Results 1 - 25 of 68) sorted by relevance

123

/external/chromium_org/third_party/icu/source/samples/cal/
H A Duprint.c35 int32_t arraySize; local
44 arraySize = BUF_SIZE;
58 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
67 arraySize = BUF_SIZE;
/external/chromium_org/third_party/icu/source/samples/date/
H A Duprint.c36 int32_t arraySize; local
45 arraySize = BUF_SIZE;
59 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
68 arraySize = BUF_SIZE;
/external/chromium_org/third_party/icu/source/samples/legacy/
H A Dlegacy.cpp39 void printArray(const char* const comment, const UChar UArray[][5], int32_t arraySize) { argument
42 for(i = 0; i<arraySize; i++) {
/external/icu/icu4c/source/samples/cal/
H A Duprint.c35 int32_t arraySize; local
44 arraySize = BUF_SIZE;
58 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
67 arraySize = BUF_SIZE;
/external/icu/icu4c/source/samples/date/
H A Duprint.c36 int32_t arraySize; local
45 arraySize = BUF_SIZE;
59 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
68 arraySize = BUF_SIZE;
/external/icu/icu4c/source/samples/legacy/
H A Dlegacy.cpp39 void printArray(const char* const comment, const UChar UArray[][5], int32_t arraySize) { argument
42 for(i = 0; i<arraySize; i++) {
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DTypes.cpp50 primarySize(p.primarySize), secondarySize(p.secondarySize), array(p.array), arraySize(p.arraySize),
162 snprintf(buf, sizeof(buf), "%d", arraySize);
181 size_t arraySize = getArraySize(); local
182 if (arraySize > INT_MAX / totalSize)
185 totalSize *= arraySize;
H A DIntermNode.cpp107 size_t arraySize = leftNodeType.getArraySize(); local
109 for (size_t i = 0; i < arraySize; ++i)
H A DUniformHLSL.cpp170 unsigned int arraySize = static_cast<unsigned int>(interfaceBlock.arraySize()); local
174 mInterfaceBlockRegister += std::max(1u, arraySize);
183 if (arraySize > 0)
185 for (unsigned int arrayIndex = 0; arrayIndex < arraySize; arrayIndex++)
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DUniform.h26 LinkedUniform(GLenum type, GLenum precision, const std::string &name, unsigned int arraySize, const int blockIndex, const sh::BlockMemberInfo &blockInfo);
41 const unsigned int arraySize; member in struct:gl::LinkedUniform
H A DUniform.cpp14 LinkedUniform::LinkedUniform(GLenum type, GLenum precision, const std::string &name, unsigned int arraySize, argument
19 arraySize(arraySize),
47 return arraySize > 0;
52 return arraySize > 0 ? arraySize : 1;
/external/replicaisland/src/com/replica/replicaisland/
H A DPhasedObjectManager.java40 public PhasedObjectManager(int arraySize) { argument
41 super(arraySize);
H A DObjectManager.java40 public ObjectManager(int arraySize) { argument
42 mObjects = new FixedSizeArray<BaseObject>(arraySize);
43 mPendingAdditions = new FixedSizeArray<BaseObject>(arraySize);
44 mPendingRemovals = new FixedSizeArray<BaseObject>(arraySize);
/external/chromium_org/third_party/angle/src/common/
H A Dblocklayout.cpp22 BlockMemberInfo BlockLayoutEncoder::encodeType(GLenum type, unsigned int arraySize, bool isRowMajorMatrix) argument
27 getBlockLayoutInfo(type, arraySize, isRowMajorMatrix, &arrayStride, &matrixStride);
31 advanceOffset(type, arraySize, isRowMajorMatrix, arrayStride, matrixStride);
55 void Std140BlockEncoder::getBlockLayoutInfo(GLenum type, unsigned int arraySize, bool isRowMajorMatrix, int *arrayStrideOut, int *matrixStrideOut) argument
69 if (arraySize > 0)
75 else if (arraySize > 0)
92 void Std140BlockEncoder::advanceOffset(GLenum type, unsigned int arraySize, bool isRowMajorMatrix, int arrayStride, int matrixStride) argument
94 if (arraySize > 0)
96 mCurrentOffset += arrayStride * arraySize;
124 void HLSLBlockEncoder::getBlockLayoutInfo(GLenum type, unsigned int arraySize, boo argument
169 advanceOffset(GLenum type, unsigned int arraySize, bool isRowMajorMatrix, int arrayStride, int matrixStride) argument
[all...]
/external/javassist/src/main/javassist/compiler/ast/
H A DNewExpr.java34 public NewExpr(int type, ASTList arraySize, ArrayInit init) { argument
35 super(null, new ASTList(arraySize));
43 ASTList arraySize, ArrayInit init) {
44 NewExpr e = new NewExpr(className, arraySize);
42 makeObjectArray(ASTList className, ASTList arraySize, ArrayInit init) argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElementData.cpp61 ElementData::ElementData(unsigned arraySize) argument
63 , m_arraySize(arraySize)
/external/chromium_org/third_party/angle/include/GLSLANG/
H A DShaderVars.h51 bool isArray() const { return arraySize > 0; }
52 unsigned int elementCount() const { return std::max(1u, arraySize); }
59 unsigned int arraySize; member in struct:sh::ShaderVariable
114 unsigned int arraySize; member in struct:sh::InterfaceBlock
/external/chromium_org/third_party/angle/tests/angle_tests/
H A DGLSLTest.cpp46 std::string GenerateVectorVaryingDeclaration(GLint vectorSize, GLint arraySize, GLint id) argument
50 if (arraySize == 1)
56 sprintf(buff, "varying %s v%d[%d];\n", GenerateVaryingType(vectorSize).c_str(), id, arraySize);
62 std::string GenerateVectorVaryingSettingCode(GLint vectorSize, GLint arraySize, GLint id) argument
67 if (arraySize == 1)
74 for (int i = 0; i < arraySize; i++)
84 std::string GenerateVectorVaryingUseCode(GLint arraySize, GLint id) argument
86 if (arraySize == 1)
95 for (int i = 0; i < arraySize; i++)
/external/chromium_org/third_party/icu/source/common/
H A Dunistr_cnv.cpp380 int32_t arraySize; local
383 arraySize = US_STACKBUF_SIZE;
386 arraySize = dataLength + (dataLength >> 2);
392 if(!cloneArrayIfNeeded(arraySize, arraySize, doCopyArray)) {
416 arraySize = (int32_t)(length() + 2 * (mySourceEnd - mySource));
/external/chromium_org/third_party/icu/source/extra/uconv/
H A Duwmsg.c46 int32_t arraySize; local
54 arraySize = BUF_SIZE;
68 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
77 arraySize = BUF_SIZE;
/external/chromium_org/third_party/skia/gm/
H A Ddftext.cpp105 size_t arraySize = SK_ARRAY_COUNT(textSizes); local
106 for (size_t i = 0; i < arraySize; ++i) {
109 SkScalar scaleFactor = SkScalarInvert(scales[arraySize - i - 1]);
/external/deqp/framework/opengl/
H A DgluProgramInterfaceQuery.hpp64 deUint32 arraySize; //!< GL_ARRAY_SIZE member in struct:glu::InterfaceVariableInfo
77 , arraySize (0)
/external/icu/icu4c/source/common/
H A Dunistr_cnv.cpp380 int32_t arraySize; local
383 arraySize = US_STACKBUF_SIZE;
386 arraySize = dataLength + (dataLength >> 2);
392 if(!cloneArrayIfNeeded(arraySize, arraySize, doCopyArray)) {
416 arraySize = (int32_t)(length() + 2 * (mySourceEnd - mySource));
/external/icu/icu4c/source/extra/uconv/
H A Duwmsg.c46 int32_t arraySize; local
54 arraySize = BUF_SIZE;
68 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
77 arraySize = BUF_SIZE;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DArrayBufferView.h88 static inline void calculateOffsetAndLength(int start, int end, unsigned arraySize,
187 void ArrayBufferView::calculateOffsetAndLength(int start, int end, unsigned arraySize, argument
191 start += arraySize;
195 end += arraySize;
198 if (static_cast<unsigned>(end) > arraySize)
199 end = arraySize;

Completed in 8257 milliseconds

123