HomeSort by relevance Sort by last modified time
    Searched defs:indices (Results 151 - 175 of 228) sorted by null

1 2 3 4 5 67 8 910

  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_base.cc 1319 static const GLshort indices[] = {100, 1, 2, 3, 4, 5, 6, 7, 100, 9}; local
    [all...]
  /external/chromium_org/third_party/opus/src/silk/
structs.h 191 SideInfoIndices indices; member in struct:__anon15702
292 /* Quantization indices */
293 SideInfoIndices indices; member in struct:__anon15705
  /external/chromium_org/third_party/skia/src/core/
SkPicturePlayback.cpp 986 const uint16_t* indices = NULL; local
    [all...]
SkDraw.cpp 2273 const uint16_t* indices = state->fIndices; local
2303 const uint16_t* indices = state->fIndices; local
2333 const uint16_t* indices = state->fIndices; local
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGpuGL.cpp 1606 GrGLvoid* indices = local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
PerformanceResultsPreferencePage.java 636 int[] indices = new int[count]; local
640 indices[n++] = this.resultsDimensionsList.indexOf(resultsDimension);
644 System.arraycopy(indices, 0, indices = new int[n], 0, n);
646 this.resultsDimensionsList.select(indices);
1032 int[] indices = this.resultsDimensionsList.getSelectionIndices(); local
    [all...]
  /external/flac/include/FLAC/
format.h 682 FLAC__StreamMetadata_CueSheet_Index *indices; member in struct:__anon20105
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Mesh.java 148 * ,it specifies the indices as a linear list and not some special
357 // convert indices
358 VertexBuffer indices = getBuffer(Type.BoneIndex); local
359 ByteBuffer originalIndex = (ByteBuffer) indices.getData();
363 indices.updateData(arrayIndex);
427 * Set the mode start indices for {@link Mode#Hybrid} mesh mode.
429 * @return mode start indices
436 * Get the mode start indices for {@link Mode#Hybrid} mesh mode.
438 * @return mode start indices
762 // aquire triangle's vertex indices
    [all...]
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
LwjglGL1Renderer.java 1048 VertexBuffer indices = null; local
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zUpdate.cpp 322 CRecordVector<UInt32> Indices;
835 groups[GetGroupIndex(method.PasswordIsDefined, filteredGroup)].Indices.Add(i);
1012 int numFiles = group.Indices.Size();
1019 refItems.Add(CRefItem(group.Indices[i], updateItems[group.Indices[i]], sortByType));
1022 CRecordVector<UInt32> indices; local
1023 indices.Reserve(numFiles);
1028 indices.Add(index);
1050 const CUpdateItem &ui = updateItems[indices[i + numSubFiles]];
1069 inStreamSpec->Init(updateCallback, &indices[i], numSubFiles);
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
ArchiveCommandLine.cpp 803 CIntVector indices; local
804 SortFileNames(fullPaths, indices);
805 sortedPaths.Reserve(indices.Size());
806 sortedFullPaths.Reserve(indices.Size());
807 for (i = 0; i < indices.Size(); i++)
809 int index = indices[i];
  /external/qemu/android/config/linux-x86/asm/
kvm.h 160 __u32 indices[0]; member in struct:kvm_msr_list
  /external/qemu/android/config/linux-x86_64/asm/
kvm.h 160 __u32 indices[0]; member in struct:kvm_msr_list
  /external/skia/src/core/
SkPicturePlayback.cpp 986 const uint16_t* indices = NULL; local
    [all...]
SkDraw.cpp 2319 const uint16_t* indices = state->fIndices; local
2349 const uint16_t* indices = state->fIndices; local
2379 const uint16_t* indices = state->fIndices; local
    [all...]
  /external/skia/src/gpu/gl/
GrGpuGL.cpp 1606 GrGLvoid* indices = local
    [all...]
  /frameworks/base/core/jni/
android_opengl_GLES10.cpp 758 /* void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices ) */
768 GLvoid *indices = (GLvoid *) 0; local
770 indices = (GLvoid *)getPointer(_env, indices_buf, &_array, &_remaining, &_bufferOffset);
777 if (indices == NULL) {
779 indices = (GLvoid *) (_indicesBase + _bufferOffset);
785 (GLvoid *)indices
790 releasePointer(_env, _array, indices, JNI_FALSE);
    [all...]
android_opengl_GLES20.cpp 1199 GLvoid *indices = (GLvoid *) 0; local
    [all...]
android_opengl_GLES30.cpp 336 /* void glDrawRangeElements ( GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices ) */
343 GLvoid *indices = (GLvoid *) 0; local
345 indices = (GLvoid *)getPointer(_env, indices_buf, &_array, &_remaining, &_bufferOffset);
346 if (indices == NULL) {
348 indices = (GLvoid *) (_indicesBase + _bufferOffset);
356 (GLvoid *)indices
359 releasePointer(_env, _array, indices, JNI_FALSE);
3613 GLvoid *indices = (GLvoid *) 0; local
    [all...]
  /frameworks/base/media/jni/mediaeditor/
VideoEditorMain.cpp 2275 jint* indices = env->GetIntArrayElements(indexArray, NULL); local
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Imp.cpp 593 const GLvoid* indices = elementsIndices; local
594 if(ctx->isBindedBuffer(GL_ELEMENT_ARRAY_BUFFER)) { // if vbo is binded take the indices from the vbo
596 indices = buf+reinterpret_cast<uintptr_t>(elementsIndices);
600 ctx->setupArraysPointers(tmpArrs,0,count,type,indices,false);
602 int maxIndex = ctx->findMaxIndex(count, type, indices);
611 ctx->dispatcher().glDrawElements(mode,count,type,indices);
    [all...]
  /prebuilts/misc/common/jython/
jython.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 
  /external/chromium_org/ppapi/lib/gl/gles2/
gles2.c 226 GLenum mode, GLsizei count, GLenum type, const void* indices) {
228 glGetCurrentContextPPAPI(), mode, count, type, indices); local
880 GLenum mode, GLsizei count, GLenum type, const void* indices,
886 glGetCurrentContextPPAPI(), mode, count, type, indices, primcount); local
  /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
OGLESShaderRenderer.java 2643 VertexBuffer indices = null; local
2668 VertexBuffer indices = null; local
    [all...]

Completed in 624 milliseconds

1 2 3 4 5 67 8 910