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

12 3 4 5 6 7 8 910

  /external/skia/tests/
SerializationTest.cpp 85 static void Write(SkWriteBuffer& writer, unsigned char* data, uint32_t arraySize) {
86 writer.writeByteArray(data, arraySize);
88 static bool Read(SkValidatingReadBuffer& reader, unsigned char* data, uint32_t arraySize) {
89 return reader.readByteArray(data, arraySize);
94 static void Write(SkWriteBuffer& writer, SkColor* data, uint32_t arraySize) {
95 writer.writeColorArray(data, arraySize);
97 static bool Read(SkValidatingReadBuffer& reader, SkColor* data, uint32_t arraySize) {
98 return reader.readColorArray(data, arraySize);
103 static void Write(SkWriteBuffer& writer, int32_t* data, uint32_t arraySize) {
104 writer.writeIntArray(data, arraySize);
    [all...]
  /external/icu/icu4c/source/extra/uconv/
uwmsg.c 44 int32_t arraySize;
52 arraySize = BUF_SIZE;
66 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
75 arraySize = BUF_SIZE;
  /hardware/qcom/display/msm8909/libhwcomposer/
hwc_dump_layers.h 133 void getHalPixelFormatStr(int format, char pixelformatstr[], size_t arraySize);
  /packages/inputmethods/LatinIME/native/jni/src/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 50 if (data[ct].slot >= 0 && data[ct].arraySize > 1) {
54 data[ct].arraySize = (uint32_t)uniformList[ui]->arraySize;
61 ALOGV("%s U, %s = %d, arraySize = %d\n", logTag,
63 data[ct].arraySize);
73 data[ct].arraySize = prog->getUniformArraySize(ct);
80 if (data[ct].slot >= 0 && data[ct].arraySize > 1) {
86 if (data[ct].slot >= 0 && data[ct].arraySize > 1) {
207 &uniformList[ct]->arraySize, &uniformList[ct]->type,
209 //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 311 void RsdShader::logUniform(const Element *field, const float *fd, uint32_t arraySize ) {
314 for (uint32_t i = 0; i < arraySize; i ++) {
315 if (arraySize > 1) {
358 int32_t slot, uint32_t arraySize ) {
361 RSD_CALL_GL(glUniformMatrix4fv, slot, arraySize, GL_FALSE, fd);
363 RSD_CALL_GL(glUniformMatrix3fv, slot, arraySize, GL_FALSE, fd);
365 RSD_CALL_GL(glUniformMatrix2fv, slot, arraySize, GL_FALSE, fd);
369 RSD_CALL_GL(glUniform1fv, slot, arraySize, fd);
372 RSD_CALL_GL(glUniform2fv, slot, arraySize, fd);
375 RSD_CALL_GL(glUniform3fv, slot, arraySize, fd)
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/utils/
char_utils.h 56 static AK_FORCE_INLINE int getCodePointCount(const int arraySize, const int *const codePoints) {
58 for (; size < arraySize; ++size) {
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageUtil.hpp 147 TestTexture1DArray (const tcu::TextureFormat& format, int width, int arraySize);
148 TestTexture1DArray (const tcu::CompressedTexFormat& format, int width, int arraySize);
180 TestTexture2DArray (const tcu::TextureFormat& format, int width, int height, int arraySize);
181 TestTexture2DArray (const tcu::CompressedTexFormat& format, int width, int height, int arraySize);
230 TestTextureCubeArray (const tcu::TextureFormat& format, int size, int arraySize);
231 TestTextureCubeArray (const tcu::CompressedTexFormat& format, int size, int arraySize);
vktPipelineImageUtil.cpp 258 1u // deUint32 arraySize;
428 (deUint32)srcTexture.getArraySize(), // deUint32 arraySize;
448 (deUint32)srcTexture.getArraySize(), // deUint32 arraySize;
826 TestTexture1DArray::TestTexture1DArray (const tcu::TextureFormat& format, int width, int arraySize)
827 : TestTexture (format, width, 1, arraySize)
828 , m_texture (format, width, arraySize)
834 TestTexture1DArray::TestTexture1DArray (const tcu::CompressedTexFormat& format, int width, int arraySize)
835 : TestTexture (format, width, 1, arraySize)
836 , m_texture (tcu::getUncompressedFormat(format), width, arraySize)
935 TestTexture2DArray::TestTexture2DArray (const tcu::TextureFormat& format, int width, int height, int arraySize)
    [all...]
  /external/icu/icu4c/source/common/
unistr_cnv.cpp 370 int32_t arraySize;
373 arraySize = US_STACKBUF_SIZE;
376 arraySize = dataLength + (dataLength >> 2);
382 if(!cloneArrayIfNeeded(arraySize, arraySize, doCopyArray)) {
406 arraySize = (int32_t)(length() + 2 * (mySourceEnd - mySource));
  /art/test/004-JniTest/src/
Main.java 247 final int arraySize = 32;
248 byte[] array0 = new byte[arraySize];
249 byte[] array1 = new byte[arraySize];
250 enterJniCriticalSection(arraySize, array0, array1);
261 private static native void enterJniCriticalSection(int arraySize, byte[] array0, byte[] array);
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.hpp 88 void setArraySize (int arraySize);
136 , arraySize (-1)
149 int arraySize;
vktSSBOLayoutCase.cpp 118 void BufferBlock::setArraySize (int arraySize)
120 DE_ASSERT(arraySize >= 0);
121 m_lastUnsizedArraySizes.resize(arraySize == 0 ? 1 : arraySize, 0);
122 m_arraySize = arraySize;
144 DE_ASSERT(entry.arraySize != 0 || entry.topLevelArraySize != 0);
145 return entry.arraySize == 0 || entry.topLevelArraySize == 0;
153 << ", arraySize = " << entry.arraySize
402 entry.arraySize = 1
    [all...]
  /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;
300 (ee->mFields[i].arraySize != asize)) {
339 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/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 49 VarType::VarType (const VarType& elementType, int arraySize)
52 DE_ASSERT(arraySize >= 0 || arraySize == UNSIZED_ARRAY);
53 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;
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktUniformBlockCase.hpp 72 VarType (const VarType& elementType, int arraySize);
196 void setArraySize (int arraySize) { m_arraySize = 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; }
  /external/skia/gm/
dftext.cpp 106 size_t arraySize = SK_ARRAY_COUNT(textSizes);
107 for (size_t i = 0; i < arraySize; ++i) {
110 SkScalar scaleFactor = SkScalarInvert(scales[arraySize - i - 1]);

Completed in 1016 milliseconds

12 3 4 5 6 7 8 910