Searched defs:mSize (Results 1 - 25 of 26) sorted by relevance

12

/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 DContext.h149 VertexAttribute() : mType(GL_FLOAT), mSize(4), mNormalized(false), mStride(0), mPointer(nullptr), mArrayEnabled(false)
161 case GL_BYTE: return mSize * sizeof(GLbyte);
162 case GL_UNSIGNED_BYTE: return mSize * sizeof(GLubyte);
163 case GL_SHORT: return mSize * sizeof(GLshort);
164 case GL_UNSIGNED_SHORT: return mSize * sizeof(GLushort);
165 case GL_FIXED: return mSize * sizeof(GLfixed);
166 case GL_FLOAT: return mSize * sizeof(GLfloat);
167 default: UNREACHABLE(mType); return mSize * sizeof(GLfloat);
178 GLint mSize; member in class:es1::VertexAttribute
/external/swiftshader/src/OpenGL/libGL/
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
/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/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/swiftshader/src/OpenGL/libGLESv2/
H A DBuffer.h43 size_t size() const { return mSize; }
58 size_t mSize; member in class:es2::Buffer
H A DContext.h196 VertexAttribute() : mType(GL_FLOAT), mSize(4), mNormalized(false), mPureInteger(false), mStride(0), mDivisor(0), mPointer(nullptr), mArrayEnabled(false)
209 case GL_BYTE: return mSize * sizeof(GLbyte);
210 case GL_UNSIGNED_BYTE: return mSize * sizeof(GLubyte);
211 case GL_SHORT: return mSize * sizeof(GLshort);
212 case GL_UNSIGNED_SHORT: return mSize * sizeof(GLushort);
213 case GL_INT: return mSize * sizeof(GLint);
214 case GL_UNSIGNED_INT: return mSize * sizeof(GLuint);
215 case GL_FIXED: return mSize * sizeof(GLfixed);
216 case GL_FLOAT: return mSize * sizeof(GLfloat);
218 case GL_HALF_FLOAT: return mSize * sizeo
302 GLint mSize; member in class:es2::VertexAttribute
[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/tpm2/
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
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
/external/v4l2_codec2/include/
H A DC2VDAComponent.h61 std::shared_ptr<C2StreamPictureSizeInfo::output> mSize; member in class:android::C2VDAComponent::IntfImpl
/external/harfbuzz_ng/src/
H A Dhb-directwrite.cc74 uint32_t mSize; member in class:DWriteFontFileStream
79 mSize = aSize;
94 if (fileOffset + fragmentSize > mSize) {
111 *fileSize = mSize;
/external/valgrind/VEX/pub/
H A Dlibvex_ir.h2434 Int mSize; /* of access, or zero if mFx==Ifx_None */ member in struct:_IRDirty
/external/robolectric/v1/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/external/libphonenumber/demo/war/WEB-INF/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 5629 milliseconds

12