Searched refs:indices (Results 26 - 48 of 48) sorted by relevance

12

/frameworks/base/tools/aapt/
H A DXMLNode.cpp1288 const Vector<size_t>* indices = outPool->offsetsForString(attr.name);
1290 if (indices != NULL) {
1291 const int NJ = indices->size();
1294 size_t strIdx = indices->itemAt(j);
/frameworks/base/opengl/java/android/opengl/
H A DGLLogWrapper.java1026 private char[] toCharIndices(int count, int type, Buffer indices) { argument
1030 ByteBuffer byteBuffer = toByteBuffer(count, indices);
1040 if (indices instanceof CharBuffer) {
1041 charBuffer = (CharBuffer) indices;
1043 ByteBuffer byteBuffer = toByteBuffer(count * 2, indices);
1529 public void glDrawElements(int mode, int count, int type, Buffer indices) { argument
1534 char[] indexArray = toCharIndices(count, type, indices);
1543 mgl.glDrawElements(mode, count, type, indices);
H A DGLES10.java534 // C function void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
540 java.nio.Buffer indices
H A DGLErrorWrapper.java261 public void glDrawElements(int mode, int count, int type, Buffer indices) { argument
263 mgl.glDrawElements(mode, count, type, indices);
H A DGLES20.java682 // C function void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
688 java.nio.Buffer indices
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES10.spec30 void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
H A DGLES20.spec43 void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java443 java.nio.Buffer indices
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp564 /* void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices ) */
574 GLvoid *indices = (GLvoid *) 0; local
576 indices = (GLvoid *)getPointer(_env, indices_buf, &_array, &_remaining, &_bufferOffset);
583 if (indices == NULL) {
585 indices = (GLvoid *) (_indicesBase + _bufferOffset);
591 (GLvoid *)indices
596 releasePointer(_env, _array, indices, JNI_FALSE);
H A Dandroid_opengl_GLES20.cpp949 /* void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices ) */
959 GLvoid *indices = (GLvoid *) 0; local
961 indices = (GLvoid *)getPointer(_env, indices_buf, &_array, &_remaining, &_bufferOffset);
968 if (indices == NULL) {
970 indices = (GLvoid *) (_indicesBase + _bufferOffset);
976 (GLvoid *)indices
981 releasePointer(_env, _array, indices, JNI_FALSE);
H A Dcom_google_android_gles_jni_GLImpl.cpp692 /* void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices ) */
702 GLvoid *indices = (GLvoid *) 0; local
704 indices = (GLvoid *)getPointer(_env, indices_buf, &_array, &_remaining, &_bufferOffset);
711 if (indices == NULL) {
713 indices = (GLvoid *) (_indicesBase + _bufferOffset);
719 (GLvoid *)indices
724 releasePointer(_env, _array, indices, JNI_FALSE);
/frameworks/base/media/java/android/media/videoeditor/
H A DMediaArtistNativeHelper.java3790 * @param indices The indices of thumbnails wanted
3797 long startMs, long endMs, int thumbnailCount, int[] indices,
3826 thumbnailCount, startMs, endMs, indices,
3981 long endTimeMs, int[] indices, NativeGetPixelsListCallback callback);
3796 getPixelsList(String filename, final int width, final int height, long startMs, long endMs, int thumbnailCount, int[] indices, final MediaItem.GetThumbnailListCallback callback, final int videoRotation) argument
3979 nativeGetPixelsList(String fileName, int[] pixelArray, int width, int height, int nosofTN, long startTimeMs, long endTimeMs, int[] indices, NativeGetPixelsListCallback callback) argument
/frameworks/native/opengl/include/GLES/
H A Dglext.h964 GL_API void GL_APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount);
967 typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount);
H A Dgl.h663 GL_API void GL_APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices);
/frameworks/native/opengl/include/GLES2/
H A Dgl2ext.h1006 GL_APICALL void GL_APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount);
1009 typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount);
H A Dgl2.h515 GL_APICALL void GL_APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const GLvoid* indices);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h65 void GLTrace_glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid* indices);
210 void GLTrace_glMultiDrawElementsEXT(GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount);
H A Dgltrace_api.cpp1592 void GLTrace_glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid* indices) { argument
1616 // copy argument indices
1620 arg_indices->add_intvalue((int)indices);
1625 glContext->hooks->gl.glDrawElements(mode, count, type, indices);
1630 (void *) indices,
7706 void GLTrace_glMultiDrawElementsEXT(GLenum mode, const GLsizei *count, GLenum type, const GLvoid* *indices, GLsizei primcount) { argument
7730 // copy argument indices
7734 arg_indices->add_intvalue((int)indices);
7745 glContext->hooks->gl.glMultiDrawElementsEXT(mode, count, type, indices, primcount);
7751 (void *) indices,
[all...]
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java348 // C function void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
354 java.nio.Buffer indices
/frameworks/native/opengl/tests/angeles/include/GLES/
H A Dgl.h502 GLAPI void APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java975 short[] indices, int indexOffset,
971 nativeDrawVertices(int nCanvas, int mode, int n, float[] verts, int vertOffset, float[] texs, int texOffset, int[] colors, int colorOffset, short[] indices, int indexOffset, int indexCount, int nPaint) argument
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorMain.cpp2319 jint* indices = env->GetIntArrayElements(indexArray, NULL); local
2326 int k = indices[i];
2342 env->ReleaseIntArrayElements(indexArray, indices, 0);
/frameworks/base/core/java/android/view/
H A DGLES20Canvas.java1321 float[] texs, int texOffset, int[] colors, int colorOffset, short[] indices,
1320 drawVertices(VertexMode mode, int vertexCount, float[] verts, int vertOffset, float[] texs, int texOffset, int[] colors, int colorOffset, short[] indices, int indexOffset, int indexCount, Paint paint) argument

Completed in 845 milliseconds

12