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

1234

/external/icu/icu4c/source/samples/cal/
H A Duprint.c39 int32_t arraySize; local
48 arraySize = BUF_SIZE;
62 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
71 arraySize = BUF_SIZE;
/external/icu/icu4c/source/samples/date/
H A Duprint.c40 int32_t arraySize; local
49 arraySize = BUF_SIZE;
63 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
72 arraySize = BUF_SIZE;
/external/icu/icu4c/source/samples/legacy/
H A Dlegacy.cpp45 void printArray(const char* const comment, const UChar UArray[][5], int32_t arraySize) { argument
48 for(i = 0; i<arraySize; i++) {
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_resource.c74 uint32 arraySize; local
82 arraySize = 1;
96 arraySize = res->array_size;
100 arraySize, numMipLevels);
H A Dsvga_screen_cache.h66 uint32_t arraySize:16; member in struct:svga_host_surface_cache_key
/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/android_icu4j/src/main/java/android/icu/impl/
H A DCalendarCache.java22 makeArrays(arraySize);
32 arraySize = newSize;
33 threshold = (int)(arraySize * 0.75);
68 index = (index + delta) % arraySize;
75 int oldSize = arraySize;
80 arraySize = primes[++pIndex];
82 arraySize = arraySize * 2 + 1;
86 makeArrays(arraySize);
102 int h = (int)((key * 15821 + 1) % arraySize);
120 private int arraySize = primes[pIndex]; field in class:CalendarCache
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DCalendarCache.java20 makeArrays(arraySize);
30 arraySize = newSize;
31 threshold = (int)(arraySize * 0.75);
66 index = (index + delta) % arraySize;
73 int oldSize = arraySize;
78 arraySize = primes[++pIndex];
80 arraySize = arraySize * 2 + 1;
84 makeArrays(arraySize);
100 int h = (int)((key * 15821 + 1) % arraySize);
118 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.cpp100 size_t arraySize = SK_ARRAY_COUNT(textSizes); variable
101 for (size_t i = 0; i < arraySize; ++i) {
104 SkScalar scaleFactor = SkScalarInvert(scales[arraySize - i - 1]);
/external/skia/tests/
H A DFloatingPointTextureTest.cpp30 T min, T max, T epsilon, T maxInt, int arraySize, GrPixelConfig config) {
31 if (0 != arraySize % 4) {
32 REPORT_FAILURE(reporter, "(0 != arraySize % 4)",
33 SkString("arraySize must be divisible by 4."));
38 controlPixelData.setCount(arraySize);
39 readBuffer.setCount(arraySize);
41 for (int i = 0; i < arraySize; i += 4) {
29 runFPTest(skiatest::Reporter* reporter, GrContext* context, T min, T max, T epsilon, T maxInt, int arraySize, GrPixelConfig config) argument
H A DPackedConfigsTextureTest.cpp100 int arraySize, GrPixelConfig config) {
104 controlPixelData.setCount(arraySize);
105 readBuffer.setCount(arraySize);
107 for (int i = 0; i < arraySize; i += 2) {
99 run_test(skiatest::Reporter* reporter, GrContext* context, int arraySize, GrPixelConfig config) argument
/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.cpp372 int32_t arraySize; local
375 arraySize = US_STACKBUF_SIZE;
378 arraySize = dataLength + (dataLength >> 2);
384 if(!cloneArrayIfNeeded(arraySize, arraySize, doCopyArray)) {
408 arraySize = (int32_t)(length() + 2 * (mySourceEnd - mySource));
/external/icu/icu4c/source/extra/uconv/
H A Duwmsg.c47 int32_t arraySize; local
55 arraySize = BUF_SIZE;
69 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
78 arraySize = BUF_SIZE;
/external/skia/src/core/
H A DSkArenaAlloc.h172 uint32_t arraySize = SkTo<uint32_t>(count * sizeof(T)); local
176 objStart = this->allocObject(arraySize, alignment);
177 fCursor = objStart + arraySize;
179 uint32_t totalSize = arraySize + sizeof(Footer) + sizeof(uint32_t);
186 fCursor = objStart + arraySize;
/external/vulkan-validation-layers/layers/
H A Dimage.h52 uint32_t arraySize; member in struct:IMAGE_STATE
60 : mipLevels(0), arraySize(0), format(VK_FORMAT_UNDEFINED), samples(VK_SAMPLE_COUNT_1_BIT),
63 : mipLevels(pCreateInfo->mipLevels), arraySize(pCreateInfo->arrayLayers), format(pCreateInfo->format),
/external/deqp/external/vulkancts/modules/vulkan/compute/
H A DvktComputeTestsUtil.cpp75 const deUint32 arraySize)
82 makeImageSubresourceLayers(VK_IMAGE_ASPECT_COLOR_BIT, 0u, 0u, arraySize), // VkImageSubresourceLayers imageSubresource;
74 makeBufferImageCopy(const VkExtent3D extent, const deUint32 arraySize) argument
/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);
/external/icu/icu4c/source/test/letest/
H A Dxmlreader.cpp38 static le_uint32 *getHexArray(const UnicodeString &numbers, int32_t &arraySize) argument
42 arraySize = 1;
44 arraySize += 1;
47 le_uint32 *array = NEW_ARRAY(le_uint32, arraySize);
84 static float *getFloatArray(const UnicodeString &numbers, int32_t &arraySize) argument
88 arraySize = 1;
90 arraySize += 1;
93 float *array = NEW_ARRAY(float, arraySize);
/external/icu/icu4c/source/test/perf/leperf/
H A Dxmlreader.cpp42 static le_uint32 *getHexArray(const UnicodeString &numbers, int32_t &arraySize) argument
46 arraySize = 1;
48 arraySize += 1;
51 le_uint32 *array = NEW_ARRAY(le_uint32, arraySize);
88 static float *getFloatArray(const UnicodeString &numbers, int32_t &arraySize) argument
92 arraySize = 1;
94 arraySize += 1;
97 float *array = NEW_ARRAY(float, arraySize);
/external/protobuf/java/core/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

Completed in 5296 milliseconds

1234