Searched defs:indices (Results 276 - 300 of 319) sorted by relevance

<<111213

/external/skia/src/gpu/gl/
H A DGrGpuGL.cpp1794 GrGLvoid* indices = local
1800 indices));
/external/skia/src/pdf/
H A DSkPDFDevice.cpp1326 SkXfermode* xmode, const uint16_t indices[],
1323 drawVertices(const SkDraw& d, SkCanvas::VertexMode, int vertexCount, const SkPoint verts[], const SkPoint texs[], const SkColor colors[], SkXfermode* xmode, const uint16_t indices[], int indexCount, const SkPaint& paint) argument
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_c_lib_autogen.h192 const void* indices) {
193 gles2::GetGLContext()->DrawElements(mode, count, type, indices);
851 const void* indices,
854 mode, count, type, indices, primcount);
189 GLES2DrawElements(GLenum mode, GLsizei count, GLenum type, const void* indices) argument
848 GLES2DrawElementsInstancedANGLE(GLenum mode, GLsizei count, GLenum type, const void* indices, GLsizei primcount) argument
H A Dgles2_implementation.cc863 GLenum mode, GLsizei count, GLenum type, const void* indices) {
869 << static_cast<const void*>(indices) << ")");
878 !ValidateOffset("glDrawElements", reinterpret_cast<GLintptr>(indices))) {
884 "glDrawElements", this, helper_, count, type, 0, indices,
3538 GLenum mode, GLsizei count, GLenum type, const void* indices,
3545 << static_cast<const void*>(indices) << ", "
3565 reinterpret_cast<GLintptr>(indices))) {
3572 indices, &offset, &simulated)) {
862 DrawElements( GLenum mode, GLsizei count, GLenum type, const void* indices) argument
3537 DrawElementsInstancedANGLE( GLenum mode, GLsizei count, GLenum type, const void* indices, GLsizei primcount) argument
H A Dgles2_implementation_unittest.cc1113 static const uint16 indices[] = { local
1135 const GLsizei kIndexSize = sizeof(indices);
1187 gl_->DrawElements(GL_POINTS, kCount, GL_UNSIGNED_SHORT, indices);
1197 static const uint32 indices[] = { local
1219 const GLsizei kIndexSize = sizeof(indices);
1271 gl_->DrawElements(GL_POINTS, kCount, GL_UNSIGNED_INT, indices);
1281 static const uint32 indices[] = { local
1302 gl_->DrawElements(GL_POINTS, kCount, GL_UNSIGNED_INT, indices);
1396 static const uint16 indices[] = { local
1419 const GLsizei kIndexSize = sizeof(indices);
3273 const GLubyte indices[] = { 0 }; local
[all...]
H A Dgles2_trace_implementation_impl_autogen.h284 const void* indices) {
286 gl_->DrawElements(mode, count, type, indices);
1342 const void* indices,
1346 gl_->DrawElementsInstancedANGLE(mode, count, type, indices, primcount);
281 DrawElements(GLenum mode, GLsizei count, GLenum type, const void* indices) argument
1339 DrawElementsInstancedANGLE(GLenum mode, GLsizei count, GLenum type, const void* indices, GLsizei primcount) argument
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DRenderer11.cpp949 gl::Error Renderer11::applyIndexBuffer(const GLvoid *indices, gl::Buffer *elementArrayBuffer, GLsizei count, GLenum mode, GLenum type, TranslatedIndexData *indexInfo) argument
951 gl::Error error = mIndexDataManager->prepareIndexData(type, count, elementArrayBuffer, indices, indexInfo);
1073 void Renderer11::drawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, argument
1080 drawLineLoop(count, type, indices, minIndex, elementArrayBuffer);
1084 drawTriangleFan(count, type, indices, minIndex, elementArrayBuffer, instances);
1096 void Renderer11::drawLineLoop(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer) argument
1098 // Get the raw indices for an indexed draw
1103 intptr_t offset = reinterpret_cast<intptr_t>(indices);
1104 indices = static_cast<const GLubyte*>(storage->getData()) + offset;
1125 ERR("Could not create a 32-bit looping index buffer for GL_LINE_LOOP, too many indices require
1204 drawTriangleFan(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer, int instances) argument
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DRenderer9.cpp1276 // Applies the indices and element array bindings to the Direct3D 9 device
1277 gl::Error Renderer9::applyIndexBuffer(const GLvoid *indices, gl::Buffer *elementArrayBuffer, GLsizei count, GLenum mode, GLenum type, TranslatedIndexData *indexInfo) argument
1279 gl::Error error = mIndexDataManager->prepareIndexData(type, count, elementArrayBuffer, indices, indexInfo);
1341 void Renderer9::drawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, argument
1350 drawIndexedPoints(count, type, indices, minIndex, elementArrayBuffer);
1354 drawLineLoop(count, type, indices, minIndex, elementArrayBuffer);
1366 void Renderer9::drawLineLoop(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer) argument
1368 // Get the raw indices for an indexed draw
1373 intptr_t offset = reinterpret_cast<intptr_t>(indices);
1374 indices
1560 drawPoints(IDirect3DDevice9* device, GLsizei count, const GLvoid *indices, int minIndex) argument
1569 drawIndexedPoints(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer) argument
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkCanvas.cpp2241 const uint16_t indices[], int indexCount,
2247 colors, xmode, indices, indexCount,
2238 drawVertices(VertexMode vmode, int vertexCount, const SkPoint verts[], const SkPoint texs[], const SkColor colors[], SkXfermode* xmode, const uint16_t indices[], int indexCount, const SkPaint& paint) argument
/external/chromium_org/third_party/skia/src/device/xps/
H A DSkXPSDevice.cpp1177 SkXfermode* xmode, const uint16_t indices[],
1174 drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount, const SkPoint verts[], const SkPoint texs[], const SkColor colors[], SkXfermode* xmode, const uint16_t indices[], int indexCount, const SkPaint& paint) argument
/external/chromium_org/v8/src/
H A Druntime.cc171 // Check that there are only internal strings and array indices among keys.
189 // If we only have internalized strings and array indices among keys then we
1953 // Enumerator used as indices into the array returned from GetOwnProperty
3160 // in a cons string, it is likely that more indices will be
3685 ZoneList<int>* indices, unsigned int limit,
3688 // Collect indices of pattern in subject using memchr.
3697 indices->Add(static_cast<int>(pos - subject_start), zone);
3706 ZoneList<int>* indices,
3714 indices->Add(static_cast<int>(pos - subject_start), zone);
3725 ZoneList<int>* indices,
3684 FindOneByteStringIndices(Vector<const uint8_t> subject, char pattern, ZoneList<int>* indices, unsigned int limit, Zone* zone) argument
3704 FindTwoByteStringIndices(const Vector<const uc16> subject, uc16 pattern, ZoneList<int>* indices, unsigned int limit, Zone* zone) argument
3722 FindStringIndices(Isolate* isolate, Vector<const SubjectChar> subject, Vector<const PatternChar> pattern, ZoneList<int>* indices, unsigned int limit, Zone* zone) argument
3744 FindStringIndicesDispatch(Isolate* isolate, String* subject, String* pattern, ZoneList<int>* indices, unsigned int limit, Zone* zone) argument
[all...]
H A Dobjects.cc5733 Handle<FixedArray> indices = isolate->factory()->NewFixedArray( local
5747 if (!indices.is_null()) {
5749 indices = Handle<FixedArray>();
5753 indices->set(index, Smi::FromInt(load_by_field_index));
5767 indices.is_null() ? Object::cast(Smi::FromInt(0))
5768 : Object::cast(*indices));
11077 List<uint32_t>* indices) {
11090 indices->Add(index);
11162 List<uint32_t> indices; local
11176 if (!GetOldValue(isolate, array, i, &old_values, &indices)) brea
11073 GetOldValue(Isolate* isolate, Handle<JSObject> object, uint32_t index, List<Handle<Object> >* old_values, List<uint32_t>* indices) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp958 SmallVector<llvm::Constant*, 32> indices; local
963 indices.push_back(llvm::UndefValue::get(CGF.Int32Ty));
965 indices.push_back(Builder.getInt32(Idx.getZExtValue()));
968 Value *SV = llvm::ConstantVector::get(indices);
/external/deqp/modules/gles3/functional/
H A Des3fUniformApiTests.cpp914 // ARRAYUSAGE_ONLY_MIDDLE_INDEX: only middle index of each array is used in shader. If not given, use all indices.
927 // UNIFORMUSAGE_EVERY_OTHER: use about half of the uniforms. If not given, use all uniforms (except that some array indices may be omitted according to ARRAYUSAGE).
996 // \note minSize and maxSize are for arrays and can be distinct since implementations are allowed, but not required, to trim the inactive end indices of arrays.
1672 log << TestLog::Message << "// FAILURE: glGetActiveUniform() and glGetUniformIndices() gave different indices for uniform " << uniformName << TestLog::EndMessage;
2117 static const deUint16 indices[] = { 0, 1, 2, 2, 1, 3 }; local
2122 GLU_CHECK_CALL(glDrawElements(GL_TRIANGLES, DE_LENGTH_OF_ARRAY(indices), GL_UNSIGNED_SHORT, &indices[0]));
/external/deqp/modules/gles31/functional/
H A Des31fShaderImageLoadStoreTests.cpp3089 static const deUint16 indices[6] = { 0, 1, 2, 2, 1, 3 }; local
3099 glu::pr::Triangles(DE_LENGTH_OF_ARRAY(indices), &indices[0]));
/external/skia/src/core/
H A DSkCanvas.cpp2339 const uint16_t indices[], int indexCount,
2345 colors, xmode, indices, indexCount,
2336 drawVertices(VertexMode vmode, int vertexCount, const SkPoint verts[], const SkPoint texs[], const SkColor colors[], SkXfermode* xmode, const uint16_t indices[], int indexCount, const SkPaint& paint) argument
/external/skia/src/device/xps/
H A DSkXPSDevice.cpp1178 SkXfermode* xmode, const uint16_t indices[],
1175 drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount, const SkPoint verts[], const SkPoint texs[], const SkColor colors[], SkXfermode* xmode, const uint16_t indices[], int indexCount, const SkPaint& paint) argument
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DContentViewCore.java1815 public void selectPopupMenuItems(int[] indices) { argument
1818 indices);
3049 long nativeSelectPopupSourceFrame, int[] indices);
3048 nativeSelectPopupMenuItems(long nativeContentViewCoreImpl, long nativeSelectPopupSourceFrame, int[] indices) argument
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DlibGLESv2.cpp1366 void __stdcall glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid* indices) argument
1368 EVENT("(GLenum mode = 0x%X, GLsizei count = %d, GLenum type = 0x%X, const GLvoid* indices = 0x%0.8p)",
1369 mode, count, type, indices);
1375 if (!ValidateDrawElements(context, mode, count, type, indices, 0, &indexRange))
1380 context->drawElements(mode, count, type, indices, 0, indexRange);
1384 void __stdcall glDrawElementsInstancedANGLE(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount) argument
1386 EVENT("(GLenum mode = 0x%X, GLsizei count = %d, GLenum type = 0x%X, const GLvoid* indices = 0x%0.8p, GLsizei primcount = %d)",
1387 mode, count, type, indices, primcount);
1393 if (!ValidateDrawElementsInstancedANGLE(context, mode, count, type, indices, primcount, &indexRange))
1398 context->drawElements(mode, count, type, indices, primcoun
4951 glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid* indices) argument
7222 glDrawElementsInstanced(GLenum mode, GLsizei count, GLenum type, const GLvoid* indices, GLsizei instanceCount) argument
[all...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DExprNodes.py125 "the result of using negative indices inside of "
2729 # indices [ExprNode]
2733 # indices is used on buffer access, index on non-buffer access.
2740 subexprs = ['base', 'index', 'indices']
2741 indices = None variable in class:IndexNode
2917 # when cloning self.indices is copied.
2958 if self.indices:
2959 indices = self.indices
2961 indices
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dtrio.c1186 * indices specifies the order in which the parameters must be
1189 int indices[MAX_PARAMETERS]; local
1604 indices[width] = pos;
1612 indices[precision] = pos;
1620 indices[base] = pos;
1628 indices[varsize] = pos;
1632 indices[currentParam] = pos;
1817 indices[currentParam] = pos;
1905 i = indices[num];
/external/libxml2/
H A Dtrio.c1190 * indices specifies the order in which the parameters must be
1193 int indices[MAX_PARAMETERS]; local
1608 indices[width] = pos;
1616 indices[precision] = pos;
1624 indices[base] = pos;
1632 indices[varsize] = pos;
1636 indices[currentParam] = pos;
1821 indices[currentParam] = pos;
1909 i = indices[num];
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder.cc6779 const GLvoid* indices = reinterpret_cast<const GLvoid*>(offset); local
6784 indices = element_array_buffer->GetRange(offset, 0);
6789 glDrawElements(mode, count, type, indices);
6791 glDrawElementsInstancedANGLE(mode, count, type, indices, primcount);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Ddlist.c1336 const GLvoid *indices,
1348 const GLvoid *indices,
1374 const void *indices,
1387 const void *indices,
9917 const GLvoid * const *indices,
9923 (mode, count, type, indices, primcount,
1333 save_DrawElementsInstancedARB(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount) argument
1345 save_DrawElementsInstancedBaseVertexARB(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount, GLint basevertex) argument
1371 save_DrawElementsInstancedBaseInstance(GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount, GLuint baseinstance) argument
1384 save_DrawElementsInstancedBaseVertexBaseInstance(GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount, GLint basevertex, GLuint baseinstance) argument
9914 exec_MultiModeDrawElementsIBM(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const *indices, GLsizei primcount, GLint modestride) argument
/external/mesa3d/src/mesa/main/
H A Ddlist.c1336 const GLvoid *indices,
1348 const GLvoid *indices,
1374 const void *indices,
1387 const void *indices,
9917 const GLvoid * const *indices,
9923 (mode, count, type, indices, primcount,
1333 save_DrawElementsInstancedARB(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount) argument
1345 save_DrawElementsInstancedBaseVertexARB(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount, GLint basevertex) argument
1371 save_DrawElementsInstancedBaseInstance(GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount, GLuint baseinstance) argument
1384 save_DrawElementsInstancedBaseVertexBaseInstance(GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount, GLint basevertex, GLuint baseinstance) argument
9914 exec_MultiModeDrawElementsIBM(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const *indices, GLsizei primcount, GLint modestride) argument

Completed in 5467 milliseconds

<<111213