Searched defs:indices (Results 126 - 150 of 319) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/src/core/
H A DSkBBoxRecord.cpp294 const uint16_t indices[], int indexCount,
300 colors, xfer, indices, indexCount, paint);
291 drawVertices(VertexMode mode, int vertexCount, const SkPoint vertices[], const SkPoint texs[], const SkColor colors[], SkXfermode* xfer, const uint16_t indices[], int indexCount, const SkPaint& paint) argument
H A DSkPicturePlayback.cpp459 const uint16_t* indices = NULL; local
469 indices = (const uint16_t*)reader->skip(iCount * sizeof(uint16_t));
478 canvas->drawVertices(vmode, vCount, verts, texs, colors, xfer, indices, iCount, paint);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrBufferAllocPool.cpp481 const void* indices,
486 memcpy(space, indices, sizeof(uint16_t) * indexCount);
480 appendIndices(int indexCount, const void* indices, const GrIndexBuffer** buffer, int* startIndex) argument
/external/chromium_org/third_party/skia/src/utils/
H A DSkProxyCanvas.cpp152 const uint16_t indices[], int indexCount,
155 xmode, indices, indexCount, paint);
149 drawVertices(VertexMode vmode, int vertexCount, const SkPoint vertices[], const SkPoint texs[], const SkColor colors[], SkXfermode* xmode, const uint16_t indices[], int indexCount, const SkPaint& paint) argument
H A DSkTextureCompressor_LATC.cpp143 uint64_t indices = 0; local
157 indices <<= 3;
158 indices |= idx;
165 (indices << 16));
189 uint64_t indices = 0; local
213 indices <<= 3;
214 indices |= idx;
221 (indices << 16));
255 // easy again: place the pixels in the block header, and assign the indices
320 // the indices int
360 PackRowMajor(const uint8_t *indices, int rowBytes) argument
369 PackColumnMajor(const uint8_t *indices, int rowBytes) argument
[all...]
/external/chromium_org/v8/tools/oom_dump/
H A Doom_dump.cc204 int indices[v8::internal::LAST_TYPE + 1]; local
206 indices[i] = i;
209 std::stable_sort(indices, indices + sizeof(indices)/sizeof(indices[0]),
258 int type = indices[i];
/external/deqp/framework/opengl/
H A DgluDrawUtil.hpp164 const void* indices; //!< Index list or DE_NULL if not used. member in struct:glu::PrimitiveList
170 , indices (0)
178 , indices (indices_)
186 , indices (0)
213 inline PrimitiveList NAME (int numElements, const deUint8* indices) \
215 return PrimitiveList(TYPE, numElements, INDEXTYPE_UINT8, indices); \
217 inline PrimitiveList NAME (int numElements, const deUint16* indices) \
219 return PrimitiveList(TYPE, numElements, INDEXTYPE_UINT16, indices); \
221 inline PrimitiveList NAME (int numElements, const deUint32* indices) \
223 return PrimitiveList(TYPE, numElements, INDEXTYPE_UINT32, indices); \
[all...]
/external/deqp/modules/gles2/accuracy/
H A Des2aVaryingInterpolationTests.cpp235 static const deUint16 indices[] = { 0, 1, 2, 2, 1, 3 }; local
261 glDrawElements(GL_TRIANGLES, DE_LENGTH_OF_ARRAY(indices), GL_UNSIGNED_SHORT, &indices[0]);
/external/deqp/modules/gles2/functional/
H A Des2fBufferTestUtil.cpp339 static void computeIndices (vector<deUint16>& indices, int gridSizeX, int gridSizeY) argument
341 indices.resize(3 * 2 * gridSizeX * gridSizeY);
352 indices[quadNdx*6 + 0] = (deUint16)v10;
353 indices[quadNdx*6 + 1] = (deUint16)v00;
354 indices[quadNdx*6 + 2] = (deUint16)v01;
356 indices[quadNdx*6 + 3] = (deUint16)v10;
357 indices[quadNdx*6 + 4] = (deUint16)v01;
358 indices[quadNdx*6 + 5] = (deUint16)v11;
421 vector<deUint16> indices;
429 computeIndices(indices, maxQuads
[all...]
H A Des2fDepthStencilClearTests.cpp281 static const deUint8 indices[] = { 0, 1, 2, 2, 1, 3 }; local
348 gl.drawElements (GL_TRIANGLES, DE_LENGTH_OF_ARRAY(indices), GL_UNSIGNED_BYTE, &indices[0]);
383 gl.drawElements (GL_TRIANGLES, DE_LENGTH_OF_ARRAY(indices), GL_UNSIGNED_BYTE, &indices[0]);
H A Des2fShaderBuiltinVarTests.cpp309 const deUint16 indices[] = { 0, 1, 2, 2, 1, 3 }; local
318 glu::pr::Triangles(DE_LENGTH_OF_ARRAY(indices), &indices[0]));
403 const deUint16 indices[] = { 0, 1, 2, 2, 1, 3 }; local
410 glu::pr::Triangles(DE_LENGTH_OF_ARRAY(indices), &indices[0]));
/external/deqp/modules/gles3/accuracy/
H A Des3aVaryingInterpolationTests.cpp242 static const deUint16 indices[] = { 0, 1, 2, 2, 1, 3 }; local
268 glDrawElements(GL_TRIANGLES, DE_LENGTH_OF_ARRAY(indices), GL_UNSIGNED_SHORT, &indices[0]);
/external/deqp/modules/gles3/functional/
H A Des3fDepthStencilClearTests.cpp284 static const deUint8 indices[] = { 0, 1, 2, 2, 1, 3 }; local
351 gl.drawElements (GL_TRIANGLES, DE_LENGTH_OF_ARRAY(indices), GL_UNSIGNED_BYTE, &indices[0]);
386 gl.drawElements (GL_TRIANGLES, DE_LENGTH_OF_ARRAY(indices), GL_UNSIGNED_BYTE, &indices[0]);
/external/eigen/Eigen/src/Core/
H A DPermutationMatrix.h82 indices() = other.indices();
102 indices() = other.indices();
108 inline Index rows() const { return Index(indices().size()); }
111 inline Index cols() const { return Index(indices().size()); }
113 /** \returns the size of a side of the respective square matrix, i.e., the number of indices */
114 inline Index size() const { return Index(indices().size()); }
122 other.coeffRef(indices().coeff(i),i) = typename DenseDerived::Scalar(1);
135 /** const version of indices()
136 const IndicesType& indices() const { return derived().indices(); } function in class:Eigen::PermutationBase
138 IndicesType& indices() { return derived().indices(); } function in class:Eigen::PermutationBase
358 const IndicesType& indices() const { return m_indices; } function in class:Eigen::PermutationMatrix
360 IndicesType& indices() { return m_indices; } function in class:Eigen::PermutationMatrix
439 const IndicesType& indices() const { return m_indices; } function in class:Eigen::Map
441 IndicesType& indices() { return m_indices; } function in class:Eigen::Map
499 indices() const { return m_indices; } function in class:Eigen::PermutationWrapper
[all...]
/external/icu/icu4c/source/test/letest/
H A Dcletest.c43 le_int32 *indices = NULL; local
61 indices = NEW_ARRAY(le_int32, glyphCount + 10);
85 le_getCharIndices(engine, indices, &status);
88 log_err("Calling getCharIndices(indices, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
99 le_getCharIndicesWithBase(engine, indices, 1024, &status);
102 log_err("Calling getCharIndices(indices, 1024, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
120 DELETE_ARRAY(indices);
216 le_int32 biasedIndices[6], indices[6], glyph; local
237 le_getCharIndices(engine, indices, &status);
241 log_err("Could not get glyph, indices an
[all...]
H A Dgendata.cpp208 le_int32 *indices = NULL; local
317 indices = NEW_ARRAY(le_int32, glyphCount);
321 engine->getCharIndices(indices, leStatus);
333 dumpLongs(outputFile, "result-indices", indices, glyphCount);
341 DELETE_ARRAY(indices);
/external/lzma/C/
H A D7zDec.c360 UInt32 indices[] = { 3, 2, 0 }; local
362 si = indices[ci];
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_draw.c118 const ushort *indices, uint count)
140 PUSH_DATA (push, *indices++);
150 PUSH_DATA(push, (indices[1] << 16) | indices[0]);
151 indices += 2;
117 nv30_render_draw_elements(struct vbuf_render *render, const ushort *indices, uint count) argument
/external/skia/gm/
H A Dtechtalk1.cpp71 const uint16_t indices[], int count) {
76 drawLine(canvas, pts[indices[i]], pts[indices[i+1]], paint);
77 drawLine(canvas, pts[indices[i+1]], pts[indices[i+2]], paint);
78 drawLine(canvas, pts[indices[i+2]], pts[indices[i]], paint);
99 uint16_t indices[256*6]; local
100 uint16_t* ndx = indices;
107 show_mesh(canvas, pts0, indices, nd
70 show_mesh(SkCanvas* canvas, const SkPoint pts[], const uint16_t indices[], int count) argument
171 const uint16_t indices[] = { local
[all...]
/external/skia/src/core/
H A DSkBBoxRecord.cpp273 const uint16_t indices[], int indexCount,
279 colors, xfer, indices, indexCount, paint);
270 drawVertices(VertexMode mode, int vertexCount, const SkPoint vertices[], const SkPoint texs[], const SkColor colors[], SkXfermode* xfer, const uint16_t indices[], int indexCount, const SkPaint& paint) argument
/external/skia/src/utils/
H A DSkLuaCanvas.cpp280 const uint16_t indices[], int indexCount,
277 drawVertices(VertexMode vmode, int vertexCount, const SkPoint vertices[], const SkPoint texs[], const SkColor colors[], SkXfermode* xmode, const uint16_t indices[], int indexCount, const SkPaint& paint) argument
H A DSkProxyCanvas.cpp146 const uint16_t indices[], int indexCount,
149 xmode, indices, indexCount, paint);
143 drawVertices(VertexMode vmode, int vertexCount, const SkPoint vertices[], const SkPoint texs[], const SkColor colors[], SkXfermode* xmode, const uint16_t indices[], int indexCount, const SkPaint& paint) argument
/external/checkpolicy/test/
H A Ddismod.c514 static int display_scope_index(scope_index_t * indices, policydb_t * p, argument
521 for (j = ebitmap_startbit(&indices->scope[i]);
522 j < ebitmap_length(&indices->scope[i]); j++) {
523 if (ebitmap_get_bit(&indices->scope[i], j)) {
528 if (j < indices->class_perms_len) {
529 render_access_bitmap(indices->
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dbrowser_tab_strip_controller.cc534 std::vector<int> indices = local
536 for (std::vector<int>::const_iterator i(indices.begin());
537 i != indices.end(); ++i) {
/external/chromium_org/content/renderer/pepper/
H A Dpepper_media_stream_video_track_host.cc312 std::vector<int32_t> indices = buffer_manager()->DequeueBuffers(); local
313 SendEnqueueBuffersMessageToPlugin(indices);

Completed in 431 milliseconds

1234567891011>>