HomeSort by relevance Sort by last modified time
    Searched refs:arraySize (Results 26 - 50 of 165) sorted by null

12 3 4 5 6 7

  /external/icu/icu4c/source/test/letest/
xmlreader.cpp 36 static le_uint32 *getHexArray(const UnicodeString &numbers, int32_t &arraySize)
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)
86 arraySize = 1;
88 arraySize += 1;
91 float *array = NEW_ARRAY(float, arraySize);
  /external/icu/icu4c/source/test/perf/leperf/
xmlreader.cpp 36 static le_uint32 *getHexArray(const UnicodeString &numbers, int32_t &arraySize)
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)
86 arraySize = 1;
88 arraySize += 1;
91 float *array = NEW_ARRAY(float, arraySize);
  /external/replicaisland/src/com/replica/replicaisland/
PhasedObjectManager.java 40 public PhasedObjectManager(int arraySize) {
41 super(arraySize);
  /packages/inputmethods/LatinIME/native/jni/src/utils/
char_utils.h 63 static AK_FORCE_INLINE int getCodePointCount(const int arraySize, const int *const codePoints) {
65 for (; size < arraySize; ++size) {
  /external/icu/icu4c/source/extra/uconv/
uwmsg.c 46 int32_t arraySize;
54 arraySize = BUF_SIZE;
68 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
77 arraySize = BUF_SIZE;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/pt_common/
dynamic_pt_writing_utils.h 40 const size_t arraySize, int *const arraySizeFieldPos);
  /external/icu/icu4c/source/samples/legacy/
legacy.cpp 39 void printArray(const char* const comment, const UChar UArray[][5], int32_t arraySize) {
42 for(i = 0; i<arraySize; i++) {
  /frameworks/rs/driver/
rsdShaderCache.cpp 46 if (data[ct].slot >= 0 && data[ct].arraySize > 1) {
50 data[ct].arraySize = (uint32_t)uniformList[ui]->arraySize;
57 ALOGV("%s U, %s = %d, arraySize = %d\n", logTag,
58 prog->getUniformName(ct).string(), data[ct].slot, data[ct].arraySize);
66 data[ct].arraySize = prog->getUniformArraySize(ct);
73 if (data[ct].slot >= 0 && data[ct].arraySize > 1) {
79 if (data[ct].slot >= 0 && data[ct].arraySize > 1) {
198 &uniformList[ct]->arraySize, &uniformList[ct]->type,
200 //ALOGE("GL UNI idx=%u, arraySize=%u, name=%s", ct
    [all...]
rsdShader.h 126 const float *fd, uint32_t arraySize);
129 const float *fd, int32_t slot, uint32_t arraySize );
rsdShader.cpp 309 void RsdShader::logUniform(const Element *field, const float *fd, uint32_t arraySize ) {
312 for (uint32_t i = 0; i < arraySize; i ++) {
313 if (arraySize > 1) {
356 int32_t slot, uint32_t arraySize ) {
359 RSD_CALL_GL(glUniformMatrix4fv, slot, arraySize, GL_FALSE, fd);
361 RSD_CALL_GL(glUniformMatrix3fv, slot, arraySize, GL_FALSE, fd);
363 RSD_CALL_GL(glUniformMatrix2fv, slot, arraySize, GL_FALSE, fd);
367 RSD_CALL_GL(glUniform1fv, slot, arraySize, fd);
370 RSD_CALL_GL(glUniform2fv, slot, arraySize, fd);
373 RSD_CALL_GL(glUniform3fv, slot, arraySize, fd)
    [all...]
  /external/chromium_org/third_party/icu/source/common/
unistr_cnv.cpp 380 int32_t arraySize;
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/common/
unistr_cnv.cpp 380 int32_t arraySize;
383 arraySize = US_STACKBUF_SIZE;
386 arraySize = dataLength + (dataLength >> 2);
392 if(!cloneArrayIfNeeded(arraySize, arraySize, doCopyArray)) {
416 arraySize = (int32_t)(length() + 2 * (mySourceEnd - mySource));
  /libcore/luni/src/main/java/java/io/
SerializationHandleMap.java 40 int arraySize = (int) (((long) threshold * 10000) / LOAD_FACTOR);
41 resizeArrays(arraySize);
  /frameworks/rs/
rsElement.cpp 78 total += mFields[ct].e->mBits * mFields[ct].arraySize;
90 total += mFields[ct].e->mBitsUnpadded * mFields[ct].arraySize;
101 ALOGV("%s name: %s, offsetBits: %u, arraySize: %u",
102 prefix, mFields[ct].name, mFields[ct].offsetBits, mFields[ct].arraySize);
118 stream->addU32(mFields[ct].arraySize);
205 bits += mFields[ct].e->getSizeBits() * mFields[ct].arraySize;
206 bitsUnpadded += mFields[ct].e->getSizeBitsUnpadded() * mFields[ct].arraySize;
217 mHal.state.fieldArraySizes[ctNoPadding] = mFields[ct].arraySize;
298 (ee->mFields[i].arraySize != asize)) {
337 e->mFields[ct].arraySize = asize
    [all...]
rsElement.h 89 uint32_t getFieldArraySize(uint32_t idx) const {return mFields[idx].arraySize;}
147 uint32_t arraySize;
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
SmallSortedMap.java 94 * @param arraySize The size of the entry array containing the
99 SmallSortedMap<FieldDescriptorType, Object> newFieldMap(int arraySize) {
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) {
154 this.maxArraySize = arraySize;
  /external/deqp/framework/opengl/
gluProgramInterfaceQuery.hpp 64 deUint32 arraySize; //!< GL_ARRAY_SIZE
77 , arraySize (0)
gluVarType.cpp 48 VarType::VarType (const VarType& elementType, int arraySize)
51 DE_ASSERT(arraySize >= 0 || arraySize == UNSIZED_ARRAY);
52 m_data.array.size = arraySize;
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
StringResourceMap.java 95 public void setOutputArraySize(final int arraySize) {
96 mOutputArraySize = arraySize;
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsElement.h 87 uint32_t getFieldArraySize(uint32_t idx) const {return mFields[idx].arraySize;}
144 uint32_t arraySize;
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsElement.h 87 uint32_t getFieldArraySize(uint32_t idx) const {return mFields[idx].arraySize;}
144 uint32_t arraySize;
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsElement.h 87 uint32_t getFieldArraySize(uint32_t idx) const {return mFields[idx].arraySize;}
144 uint32_t arraySize;
  /external/deqp/modules/gles31/functional/
es31fSSBOLayoutCase.cpp 120 void BufferBlock::setArraySize (int arraySize)
122 DE_ASSERT(arraySize >= 0);
123 m_lastUnsizedArraySizes.resize(arraySize == 0 ? 1 : arraySize, 0);
124 m_arraySize = arraySize;
162 , arraySize (-1)
175 int arraySize;
185 DE_ASSERT(entry.arraySize != 0 || entry.topLevelArraySize != 0);
186 return entry.arraySize == 0 || entry.topLevelArraySize == 0;
194 << ", arraySize = " << entry.arraySiz
    [all...]
  /external/deqp/modules/glshared/
glsUniformBlockCase.hpp 77 VarType (const VarType& elementType, int arraySize);
195 void setArraySize (int arraySize) { m_arraySize = 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);

Completed in 711 milliseconds

12 3 4 5 6 7