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

12

/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/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/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DCalendarCache.java18 makeArrays(arraySize);
28 arraySize = newSize;
29 threshold = (int)(arraySize * 0.75);
64 index = (index + delta) % arraySize;
71 int oldSize = arraySize;
76 arraySize = primes[++pIndex];
78 arraySize = arraySize * 2 + 1;
82 makeArrays(arraySize);
98 int h = (int)((key * 15821 + 1) % arraySize);
116 private int arraySize = primes[pIndex]; field in class:CalendarCache
[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/skia/gm/
H A Ddftext.cpp114 size_t arraySize = SK_ARRAY_COUNT(textSizes); variable
115 for (size_t i = 0; i < arraySize; ++i) {
118 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)
H A DgluVarType.cpp49 VarType::VarType (const VarType& elementType, int arraySize) argument
52 DE_ASSERT(arraySize >= 0 || arraySize == UNSIZED_ARRAY);
53 m_data.array.size = arraySize;
/external/icu/icu4c/source/common/
H A Dunistr_cnv.cpp370 int32_t arraySize; local
373 arraySize = US_STACKBUF_SIZE;
376 arraySize = dataLength + (dataLength >> 2);
382 if(!cloneArrayIfNeeded(arraySize, arraySize, doCopyArray)) {
406 arraySize = (int32_t)(length() + 2 * (mySourceEnd - mySource));
/external/icu/icu4c/source/extra/uconv/
H A Duwmsg.c44 int32_t arraySize; local
52 arraySize = BUF_SIZE;
66 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
75 arraySize = BUF_SIZE;
/external/deqp/modules/gles2/functional/
H A Des2fShaderStructTests.cpp1181 void setUniform (const glw::Functions& gl, deUint32 programID, const char* name, const tcu::VECTYPE* vec, int arraySize) \
1184 SETUNIFORM(loc, arraySize, vec->getPtr()); \
1207 void setUniform (const glw::Functions& gl, deUint32 programID, const char* name, const float* value, int arraySize) argument
1210 gl.uniform1fv(loc, arraySize, value);
/external/deqp/modules/gles3/functional/
H A Des3fShaderStructTests.cpp1155 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) argument
1184 gl.uniform1fv(loc, arraySize, value);
H A Des3fUniformBlockTests.cpp457 const int arraySize = 3; local
460 VarType(VarType(type, glu::isDataTypeBoolOrBVec(type) ? 0 : PRECISION_HIGH), arraySize),
467 VarType(VarType(type, PRECISION_HIGH), arraySize),
/external/icu/icu4c/source/test/letest/
H A Dxmlreader.cpp36 static le_uint32 *getHexArray(const UnicodeString &numbers, int32_t &arraySize) argument
40 arraySize = 1;
42 arraySize += 1;
45 le_uint32 *array = NEW_ARRAY(le_uint32, arraySize);
82 static float *getFloatArray(const UnicodeString &numbers, int32_t &arraySize) argument
86 arraySize = 1;
88 arraySize += 1;
91 float *array = NEW_ARRAY(float, arraySize);
/external/icu/icu4c/source/test/perf/leperf/
H A Dxmlreader.cpp36 static le_uint32 *getHexArray(const UnicodeString &numbers, int32_t &arraySize) argument
40 arraySize = 1;
42 arraySize += 1;
45 le_uint32 *array = NEW_ARRAY(le_uint32, arraySize);
82 static float *getFloatArray(const UnicodeString &numbers, int32_t &arraySize) argument
86 arraySize = 1;
88 arraySize += 1;
91 float *array = NEW_ARRAY(float, arraySize);
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DSmallSortedMap.java94 * @param arraySize The size of the entry array containing the
99 SmallSortedMap<FieldDescriptorType, Object> newFieldMap(int arraySize) { argument
100 return new SmallSortedMap<FieldDescriptorType, Object>(arraySize) {
129 * @param arraySize The size of the entry array containing the
133 int arraySize) {
134 return new SmallSortedMap<K, V>(arraySize);
149 * @code arraySize Size of the array in which the lexicographically smallest
153 private SmallSortedMap(int arraySize) { argument
154 this.maxArraySize = arraySize;
132 newInstanceForTest( int arraySize) argument
/external/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceQueryTestCase.cpp452 const int arraySize = (!isArray) ? (1) : (inUnsizedArray) ? (m_unsizedArraySize) : (enclosingcomponent.getVariableType()->getArraySize()); local
454 DE_ASSERT(arraySize >= 0);
458 m_testCtx.getLog() << tcu::TestLog::Message << "Verifying array size, expecting " << arraySize << tcu::TestLog::EndMessage;
460 if (arraySize != propValue)
474 int arraySize; member in struct:deqp::gles31::Functional::__anon3591::__anon3593
492 m_testCtx.getLog() << tcu::TestLog::Message << "Verifying array size, expecting " << builtins[ndx].arraySize << tcu::TestLog::EndMessage;
494 if (propValue != builtins[ndx].arraySize)
1509 int arraySize = 0;
1512 arraySize = 1;
1516 m_testCtx.getLog() << tcu::TestLog::Message << "Verifying array size, expecting " << arraySize << tc
[all...]
H A Des31fSSBOLayoutTests.cpp329 BlockBasicUnsizedArrayCase (Context& context, const char* name, const char* description, const VarType& elementType, int arraySize, deUint32 layoutFlags) argument
336 block.setLastUnsizedArraySize(0, arraySize);
861 const int arraySize = 3; local
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; local
896 arraySize, layoutFlags[layoutFlagNdx].flags));
902 VarType(type, glu::PRECISION_HIGHP), arraySize,
/external/guava/guava/src/com/google/common/collect/
H A DLists.java108 @VisibleForTesting static int computeArrayListCapacity(int arraySize) { argument
109 checkNonnegative(arraySize, "arraySize");
112 return Ints.saturatedCast(5L + arraySize + (arraySize / 10));
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DLists.java106 @VisibleForTesting static int computeArrayListCapacity(int arraySize) { argument
107 checkNonnegative(arraySize, "arraySize");
110 return Ints.saturatedCast(5L + arraySize + (arraySize / 10));
/external/skia/tests/
H A DSerializationTest.cpp82 static void Write(SkWriteBuffer& writer, unsigned char* data, uint32_t arraySize) { argument
83 writer.writeByteArray(data, arraySize);
85 static bool Read(SkValidatingReadBuffer& reader, unsigned char* data, uint32_t arraySize) { argument
86 return reader.readByteArray(data, arraySize);
91 static void Write(SkWriteBuffer& writer, SkColor* data, uint32_t arraySize) { argument
92 writer.writeColorArray(data, arraySize);
94 static bool Read(SkValidatingReadBuffer& reader, SkColor* data, uint32_t arraySize) { argument
95 return reader.readColorArray(data, arraySize);
100 static void Write(SkWriteBuffer& writer, int32_t* data, uint32_t arraySize) { argument
101 writer.writeIntArray(data, arraySize);
103 Read(SkValidatingReadBuffer& reader, int32_t* data, uint32_t arraySize) argument
109 Write(SkWriteBuffer& writer, SkPoint* data, uint32_t arraySize) argument
112 Read(SkValidatingReadBuffer& reader, SkPoint* data, uint32_t arraySize) argument
118 Write(SkWriteBuffer& writer, SkScalar* data, uint32_t arraySize) argument
121 Read(SkValidatingReadBuffer& reader, SkScalar* data, uint32_t arraySize) argument
[all...]
/external/deqp/modules/glshared/
H A DglsUniformBlockCase.hpp77 VarType (const VarType& elementType, int arraySize);
195 void setArraySize (int arraySize) { m_arraySize = arraySize; } argument
/external/skia/samplecode/
H A DSampleFilterFuzz.cpp321 int arraySize = size.width() * size.height(); local
322 SkTArray<SkScalar> kernel(arraySize);
323 for (int i = 0; i < arraySize; ++i) {

Completed in 548 milliseconds

12