Searched defs:indices (Results 176 - 200 of 319) sorted by relevance

1234567891011>>

/external/lzma/CPP/7zip/Archive/
H A DLzmaHandler.cpp321 STDMETHODIMP CHandler::Extract(const UInt32 *indices, UInt32 numItems, argument
327 if (numItems != (UInt32)-1 && (numItems != 1 || indices[0] != 0))
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_driver.c684 int *indices, LOCO *colors, VisualPtr pVisual)
694 index = indices[i];
704 index = indices[i];
720 index = indices[i];
683 drv_load_palette(ScrnInfoPtr pScrn, int numColors, int *indices, LOCO *colors, VisualPtr pVisual) argument
/external/mesa3d/src/mesa/vbo/
H A Dvbo_exec_array.c96 const char *indices; local
99 indices = (char *) ib->ptr + prim->start * index_size;
102 indices = ctx->Driver.MapBufferRange(ctx, (GLintptr) indices, size,
108 const GLuint *ui_indices = (const GLuint *)indices;
130 const GLushort *us_indices = (const GLushort *)indices;
152 const GLubyte *ub_indices = (const GLubyte *)indices;
807 const GLvoid *indices,
821 ib.ptr = indices;
836 * indices startin
803 vbo_validated_drawrangeelements(struct gl_context *ctx, GLenum mode, GLboolean index_bounds_valid, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex, GLint numInstances, GLuint baseInstance) argument
880 vbo_exec_DrawRangeElementsBaseVertex(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex) argument
964 vbo_exec_DrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices) argument
984 vbo_exec_DrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) argument
1006 vbo_exec_DrawElementsBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex) argument
1029 vbo_exec_DrawElementsInstanced(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei numInstances) argument
1052 vbo_exec_DrawElementsInstancedBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei numInstances, GLint basevertex) argument
1077 vbo_exec_DrawElementsInstancedBaseInstance(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei numInstances, GLuint baseInstance) argument
1103 vbo_exec_DrawElementsInstancedBaseVertexBaseInstance(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei numInstances, GLint basevertex, GLuint baseInstance) argument
1131 vbo_validated_multidrawelements(struct gl_context *ctx, GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount, const GLint *basevertex) argument
1251 vbo_exec_MultiDrawElements(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount) argument
1268 vbo_exec_MultiDrawElementsBaseVertex(GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount, const GLsizei *basevertex) argument
1446 _mesa_DrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) argument
1454 _mesa_DrawElementsBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex) argument
1462 _mesa_DrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices) argument
1470 _mesa_DrawRangeElementsBaseVertex(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex) argument
1480 _mesa_MultiDrawElementsEXT(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount) argument
1488 _mesa_MultiDrawElementsBaseVertex(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount, const GLint *basevertex) argument
[all...]
H A Dvbo_noop.c370 const GLvoid * indices)
376 const GLvoid * indices, GLint basevertex)
385 const GLvoid * indices)
391 const GLvoid ** indices, GLsizei primcount)
399 const GLvoid * indices,
407 const GLvoid * const *indices,
369 _mesa_noop_DrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) argument
375 _mesa_noop_DrawElementsBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex) argument
382 _mesa_noop_DrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices) argument
390 _mesa_noop_MultiDrawElements(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount) argument
396 _mesa_noop_DrawRangeElementsBaseVertex(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex) argument
405 _mesa_noop_MultiDrawElementsBaseVertex(GLenum mode, const GLsizei * count, GLenum type, const GLvoid * const *indices, GLsizei primcount, const GLint * basevertex) argument
/external/opencv/otherlibs/highgui/
H A Dutils.cpp444 uchar* FillColorRow8( uchar* data, uchar* indices, int len, PaletteEntry* palette ) argument
449 *((PaletteEntry*)(data-3)) = palette[*indices++];
451 PaletteEntry clr = palette[indices[0]];
457 uchar* FillGrayRow8( uchar* data, uchar* indices, int len, uchar* palette ) argument
462 data[i] = palette[indices[i]];
468 uchar* FillColorRow4( uchar* data, uchar* indices, int len, PaletteEntry* palette ) argument
474 int idx = *indices++;
479 int idx = indices[0];
492 uchar* FillGrayRow4( uchar* data, uchar* indices, int len, uchar* palette ) argument
497 int idx = *indices
515 FillColorRow1( uchar* data, uchar* indices, int len, PaletteEntry* palette ) argument
543 FillGrayRow1( uchar* data, uchar* indices, int len, uchar* palette ) argument
[all...]
/external/skia/src/core/
H A DSkBitmapDevice.cpp426 const uint16_t indices[], int indexCount,
429 indices, indexCount, paint);
422 drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode, int vertexCount, const SkPoint verts[], const SkPoint textures[], const SkColor colors[], SkXfermode* xmode, const uint16_t indices[], int indexCount, const SkPaint& paint) argument
H A DSkRecorder.cpp197 const uint16_t indices[], int indexCount, const SkPaint& paint) {
205 this->copy(indices, indexCount),
193 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/skia/src/gpu/
H A DGrGpu.cpp304 static inline void fill_indices(uint16_t* indices, int quadCount) { argument
306 indices[6 * i + 0] = 4 * i + 0;
307 indices[6 * i + 1] = 4 * i + 1;
308 indices[6 * i + 2] = 4 * i + 2;
309 indices[6 * i + 3] = 4 * i + 0;
310 indices[6 * i + 4] = 4 * i + 2;
311 indices[6 * i + 5] = 4 * i + 3;
321 uint16_t* indices = (uint16_t*)fQuadIndexBuffer->map(); local
322 if (NULL != indices) {
323 fill_indices(indices, MAX_QUAD
495 onReserveIndexSpace(int indexCount, void** indices) argument
[all...]
/external/skia/src/utils/
H A DSkNWayCanvas.cpp278 const uint16_t indices[], int indexCount,
283 indices, indexCount, paint);
275 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/chromium_org/cc/test/
H A Dtest_gles2_interface.cc139 const void* indices) {
141 mode, count, type, reinterpret_cast<intptr_t>(indices));
136 DrawElements(GLenum mode, GLsizei count, GLenum type, const void* indices) argument
/external/chromium_org/chrome/browser/ui/tabs/
H A Dtab_strip_model_unittest.cc231 std::vector<int> indices = model.GetIndicesClosedByCommand(index, id); local
233 for (size_t i = 0; i < indices.size(); ++i) {
236 result += base::IntToString(indices[i]);
2276 // Expected state after the move (space separated list of indices).
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_profile.cc878 const std::list<size_t>& indices,
892 for (std::list<size_t>::const_iterator it = indices.begin();
893 it != indices.end(); ++it) {
914 for (std::list<size_t>::const_iterator it = indices.begin();
915 it != indices.end(); ++it) {
876 CreateInferredLabelsHelper( const std::vector<AutofillProfile*>& profiles, const std::list<size_t>& indices, const std::vector<ServerFieldType>& fields, size_t num_fields_to_include, const std::string& app_locale, std::vector<base::string16>* labels) argument
/external/chromium_org/skia/ext/
H A Dvector_platform_device_emf_win.cc581 const uint16_t indices[],
574 drawVertices(const SkDraw& draw, SkCanvas::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/chromium_org/third_party/icu/source/test/letest/
H A Dletest.cpp60 le_int32 *indices = NULL; local
70 indices = NEW_ARRAY(le_int32, glyphCount + 10);
108 engine->getCharIndices(indices, status);
111 log_err("Calling getCharIndices(indices, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
122 engine->getCharIndices(indices, 1024, status);
125 log_err("Calling getCharIndices(indices, 1024, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
143 DELETE_ARRAY(indices);
246 le_int32 biasedIndices[6], indices[6], glyph; local
267 engine->getCharIndices(indices, status);
271 log_err("Could not get glyph, indices an
611 UnicodeString text, glyphs, indices, positions; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_vbuf.c904 const void *indices; local
909 indices = (uint8_t*)ib->user_buffer +
912 indices = pipe_buffer_map_range(pipe, ib->buffer,
920 const unsigned *ui_indices = (const unsigned*)indices;
942 const unsigned short *us_indices = (const unsigned short*)indices;
964 const unsigned char *ub_indices = (const unsigned char*)indices;
1037 /* Primitive restart doesn't work when unrolling indices.
1039 /* Use some heuristic to see if unrolling indices improves
1090 printf("unrolling indices: start_vertex = %i, num_vertices = %i\n",
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_render.c146 * - index_offset: the value that must be manually subtracted from indices
455 DBG(r300, DBG_DRAW, "r300: Indexbuf of %u indices, max %u\n",
460 /* If start is odd, render the first triangle with indices embedded
616 /* Fallback for misaligned ushort indices. */
1039 const ushort* indices,
1067 * indices than it can fit in CS. */
1084 OUT_CS(indices[i+1] << 16 | indices[i]);
1087 OUT_CS(indices[short_count-1]);
1091 /* OK now subtract the emitted indices an
1038 r300_render_draw_elements(struct vbuf_render* render, const ushort* indices, uint count) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/include/
H A Dsm4.h257 } indices[3]; member in struct:sm4_op
261 return !indices[i].reg.get() && indices[i].disp >= 0 && (int64_t)(int32_t)indices[i].disp == indices[i].disp;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.cpp104 triangle_list_indices<> indices; local
130 indices.flip = face > 0;
154 indices.poly(teeth * segs + k, j, teeth * segs + nextk);
157 indices.poly(teeth * segs + nextj * divs, j, nextj);
161 indices.base += teeth * segs * (1 + divs);
165 indices.flip = true;
197 indices.poly(0, 1, 3, 2);
198 indices.base += 4;
204 indices.flip = true;
215 indices
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dindirect_vertex_array.c72 const GLvoid * indices);
74 const GLvoid * indices);
721 const GLvoid * indices)
758 index = (unsigned) (((GLuint *) indices)[i]);
761 index = (unsigned) (((GLushort *) indices)[i]);
764 index = (unsigned) (((GLubyte *) indices)[i]);
788 const GLvoid * indices)
818 const GLuint *ui_ptr = (const GLuint *) indices + req_element;
827 const GLushort *us_ptr = (const GLushort *) indices + req_element;
836 const GLubyte *ub_ptr = (const GLubyte *) indices
720 emit_DrawElements_none(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) argument
787 emit_DrawElements_old(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) argument
989 __indirect_glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) argument
1010 __indirect_glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices) argument
1062 __indirect_glMultiDrawElementsEXT(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dvarray.c1117 GLenum type, const GLvoid * const * indices,
1130 CALL_DrawElements(ctx->Exec, ( m, count[i], type, indices[i] ));
1116 _mesa_MultiModeDrawElementsIBM( const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride ) argument
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_save_api.c962 const GLvoid * indices)
968 (void) indices;
975 GLsizei count, GLenum type, const GLvoid * indices)
983 (void) indices;
990 const GLvoid * indices, GLint basevertex)
996 (void) indices;
1008 const GLvoid * indices, GLint basevertex)
1016 (void) indices;
1035 const GLvoid **indices, GLsizei primcount)
1041 (void) indices;
961 _save_DrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) argument
974 _save_DrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices) argument
989 _save_DrawElementsBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex) argument
1003 _save_DrawRangeElementsBaseVertex(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex) argument
1034 _save_MultiDrawElements(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount) argument
1048 _save_MultiDrawElementsBaseVertex(GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount, const GLint *basevertex) argument
1219 _save_OBE_DrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices) argument
1266 _save_OBE_DrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices) argument
1285 _save_OBE_MultiDrawElements(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount) argument
1292 CALL_DrawElements(GET_DISPATCH(), (mode, count[i], type, indices[i])); local
1299 _save_OBE_MultiDrawElementsBaseVertex(GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount, const GLint *basevertex) argument
1310 indices[i], local
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrDrawTarget.cpp174 void** indices) {
178 SkASSERT(indices);
182 acquired = this->onReserveIndexSpace(indexCount, indices);
187 } else if (indices) {
188 *indices = NULL;
197 void** indices) {
209 if (!this->reserveIndexSpace(indexCount, indices)) {
562 const uint32_t indices[], int count,
567 SkASSERT(indices);
579 this->onDrawPaths(pathRange, indices, coun
173 reserveIndexSpace(int indexCount, void** indices) argument
194 reserveVertexAndIndexSpace(int vertexCount, int indexCount, void** vertices, void** indices) argument
561 drawPaths(const GrPathRange* pathRange, const uint32_t indices[], int count, const float transforms[], PathTransformType transformsType, SkPath::FillType fill) argument
[all...]
H A DGrDrawTarget.h101 * There are three types of "sources" of geometry (vertices and indices) for
103 * indices and vertices can use different source types. Once a source is
147 * Reserves space for vertices and/or indices. Zero can be specifed as
149 * space for only indices or only vertices. If zero is specifed for
154 * and indices pointers will point to the space created.
160 * The pointers to the space allocated for vertices and indices remain valid
167 * @param indexCount the number of indices to reserve space for. Can be 0.
170 * @param indices will point to reserved index space if indexCount is
176 void** indices);
179 * Provides hints to caller about the number of vertices and indices
501 executeDrawPaths(const GrPathRange* pathRange, const uint32_t indices[], int count, const float transforms[], PathTransformType transformsType, SkPath::FillType fill, const GrDeviceCoordTexture* dstCopy) argument
598 void* indices() const { SkASSERT(this->succeeded()); return fIndices; } function in class:GrDrawTarget::AutoReleaseGeometry
[all...]
H A DGrInOrderDrawBuffer.cpp386 const uint32_t indices[], int count,
390 SkASSERT(indices);
399 memcpy(dp->fIndices, indices, sizeof(uint32_t) * count);
713 bool GrInOrderDrawBuffer::onReserveIndexSpace(int indexCount, void** indices) { argument
716 SkASSERT(indices);
719 *indices = fIndexPool.makeSpace(indexCount,
722 return SkToBool(*indices);
385 onDrawPaths(const GrPathRange* pathRange, const uint32_t indices[], int count, const float transforms[], PathTransformType transformsType, SkPath::FillType fill, const GrDeviceCoordTexture* dstCopy) argument
/external/chromium_org/third_party/skia/src/utils/
H A DSkDumpCanvas.cpp451 const uint16_t indices[], int indexCount,
448 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

Completed in 489 milliseconds

1234567891011>>