Searched refs:mSize (Results 1 - 25 of 53) sorted by relevance

123

/external/smali/util/src/main/java/org/jf/util/
H A DSparseIntArray.java55 mSize = 0;
71 int i = binarySearch(mKeys, 0, mSize, key);
85 int i = binarySearch(mKeys, 0, mSize, key);
102 int i = binarySearch(mKeys, 0, mSize, key);
113 System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1));
114 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
115 mSize--;
124 int i = binarySearch(mKeys, 0, mSize, key);
131 if (mSize >= mKeys.length) {
132 int n = Math.max(mSize
267 private int mSize; field in class:SparseIntArray
[all...]
H A DSparseArray.java62 mSize = 0;
78 int i = binarySearch(mKeys, 0, mSize, key);
91 int i = binarySearch(mKeys, 0, mSize, key);
109 // Log.e("SparseArray", "gc start with " + mSize);
111 int n = mSize;
130 mSize = o;
132 // Log.e("SparseArray", "gc end with " + mSize);
141 int i = binarySearch(mKeys, 0, mSize, key);
148 if (i < mSize && mValues[i] == DELETED) {
154 if (mGarbage && mSize >
372 private int mSize; field in class:SparseArray
[all...]
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
H A DFieldArray.java49 private int mSize; field in class:FieldArray
67 mSize = 0;
97 int n = mSize;
117 mSize = o;
132 if (i < mSize && mData[i] == DELETED) {
138 if (mGarbage && mSize >= mFieldNumbers.length) {
145 if (mSize >= mFieldNumbers.length) {
146 int n = idealIntArraySize(mSize + 1);
158 if (mSize - i != 0) {
159 System.arraycopy(mFieldNumbers, i, mFieldNumbers, i + 1, mSize
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSparseArray.java62 mSize = 0;
82 int i = binarySearch(mKeys, 0, mSize, key);
97 int i = binarySearch(mKeys, 0, mSize, key);
116 // Log.e("SparseArray", "gc start with " + mSize);
118 int n = mSize;
137 mSize = o;
139 // Log.e("SparseArray", "gc end with " + mSize);
149 int i = binarySearch(mKeys, 0, mSize, key);
156 if (i < mSize && mValues[i] == DELETED) {
162 if (mGarbage && mSize >
394 private int mSize; field in class:ShadowSparseArray
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DObjectPool.java27 private int mSize; field in class:ObjectPool
64 mSize = size;
65 mAvailable = new FixedSizeArray<Object>(mSize);
77 return mSize;
/external/swiftshader/src/OpenGL/libGLES_CM/
H A DBuffer.h43 size_t size() const { return mSize; }
50 size_t mSize; member in class:es1::Buffer
H A DBuffer.cpp31 mSize = 0;
51 mSize = size;
H A DContext.h150 VertexAttribute() : mType(GL_FLOAT), mSize(4), mNormalized(false), mStride(0), mPointer(nullptr), mArrayEnabled(false)
162 case GL_BYTE: return mSize * sizeof(GLbyte);
163 case GL_UNSIGNED_BYTE: return mSize * sizeof(GLubyte);
164 case GL_SHORT: return mSize * sizeof(GLshort);
165 case GL_UNSIGNED_SHORT: return mSize * sizeof(GLushort);
166 case GL_FIXED: return mSize * sizeof(GLfixed);
167 case GL_FLOAT: return mSize * sizeof(GLfloat);
168 default: UNREACHABLE(mType); return mSize * sizeof(GLfloat);
179 GLint mSize; member in class:es1::VertexAttribute
H A DVertexDataManager.cpp187 translated[i].count = attribs[i].mSize;
/external/swiftshader/src/OpenGL/libGL/
H A DBuffer.cpp30 mSize = 0;
50 mSize = size;
H A DBuffer.h45 size_t size() const { return mSize; }
52 size_t mSize; member in class:gl::Buffer
H A DContext.h371 VertexAttribute() : mType(GL_FLOAT), mSize(0), mNormalized(false), mStride(0), mPointer(nullptr), mArrayEnabled(false)
383 case GL_BYTE: return mSize * sizeof(GLbyte);
384 case GL_UNSIGNED_BYTE: return mSize * sizeof(GLubyte);
385 case GL_SHORT: return mSize * sizeof(GLshort);
386 case GL_UNSIGNED_SHORT: return mSize * sizeof(GLushort);
387 case GL_FIXED: return mSize * sizeof(GLfixed);
388 case GL_FLOAT: return mSize * sizeof(GLfloat);
389 default: UNREACHABLE(mType); return mSize * sizeof(GLfloat);
400 GLint mSize; member in class:gl::VertexAttribute
H A DVertexDataManager.cpp192 translated[i].count = attribs[i].mSize;
/external/swiftshader/src/OpenGL/libGLESv2/
H A DBuffer.cpp31 mSize = 0;
55 mSize = size;
H A DBuffer.h43 size_t size() const { return mSize; }
58 size_t mSize; member in class:es2::Buffer
H A DVertexArray.cpp72 mVertexAttributes[attributeIndex].mSize = size;
H A DContext.h192 VertexAttribute() : mType(GL_FLOAT), mSize(0), mNormalized(false), mStride(0), mDivisor(0), mPointer(nullptr), mArrayEnabled(false)
205 case GL_BYTE: return mSize * sizeof(GLbyte);
206 case GL_UNSIGNED_BYTE: return mSize * sizeof(GLubyte);
207 case GL_SHORT: return mSize * sizeof(GLshort);
208 case GL_UNSIGNED_SHORT: return mSize * sizeof(GLushort);
209 case GL_INT: return mSize * sizeof(GLint);
210 case GL_UNSIGNED_INT: return mSize * sizeof(GLuint);
211 case GL_FIXED: return mSize * sizeof(GLfixed);
212 case GL_FLOAT: return mSize * sizeof(GLfloat);
213 case GL_HALF_FLOAT: return mSize * sizeo
292 GLint mSize; member in class:es2::VertexAttribute
[all...]
H A DVertexDataManager.cpp201 translated[i].count = attrib.mSize;
/external/tpm2/
H A DMathFunctions_fp.h24 const UINT32 mSize, // IN: size of number to be exponentiated
H A DCpriHash_fp.h57 _cpri__MGF1(UINT32 mSize, // IN: length of the mask to be produced
H A DCpriHash.c661 // >0 should be the same as mSize
665 UINT32 mSize, // IN: length of the mask to be produced
683 if(mSize > (1024*16)) // Semi-arbitrary maximum
693 for(counter = 0, remaining = mSize; remaining > 0; counter++)
721 retVal = (CRYPT_RESULT)mSize;
664 _cpri__MGF1( UINT32 mSize, BYTE *mask, TPM_ALG_ID hashAlg, UINT32 sSize, BYTE *seed ) argument
H A DMathFunctions.c444 const UINT32 mSize, // IN: size of number to be exponentiated
471 if ( BN_bin2bn(m, mSize, bnM) == NULL
441 _math__ModExp( UINT32 cSize, BYTE *c, const UINT32 mSize, const BYTE *m, const UINT32 eSize, const BYTE *e, const UINT32 nSize, const BYTE *n ) argument
/external/valgrind/lackey/
H A Dlk_main.c859 tl_assert(d->mSize != 0);
860 dsize = d->mSize;
867 tl_assert(d->mSize == 0);
/external/fio/engines/
H A Dlibhdfs.c97 if (fi->mSize >= hd->fsbs || io_u->ddir == DDIR_WRITE) {
/external/harfbuzz_ng/src/
H A Dhb-directwrite.cc76 uint32_t mSize; member in class:DWriteFontFileStream
81 mSize = aSize;
96 if (fileOffset + fragmentSize > mSize) {
113 *fileSize = mSize;

Completed in 1958 milliseconds

123